:root {
    --color-black: #0b0b0a;
    --color-charcoal: #141210;
    --color-panel: #1b1713;
    --color-leather: #3b2114;
    --color-saddle: #6b3f24;
    --color-brass: #c69a4a;
    --color-brass-dark: #a97a32;
    --color-cream: #f4e8d2;
    --color-beige: #cdbb9c;
    --color-muted: #8b8174;
    --color-border: rgba(198, 154, 74, 0.22);
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.28);
    --radius-lg: 30px;
    --radius-md: 20px;
    --container: 1180px;
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Inter", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(107, 63, 36, 0.26), transparent 36rem),
        radial-gradient(circle at top right, rgba(198, 154, 74, 0.14), transparent 32rem),
        var(--color-black);
    color: var(--color-cream);
    font-family: var(--font-body);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 16px;
    z-index: 999;
    padding: 10px 14px;
    background: var(--color-brass);
    color: var(--color-black);
    border-radius: 999px;
}

.skip-link:focus {
    left: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(198, 154, 74, 0.12);
    background: rgba(11, 11, 10, 0.78);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background:
        linear-gradient(145deg, rgba(198, 154, 74, 0.24), rgba(59, 33, 20, 0.4));
    color: var(--color-brass);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
}

.brand-text {
    display: grid;
    gap: 0;
}

.brand-text strong {
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-text small {
    color: var(--color-muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--color-beige);
    font-size: 14px;
}

.site-nav a {
    position: relative;
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--color-brass);
    transition: width 0.2s ease;
}

.site-nav a:hover {
    color: var(--color-cream);
}

.site-nav a:hover::after {
    width: 100%;
}

.header-cta,
.btn,
.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary,
.footer-button {
    background: linear-gradient(135deg, var(--color-brass), #e3bd68);
    color: #130f0b;
    box-shadow: 0 14px 38px rgba(198, 154, 74, 0.18);
}

.btn-secondary {
    border: 1px solid var(--color-border);
    color: var(--color-cream);
    background: rgba(255, 255, 255, 0.03);
}

.header-cta:hover,
.btn:hover,
.footer-button:hover {
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 90px 0;
}

.hero-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(11, 11, 10, 0.95), rgba(11, 11, 10, 0.5), rgba(11, 11, 10, 0.9)),
        radial-gradient(circle at 74% 30%, rgba(198, 154, 74, 0.24), transparent 22rem);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-brass);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--color-brass);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--color-cream);
    line-height: 1;
}

h1,
h2 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    margin-top: 18px;
    max-width: 780px;
    font-size: clamp(54px, 7vw, 96px);
    letter-spacing: -0.05em;
}

h2 {
    margin-top: 16px;
    font-size: clamp(38px, 5vw, 66px);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 23px;
    letter-spacing: -0.02em;
}

p {
    color: var(--color-beige);
}

.hero-copy p {
    max-width: 650px;
    margin: 24px 0 0;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-strip span,
.market-tags span {
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--color-beige);
    background: rgba(255, 255, 255, 0.03);
    font-size: 13px;
}

.hero-showcase {
    position: relative;
    min-height: 560px;
}

.showcase-card,
.detail-tile {
    position: absolute;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    background:
        linear-gradient(135deg, rgba(198, 154, 74, 0.18), rgba(59, 33, 20, 0.85)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 12px);
}

.showcase-card::after,
.detail-tile::after,
.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, transparent, rgba(244, 232, 210, 0.08), transparent);
    opacity: 0.7;
}

.showcase-card span,
.detail-tile span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    color: var(--color-cream);
    font-weight: 800;
}

.showcase-card-main {
    inset: 20px 30px 70px 70px;
    animation: floatOne 7s ease-in-out infinite;
}

.showcase-card-front {
    right: 0;
    bottom: 30px;
    width: 62%;
    height: 270px;
    background:
        linear-gradient(135deg, rgba(107, 63, 36, 0.95), rgba(20, 18, 16, 0.9)),
        radial-gradient(circle at top left, rgba(198, 154, 74, 0.32), transparent 16rem);
    animation: floatTwo 8s ease-in-out infinite;
}

.showcase-card-small {
    left: 0;
    top: 88px;
    width: 230px;
    height: 180px;
    border-radius: 24px;
    animation: floatThree 6.5s ease-in-out infinite;
}

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 850px;
    margin-bottom: 42px;
}

.section-heading.narrow {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.narrow .eyebrow {
    justify-content: center;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.collection-card,
.capability-card,
.inquiry-card,
.market-panel {
    position: relative;
    overflow: hidden;
    min-height: 270px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(27, 23, 19, 0.95), rgba(59, 33, 20, 0.62)),
        radial-gradient(circle at top right, rgba(198, 154, 74, 0.14), transparent 14rem);
    box-shadow: var(--shadow-card);
}

.collection-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.collection-card.large {
    grid-column: span 2;
}

.collection-card:hover {
    transform: translateY(-7px);
    border-color: rgba(198, 154, 74, 0.5);
}

.card-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(198, 154, 74, 0.42);
    font-family: var(--font-heading);
    font-size: 48px;
}

.split-section {
    background:
        linear-gradient(180deg, rgba(20, 18, 16, 0.2), rgba(59, 33, 20, 0.22), rgba(20, 18, 16, 0.2));
}

.split-grid,
.inquiry-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-visual {
    min-height: 520px;
    position: relative;
}

.detail-tile {
    inset: 0;
    min-height: 520px;
    background:
        linear-gradient(145deg, rgba(59, 33, 20, 0.9), rgba(11, 11, 10, 0.86)),
        radial-gradient(circle at 40% 30%, rgba(198, 154, 74, 0.28), transparent 18rem);
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.feature-list div {
    border-left: 2px solid var(--color-brass);
    padding: 14px 0 14px 18px;
    background: linear-gradient(90deg, rgba(198, 154, 74, 0.08), transparent);
}

.feature-list strong,
.feature-list span {
    display: block;
}

.feature-list span {
    color: var(--color-muted);
    margin-top: 3px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.capability-card {
    min-height: 230px;
}

.market-panel {
    min-height: auto;
    text-align: center;
}

.market-panel .eyebrow {
    justify-content: center;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.inquiry-section {
    padding-bottom: 130px;
}

.inquiry-card {
    min-height: auto;
}

.site-footer {
    border-top: 1px solid rgba(198, 154, 74, 0.14);
    background: #080807;
    padding: 70px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-copy {
    max-width: 390px;
}

.site-footer h3 {
    margin-bottom: 14px;
    font-size: 17px;
}

.site-footer a:not(.brand):not(.footer-button) {
    display: block;
    margin: 8px 0;
    color: var(--color-muted);
}

.site-footer a:hover {
    color: var(--color-brass);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(198, 154, 74, 0.12);
    color: var(--color-muted);
    font-size: 13px;
}

@keyframes floatOne {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

@keyframes floatTwo {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(12px) rotate(-1deg);
    }
}

@keyframes floatThree {
    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@media (max-width: 980px) {
    .header-inner {
        flex-wrap: wrap;
        padding: 16px 0;
    }

    .site-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero-grid,
    .split-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-showcase {
        min-height: 420px;
    }

    .collection-grid,
    .capability-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-card.large {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .header-cta {
        display: none;
    }

    .brand-text small {
        display: none;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-showcase {
        min-height: 340px;
    }

    .showcase-card-main {
        inset: 10px 12px 80px 28px;
    }

    .showcase-card-front {
        width: 74%;
        height: 190px;
    }

    .showcase-card-small {
        width: 160px;
        height: 130px;
    }

    .section {
        padding: 76px 0;
    }

    .collection-grid,
    .capability-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .collection-card.large {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* ===== Demo home images START ===== */

/* Home hero real demo photos */
.showcase-card-main {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.08), rgba(11, 11, 10, 0.72)),
        url("/images/demo/home/hero-main.jpg") center / cover no-repeat !important;
}

.showcase-card-front {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.05), rgba(11, 11, 10, 0.68)),
        url("/images/demo/home/hero-front.jpg") center / cover no-repeat !important;
}

.showcase-card-small {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.12), rgba(11, 11, 10, 0.66)),
        url("/images/demo/home/hero-small.jpg") center / cover no-repeat !important;
}

.showcase-card::after,
.detail-tile::after,
.collection-card::after {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.08), rgba(11, 11, 10, 0.78)),
        linear-gradient(135deg, rgba(198, 154, 74, 0.14), transparent) !important;
}

/* Home collection real demo photos */
.collection-card {
    background-position: center !important;
    background-size: cover !important;
    isolation: isolate;
}

.collection-card > * {
    position: relative;
    z-index: 2;
}

.collection-card::after {
    z-index: 1;
}

.collection-card:nth-child(1) {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.08), rgba(11, 11, 10, 0.84)),
        url("/images/demo/home/collection-western.jpg") center / cover no-repeat !important;
}

.collection-card:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.08), rgba(11, 11, 10, 0.84)),
        url("/images/demo/home/collection-english.jpg") center / cover no-repeat !important;
}

.collection-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.08), rgba(11, 11, 10, 0.84)),
        url("/images/demo/home/collection-bridles.jpg") center / cover no-repeat !important;
}

.collection-card:nth-child(4) {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.08), rgba(11, 11, 10, 0.84)),
        url("/images/demo/home/collection-pads.jpg") center / cover no-repeat !important;
}

.collection-card:nth-child(5) {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.08), rgba(11, 11, 10, 0.84)),
        url("/images/demo/home/collection-accessories.jpg") center / cover no-repeat !important;
}

/* Craftsmanship image */
.detail-tile {
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.05), rgba(11, 11, 10, 0.82)),
        url("/images/demo/home/craftsmanship.jpg") center / cover no-repeat !important;
}

.collection-card,
.showcase-card,
.detail-tile {
    background-color: #21150f;
}

/* Make image cards feel more premium */
.collection-card,
.showcase-card,
.detail-tile {
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.42),
        inset 0 0 0 1px rgba(198, 154, 74, 0.12);
}

.collection-card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* ===== Demo home images END ===== */
/* ===== Inquiry Basket Drawer START ===== */

.header-inquiry-button {
    gap: 10px;
    border: 0;
    cursor: pointer;
    font-family: var(--font-body);
}

.header-inquiry-count {
    display: none;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #130f0b;
    color: var(--color-brass);
    font-size: 12px;
    line-height: 22px;
    text-align: center;
}

.header-inquiry-count[data-has-items="true"] {
    display: inline-block;
}

.inquiry-overlay {
    position: fixed;
    inset: 0;
    z-index: 96;
    background: rgba(0, 0, 0, 0.64);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.inquiry-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 97;
    width: min(520px, 100%);
    height: 100vh;
    border-left: 1px solid var(--color-border);
    background:
        radial-gradient(circle at top right, rgba(198, 154, 74, 0.16), transparent 22rem),
        linear-gradient(180deg, #12100e, #080807);
    box-shadow: -28px 0 80px rgba(0, 0, 0, 0.46);
    transform: translateX(105%);
    transition: transform 0.28s ease;
}

.inquiry-open {
    overflow: hidden;
}

.inquiry-open .inquiry-overlay {
    opacity: 1;
    pointer-events: auto;
}

.inquiry-open .inquiry-drawer {
    transform: translateX(0);
}

.inquiry-drawer-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 26px;
    border-bottom: 1px solid rgba(198, 154, 74, 0.14);
}

.inquiry-drawer-header h2 {
    margin-top: 8px;
    font-size: 42px;
}

.drawer-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-cream);
    font-size: 28px;
    cursor: pointer;
}

.inquiry-drawer-body {
    height: calc(100vh - 113px);
    overflow-y: auto;
    padding: 22px;
}

.drawer-message {
    display: none;
    margin-bottom: 14px;
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 800;
    font-size: 13px;
}

.drawer-message.is-visible {
    display: block;
}

.drawer-message[data-type="success"] {
    border: 1px solid rgba(198, 154, 74, 0.28);
    background: rgba(198, 154, 74, 0.14);
    color: var(--color-cream);
}

.drawer-message[data-type="error"] {
    border: 1px solid rgba(255, 80, 80, 0.28);
    background: rgba(255, 80, 80, 0.12);
    color: #ffd6d6;
}

.inquiry-empty {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.inquiry-empty h3 {
    margin-bottom: 10px;
}

.inquiry-items {
    display: grid;
    gap: 14px;
}

.drawer-item {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 14px;
    border: 1px solid rgba(198, 154, 74, 0.16);
    border-radius: 22px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
}

.drawer-item-image {
    overflow: hidden;
    min-height: 118px;
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(107, 63, 36, 0.9), rgba(11, 11, 10, 0.86));
}

.drawer-item-image img,
.drawer-item-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.drawer-item-placeholder {
    background:
        radial-gradient(circle at center, rgba(198, 154, 74, 0.2), transparent 4rem),
        linear-gradient(145deg, rgba(59, 33, 20, 0.9), rgba(11, 11, 10, 0.9));
}

.drawer-item-content h3 {
    margin: 8px 0 10px;
    font-size: 20px;
    line-height: 1.05;
}

.drawer-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-brass);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.drawer-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(198, 154, 74, 0.18);
    border-radius: 999px;
    padding: 5px;
}

.drawer-qty button {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: var(--color-brass);
    color: #130f0b;
    cursor: pointer;
    font-weight: 900;
}

.drawer-qty span {
    min-width: 20px;
    text-align: center;
    color: var(--color-cream);
    font-weight: 800;
}

.drawer-remove {
    display: block;
    margin-top: 10px;
    border: 0;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font-weight: 800;
    padding: 0;
}

.drawer-remove:hover {
    color: var(--color-brass);
}

.inquiry-form {
    display: grid;
    gap: 13px;
    margin-top: 22px;
    border-top: 1px solid rgba(198, 154, 74, 0.14);
    padding-top: 22px;
}

.inquiry-form h3 {
    margin-bottom: 2px;
}

.inquiry-form label {
    display: grid;
    gap: 7px;
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(198, 154, 74, 0.18);
    border-radius: 16px;
    padding: 13px 14px;
    outline: none;
    background: rgba(11, 11, 10, 0.72);
    color: var(--color-cream);
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
}

.inquiry-form textarea {
    resize: vertical;
}

.clear-basket-button {
    border: 0;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
    font-weight: 800;
}

.clear-basket-button:hover {
    color: var(--color-brass);
}

@media (max-width: 640px) {
    .inquiry-drawer {
        width: 100%;
    }

    .drawer-item {
        grid-template-columns: 92px 1fr;
    }

    .drawer-item-image {
        min-height: 102px;
    }

    .inquiry-drawer-header h2 {
        font-size: 34px;
    }
}

/* ===== Inquiry Basket Drawer END ===== */

/* ===== Admin Sidebar Spacing Fix START ===== */

.admin-sidebar {
    overflow: visible;
}

.admin-nav {
    gap: 12px;
    margin-bottom: 28px;
}

.admin-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    line-height: 1.2;
}

.admin-sidebar-note {
    margin-top: 26px;
}

@media (max-width: 1040px) {
    .admin-sidebar {
        padding-bottom: 26px;
    }

    .admin-sidebar-note {
        position: static;
        margin-top: 26px;
    }

    .admin-nav a:hover {
        transform: none;
    }
}

/* ===== Admin Sidebar Spacing Fix END ===== */

/* ===== Homepage Floating Real Images FIX START ===== */

.hero-showcase-real .showcase-card {
    overflow: hidden;
    position: absolute;
}

.hero-showcase-real .showcase-card img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
    transform: scale(1.02);
    transition: transform 0.45s ease, opacity 0.35s ease;
}

.hero-showcase-real .showcase-card:hover img {
    opacity: 1;
    transform: scale(1.08);
}

.hero-showcase-real .showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(11, 11, 10, 0.02), rgba(11, 11, 10, 0.56)),
        radial-gradient(circle at top right, rgba(198, 154, 74, 0.16), transparent 12rem);
    pointer-events: none;
}

.hero-showcase-real .showcase-card span {
    position: absolute;
    z-index: 3;
    left: 18px;
    bottom: 18px;
    color: var(--color-cream);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.72);
}

/* hide old full slider if browser cache still has it */
.hero-image-slider {
    display: none !important;
}

/* ===== Homepage Floating Real Images FIX END ===== */

/* ===== Website Settings UI Support START ===== */

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.footer-contact-lines {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.footer-contact-lines a,
.footer-contact-lines span {
    color: var(--color-muted);
    font-size: 14px;
}

.footer-contact-lines a:hover {
    color: var(--color-brass);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.footer-social-links a {
    border: 1px solid rgba(198, 154, 74, 0.18);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--color-beige);
    font-size: 13px;
    font-weight: 800;
}

.footer-social-links a:hover {
    border-color: rgba(198, 154, 74, 0.5);
    color: var(--color-brass);
}

/* ===== Website Settings UI Support END ===== */