/* ============================================================
   EL VOGO — Custom Stylesheet (No Build Required)
   Covers: Reset, Tokens, Layout, Typography, Components
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ---------- 1. CSS Variables / Design Tokens ---------- */
:root {
    --color-primary: #7a0000;
    --color-primary-light: #900000;
    --color-foreground: #1a1612;
    --color-muted: #574944;
    --color-bg: #ffffff;
    --color-bg-warm: #ffffff;
    --color-white: #ffffff;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --color-gold: #c5a059;
    --color-gold-light: #e5cd96;

    /* Tailwind HSL Equivalents (for compatibility) */
    --primary: 0 100% 24%; /* #7a0000 */
    --primary-foreground: 0 0% 100%;
    --foreground: 0 0% 10%; /* #1a1612 */
    --muted: 15 13% 31%; /* #574944 */
    --muted-foreground: 0 0% 10%;
    
    --radius-lg: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.25rem;
    --radius-4xl: 1.5rem;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(26, 22, 18, 0.04);
    --shadow-md: 0 8px 24px rgba(26, 22, 18, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 22, 18, 0.12);
    --shadow-xl: 0 32px 80px rgba(26, 22, 18, 0.16);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(26, 22, 18, 0.1);
    border-radius: 10px;
    border: 2px solid var(--color-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
    opacity: 0.5;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-foreground);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
}

/* ---------- 3. Global Typography ---------- */
.font-serif {
    font-family: var(--font-serif);
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

/* ---------- 4. NAVBAR ---------- */
.mobile-logo-centered {
    display: none;
}

.navbar {
    height: 80px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.navbar--scrolled {
    height: 64px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.725rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: rgba(26, 22, 18, 0.6);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.nav-cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid #FAF9F6;
    line-height: 1;
}

.nav-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: transparent;
}

.nav-icon:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(122, 0, 0, 0.04);
}

/* ---------- Navbar Responsiveness ---------- */
@media (max-width: 991px) {

    .nav-links,
    .nav-actions,
    .nav-logo-desktop {
        display: none !important;
    }

    .mobile-logo-centered {
        display: block !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .navbar {
        top: 0px !important;
    }
}

@media (max-width: 768px) {

    .navbar {
        height: 66px !important;
        padding: 0;
    }
    .navbar--scrolled {
        height: 66px !important;
    }

    .nav-inner {
        max-width: 100% !important;
        padding: 0 16px !important;
    }

    .mobile-logo-centered {
        display: flex !important;
        position: static;
        transform: none;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        flex: 1;
    }
    .mobile-logo-centered img {
        height: 24px !important;
    }

    .nav-actions {
        display: flex !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-logo-desktop {
        display: none !important;
    }

    :root {
        --main-padding-top: 66px;
    }
}

.navbar--scrolled {
    box-shadow: var(--shadow-md);
    height: 70px !important;
}

/* ---------- 5. HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
    padding-top: 64px;
}

.hero__bg-stripe {
    position: absolute;
    top: 0;
    right: -25%;
    width: 35%;
    height: 100%;
    background: var(--color-bg-warm);
    transform: skewX(-8deg);
    display: none;
}

.hero__blob {
    position: absolute;
    bottom: -6rem;
    left: -6rem;
    width: 16rem;
    height: 16rem;
    background: rgba(122, 0, 0, .05);
    border-radius: 50%;
    filter: blur(64px);
}

.hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .25rem .75rem;
    border-radius: var(--radius-full);
    background: rgba(122, 0, 0, .1);
    color: var(--color-primary);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 1.5rem;
}

.hero__badge-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    animation: ping 1.5s ease-in-out infinite;
}

@keyframes ping {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(122, 0, 0, .4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(122, 0, 0, 0);
    }
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--color-foreground);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__title-accent {
    color: var(--color-primary);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero__title-accent svg {
    position: absolute;
    bottom: -.5rem;
    left: 0;
    width: 100%;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 32rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    overflow: hidden;
    transition: box-shadow .3s, transform .15s;
}

.btn-primary:hover {
    box-shadow: 0 12px 30px rgba(122, 0, 0, .25);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(.97);
}

.btn-primary svg {
    transition: transform .3s;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(26, 22, 18, .12);
    color: var(--color-foreground);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--color-foreground);
    color: var(--color-white);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero__stat-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero__stat-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--color-muted);
}

.hero__stat-divider {
    width: 1px;
    height: 2rem;
    background: rgba(26, 22, 18, .1);
}

.hero__img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__img-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-4xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform .5s;
}

.hero__img-card:hover {
    transform: scale(1.02);
}

.hero__img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s;
}

.hero__img-card:hover img {
    transform: scale(1.08);
}

.hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6) 0%, transparent 60%);
}

.hero__img-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: white;
}

.hero__img-caption-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    opacity: .8;
    margin-bottom: .5rem;
}

.hero__img-caption-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.hero__float-star {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    z-index: 3;
    background: var(--color-white);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero__float-star-inner {
    width: 48px;
    height: 48px;
    background: rgba(122, 0, 0, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero__float-social {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    z-index: 3;
    background: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 22, 18, .05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__avatars {
    display: flex;
}

.hero__avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    margin-left: -8px;
}

.hero__avatars img:first-child {
    margin-left: 0;
}

.hero__social-label {
    font-size: .65rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--color-muted);
    letter-spacing: .1em;
}

.hero__social-count {
    font-size: .75rem;
    font-weight: 600;
}

.hero__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(122, 0, 0, .1);
    pointer-events: none;
    z-index: 0;
}

.hero__orbit-1 {
    width: 120%;
    height: 120%;
    animation: spin 20s linear infinite;
}

.hero__orbit-2 {
    width: 110%;
    height: 110%;
    animation: spin 15s linear infinite reverse;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ---------- 6. TRUST SECTION ---------- */
.trust {
    padding: 4rem 1.5rem;
    background: var(--color-white);
    border-top: 1px solid rgba(26, 22, 18, .05);
    border-bottom: 1px solid rgba(26, 22, 18, .05);
}

.trust__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-card {
    padding: 2.25rem 2rem;
    border-radius: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(26, 22, 18, 0.04);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.trust-card:hover {
    transform: translateY(-4px);
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    color: var(--color-primary);
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.trust-title {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-foreground);
}

.trust-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .trust-card {
        padding: 1.25rem 1rem;
        gap: 0.8rem;
        border-radius: 1rem;
    }

    .trust-icon {
        width: 38px;
        height: 38px;
    }

    .trust-icon svg {
        width: 16px;
        height: 16px;
    }

    .trust-title {
        font-size: 0.65rem;
        margin-bottom: 0.2rem;
    }

    .trust-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* ---------- 7. SECTION HEADERS ---------- */
.section {
    padding: var(--section-padding, 8rem 1.5rem);
}

:root {
    --section-padding: 8rem 1.5rem;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 1.25rem;
    }

    .section__title {
        font-size: 2rem !important;
    }

    .hero__title {
        font-size: 2.75rem !important;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 3rem 1rem;
    }

    .hero__title {
        font-size: 2.25rem !important;
    }

    .hero__actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem !important;
    }

    .hero__actions .btn-primary,
    .hero__actions .btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.section--white {
    background: var(--color-white);
}

.section--warm {
    background: var(--color-bg);
}

.section--dark {
    background: var(--color-foreground);
}

.section__inner {
    max-width: 1440px;
    margin: 0 auto;
}

.section__head {
    margin-bottom: 4rem;
}

.section__label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-foreground);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section__title-accent {
    color: var(--color-primary);
    font-style: italic;
}

.section__divider {
    width: 5rem;
    height: 4px;
    background: rgba(122, 0, 0, .2);
    border-radius: 999px;
}

.section__head--center {
    text-align: center;
}

.section__head--center .section__divider {
    margin: 0 auto;
}

.section__subtitle {
    color: var(--color-muted);
    max-width: 36rem;
    margin: 1rem auto 0;
}

.section__header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--color-foreground);
    transition: color .2s;
    white-space: nowrap;
}

.btn-link:hover {
    color: var(--color-primary);
}

.btn-link svg {
    transition: transform .3s;
}

.btn-link:hover svg {
    transform: translateX(4px);
}

/* ---------- 8. PRODUCT CARDS ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card__img-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid rgba(26, 22, 18, .03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover .product-card__img-wrap {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-card__img-wrap--portrait {
    aspect-ratio: 3/4;
}

.product-card__img-wrap--square {
    aspect-ratio: 1;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.product-card:hover .product-card__img {
    transform: scale(1.08);
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.badge {
    display: inline-block;
    padding: .2rem .6rem;
    border-radius: 0;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.badge--new {
    background: rgba(255, 255, 255, .9);
    color: var(--color-primary);
    border: 1px solid rgba(122, 0, 0, .1);
}

.badge--sale {
    background: var(--color-primary);
    color: white;
}

.badge--best {
    background: #fbbf24;
    color: var(--color-foreground);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__overlay-btn {
    background: rgba(255, 255, 255, .95);
    color: var(--color-foreground);
    padding: .75rem 1.5rem;
    border-radius: 0;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
    transform: translateY(8px);
    transition: transform .3s;
    pointer-events: auto;
}

.product-card:hover .product-card__overlay-btn {
    transform: translateY(0);
}

.product-card__info {
    margin-top: 1.25rem;
    text-align: center;
}

.product-card__category {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--color-muted);
    font-weight: 600;
    margin-bottom: .35rem;
}

.product-card__title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-bottom: .5rem;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: calc(.85rem * 1.4 * 2);
}

.product-card:hover .product-card__title {
    color: var(--color-primary);
}

.product-card__prices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.product-card__price {
    font-size: .875rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-card__original {
    font-size: .75rem;
    color: var(--color-muted);
    text-decoration: line-through;
}

/* ---------- Equal Height Cards ---------- */
.product-grid > div,
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-grid > div .product-card__info,
.product-card .product-card__info {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
.product-grid > div .product-card__prices,
.product-card .product-card__prices {
    margin-top: auto;
}
/* Shop page card consistency */
.product-grid > div > a {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

/* ---------- Consistent Button System ---------- */
.btn--sm {
    padding: 0.7rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    line-height: 1;
}
.btn--primary {
    background: var(--color-primary);
    color: white;
    border: 1.5px solid var(--color-primary);
}
.btn--primary:hover {
    background: #5a0000;
    border-color: #5a0000;
}
.btn--primary:active {
    transform: scale(0.97);
}
.btn--outline {
    background: transparent;
    color: var(--color-foreground);
    border: 1.5px solid rgba(26,22,18,0.15);
}
.btn--outline:hover {
    background: var(--color-foreground);
    color: white;
    border-color: var(--color-foreground);
}
.btn--outline:active {
    transform: scale(0.97);
}
.btn--full {
    width: 100%;
}

/* ---------- Hover-based product bottom action ---------- */
.product-card__action {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, .95);
    padding: .75rem;
    border-radius: 0;
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s, transform .3s;
}

.product-card:hover .product-card__action {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- 9. BRAND STORY ---------- */
.story__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.story__img-wrap {
    position: relative;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: skewY(1deg);
}

.story__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.story__badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    z-index: 2;
    background: var(--color-primary);
    color: white;
    padding: 2rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    max-width: 220px;
}

.story__badge-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: .5rem;
}

.story__badge-label {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    opacity: .8;
}

.story__content {
    padding-right: 0;
}

.story__text {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.story__feature {
    display: flex;
    gap: 1rem;
}

.story__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(122, 0, 0, .2);
    border-radius: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.story__feature-title {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .2rem;
}

.story__feature-text {
    font-size: .68rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.btn-underline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding-bottom: .35rem;
    border-bottom: 2px solid var(--color-primary);
    transition: color .2s;
}

.btn-underline:hover {
    color: var(--color-primary);
}

/* ---------- 10. COLLECTIONS GRID ---------- */
/* ---------- 10. COLLECTIONS STAGGERED ---------- */
.collections__staggered {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
    background: white;
    padding: 1.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}

.collections__side-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collection-item {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    text-decoration: none;
    background: #000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-item--large {
    height: 520px;
}

.collection-item--small {
    height: calc(260px - 0.75rem);
}

.collection-item:hover {
    transform: translateY(-5px);
}

.collection-item__image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.collection-item__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
    filter: brightness(0.85);
}

.collection-item:hover .collection-item__image-wrap img {
    transform: scale(1.08);
    filter: brightness(1);
}

.collection-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.1) 60%,
            transparent 100%);
    opacity: 0.8;
    transition: opacity 0.6s ease;
}

.collection-item:hover .collection-item__overlay {
    opacity: 0.9;
}

.collection-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    color: white;
}

.collection-item--small .collection-item__content {
    padding: 1.5rem;
}

.collection-item__tag {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: var(--color-primary);
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 1rem;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-item:hover .collection-item__tag {
    transform: translateY(0);
    opacity: 1;
}

.collection-item__title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.1;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-item--small .collection-item__title {
    font-size: 1.75rem;
}

.collection-item__desc {
    font-size: 0.9rem;
    opacity: 0.7;
    max-width: 280px;
    margin-bottom: 1.5rem;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.collection-item:hover .collection-item__desc {
    transform: translateY(0);
    opacity: 0.7;
}

.collection-item__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s;
}

.collection-item:hover .collection-item__btn {
    border-color: white;
}

.collection-item__btn--mini {
    font-size: 0.6rem;
    border-bottom: none;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .collections__staggered {
        grid-template-columns: 1fr;
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .collection-item--large {
        height: 420px;
    }

    .collection-item--small {
        height: 240px;
    }

    .collection-item__title {
        font-size: 2rem;
    }

    .collection-item__tag,
    .collection-item__desc {
        display: none;
    }
}

/* ---------- 11. NEWSLETTER ---------- */
.newsletter {
    position: relative;
    padding: 6rem 1.5rem;
    background: var(--color-foreground);
    overflow: hidden;
    text-align: center;
}

.newsletter__blob-1,
.newsletter__blob-2 {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.newsletter__blob-1 {
    top: -4rem;
    right: -4rem;
    background: rgba(122, 0, 0, .2);
}

.newsletter__blob-2 {
    bottom: -4rem;
    left: -4rem;
    background: rgba(122, 0, 0, .1);
}

.newsletter__inner {
    position: relative;
    z-index: 1;
    max-width: 40rem;
    margin: 0 auto;
}

.newsletter__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.newsletter__subtitle {
    color: rgba(255, 255, 255, .5);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.newsletter__form {
    position: relative;
    max-width: 30rem;
    margin: 0 auto;
}

.newsletter__input {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-full);
    color: white;
    font-family: var(--font-sans);
    font-size: .9rem;
    outline: none;
    transition: border-color .3s;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.newsletter__input:focus {
    border-color: var(--color-primary);
}

.newsletter__btn {
    margin-top: 1rem;
    width: 100%;
    padding: .875rem 2rem;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .3s, transform .15s;
}

.newsletter__btn:hover {
    background: #900000;
}

.newsletter__btn:active {
    transform: scale(.97);
}

.newsletter-submit-btn {
    background: #1a1612;
    color: #fff;
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    min-height: 48px;
}
.newsletter-submit-btn:hover { background: var(--color-primary); }
.newsletter-submit-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

.newsletter__disclaimer {
    margin-top: 1rem;
    font-size: .65rem;
    color: rgba(255, 255, 255, .3);
    text-transform: uppercase;
    letter-spacing: .12em;
}

/* ---------- 12. FOOTER ---------- */
.footer {
    background: #12100e;
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(122, 0, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.footer__inner {
    max-width: 1440px !important;
    margin: 0 auto !important;
    padding: 4.5rem 2rem 2.5rem !important;
}

.footer__grid {
    display: grid !important;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr !important;
    gap: 4rem !important;
    margin-bottom: 3.5rem !important;
}

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem !important;
    }

    .footer__column--brand,
    .footer__column--newsletter {
        grid-column: span 2 !important;
    }
}

@media (max-width: 640px) {
    .footer__grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .footer__column--brand,
    .footer__column--newsletter {
        grid-column: span 1 !important;
    }
}

.footer__logo {
    height: 32px !important;
    width: auto !important;
    margin-bottom: 1.5rem !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.05)) !important;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.85rem !important;
    margin-bottom: 2rem !important;
    line-height: 1.6 !important;
    max-width: 280px !important;
    font-weight: 400 !important;
}

.footer__socials {
    display: flex !important;
    gap: 0.8rem !important;
}

.footer__social {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition) !important;
}

.footer__social:hover {
    background: var(--color-primary) !important;
    color: white !important;
    border-color: var(--color-primary) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(122, 0, 0, 0.3) !important;
}

.footer__heading {
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.25em !important;
    margin-bottom: 1.75rem !important;
    color: white !important;
    position: relative;
    display: inline-block;
}

.footer__heading::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 20px;
    height: 1.5px;
    background: var(--color-primary);
}

.footer__links {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
}

.footer__links a {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center !important;
}

.footer__links a:hover {
    color: white !important;
    transform: translateX(4px);
}

/* Newsletter Styles */
.footer__subtext {
    font-size: 0.775rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.5 !important;
}

.footer__form {
    display: flex !important;
    position: relative !important;
    max-width: 300px !important;
}

.footer__input {
    flex: 1 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 0.75rem 2.5rem 0.75rem 1rem !important;
    border-radius: 4px !important;
    color: white !important;
    font-size: 0.8rem !important;
    transition: var(--transition) !important;
    outline: none !important;
}

.footer__input:focus {
    border-color: var(--color-primary) !important;
}

.footer__submit {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 40px !important;
    background: var(--color-primary) !important;
    color: white !important;
    border-radius: 0 4px 4px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: var(--transition) !important;
}

/* Contact Strip */
.footer__contact-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 2rem 0 !important;
    margin-top: 1rem !important;
}

.footer__contact-strip-inner {
    display: flex !important;
    justify-content: center !important;
    gap: 3rem !important;
    flex-wrap: wrap !important;
}

.footer__contact-pill {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.8rem !important;
    transition: var(--transition) !important;
}

.footer__contact-pill:hover {
    color: white !important;
}

.footer__contact-pill svg {
    color: var(--color-primary) !important;
}

.footer__bottom {
    padding: 1.5rem 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.footer__copyright {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.25) !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

/* ---- Popup Overlay ---- */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9960;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(12,11,10,0.65);
    backdrop-filter: blur(6px);
}
.popup-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    color: #1a1612;
}
.popup-close-btn:hover { background: #1a1612; color: #fff; }
.popup-close-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.popup-dismiss-btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0;
    background: none;
    border: none;
    color: #a89f91;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.05em;
    min-height: 44px;
}
.popup-dismiss-btn:hover { color: #574944; }
.popup-dismiss-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.popup-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #1a1612;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(26,22,18,0.2);
    border: none;
    cursor: pointer;
    min-height: 48px;
}
.popup-cta-btn:hover {
    background: #7a0000;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(122,0,0,0.25);
}
.popup-cta-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.popup-cta-btn svg { margin-left: 10px; }

/* ---------- 13. Utility classes (critical ones) ---------- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.line-through {
    text-decoration: line-through;
}

.text-center {
    text-align: center;
}

.italic {
    font-style: italic;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
}

/* ---------- 15. TESTIMONIALS ---------- */
.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(26, 22, 18, .04);
    border-radius: var(--radius-4xl);
    padding: 2.5rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}


.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 5rem;
    font-family: var(--font-serif);
    color: var(--color-primary);
    opacity: 0.05;
    line-height: 1;
}

.testimonial-card__stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

.testimonial-card__text {
    font-size: .9rem;
    color: var(--color-foreground);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: .875rem;
}

.testimonial-card__author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(122, 0, 0, .15);
}

.testimonial-card__name {
    font-size: .85rem;
    font-weight: 700;
}

.testimonial-card__location {
    font-size: .7rem;
    color: var(--color-muted);
}

/* ---------- 16. BLOG CARDS ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 22, 18, .05);
    transition: box-shadow .4s, transform .4s;
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.blog-card__img-wrap {
    aspect-ratio: 3/2;
    overflow: hidden;
}

.blog-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s;
}

.blog-card:hover .blog-card__img-wrap img {
    transform: scale(1.06);
}

.blog-card__content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__category {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.blog-card__title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-foreground);
    line-height: 1.3;
    margin-bottom: 1rem;
    transition: color .2s;
}

.blog-card:hover .blog-card__title {
    color: var(--color-primary);
}

.blog-card__excerpt {
    font-size: .95rem;
    color: var(--color-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-primary);
    margin-top: auto;
}

.blog-card__link svg {
    transition: transform .3s;
}

.blog-card:hover .blog-card__link svg {
    transform: translateX(4px);
}

/* ---------- 17. RESPONSIVE UTILITIES ---------- */
@media (max-width: 768px) {
    .trust__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem 1rem !important;
    }

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .collections__grid {
        grid-template-columns: 1fr !important;
    }

    .testimonials__grid {
        grid-template-columns: 1fr !important;
    }

    .story__grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .story__img-wrap {
        transform: none !important;
    }

    .newsletter__inner {
        padding: 4rem 1.5rem !important;
    }

    .newsletter__title {
        font-size: 2.25rem !important;
    }

    .newsletter__form {
        flex-direction: column !important;
        border-radius: 2rem !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .newsletter__btn {
        width: 100% !important;
        padding: 1rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 769px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .story__grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__img-card {
        max-width: 480px;
    }

    .cart-grid-layout {
        grid-template-columns: 1fr 380px !important;
    }
}

/* Cart responsive layout */
.cart-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Cart item styles */
.cart-item-image { flex-shrink: 0; display: block; }
.cart-item-image img { width: 90px; height: 90px; object-fit: cover; border-radius: .875rem; box-shadow: var(--shadow-sm); }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-title-link { text-decoration: none; color: inherit; }
.cart-item-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: .25rem;
    transition: color .2s;
}
.cart-item-title:hover { color: var(--color-primary); }
.cart-item-category { font-size: .75rem; color: var(--color-muted); margin-bottom: .5rem; }
.cart-item-price { font-size: .8rem; color: var(--color-foreground); }
.cart-item-price strong { color: var(--color-primary); }
.cart-item-actions { text-align: right; flex-shrink: 0; }
.cart-item-total {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: .75rem;
}
.cart-remove-btn {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem .5rem;
    border-radius: .35rem;
    transition: all .2s;
    min-height: 44px;
}
.cart-remove-btn:hover { color: #dc2626; background: #fef2f2; }
.cart-remove-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

@media (max-width: 640px) {
    .cart-item-image img { width: 64px; height: 64px; }
    .cart-item-title { font-size: .8rem; }
    .cart-item-total { font-size: 1rem; }
}

/* Blog / Article prose styles */
.prose-content h1,
.prose-content h2,
.prose-content h3 {
    font-family: var(--font-serif);
    color: var(--color-foreground);
    margin: 1.75rem 0 .875rem;
}

.prose-content h2 {
    font-size: 1.5rem;
}

.prose-content h3 {
    font-size: 1.2rem;
}

.prose-content p {
    color: var(--color-muted);
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: .95rem;
}

.prose-content ul,
.prose-content ol {
    color: var(--color-muted);
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.9;
    font-size: .95rem;
}

.prose-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.prose-content img {
    border-radius: var(--radius-2xl);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
}

.prose-content strong {
    color: var(--color-foreground);
    font-weight: 700;
}

.prose-content blockquote {
    border-left: 3px solid var(--color-primary);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--color-muted);
    margin: 2rem 0;
}

/* ==========================================================
   PREMIUM UI ENHANCEMENTS — v2.0
   Micro-animations, scroll reveals, polished interactions
   ========================================================== */

/* ---- Smooth Page Load Fade-In ---- */
@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    animation: pageIn 0.5s ease-out;
}

/* ---- Scroll Reveal Animations ---- */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* NOTE: Scroll reveal is handled by JS IntersectionObserver in layout.blade.php */

/* ---- Enhanced Product Card Interactions ---- */
.product-grid>div {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-grid>div:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 22, 18, 0.08);
}

/* ---- Product Buttons Equal Height ---- */
.product-grid form button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-grid form {
    display: flex;
}

/* ---- Story Button ---- */
.btn-story {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    border: 1.5px solid var(--color-foreground);
    color: var(--color-foreground);
    padding: 1.1rem 2.5rem;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s;
}
.btn-story:hover {
    background: var(--color-foreground);
    color: white;
}
.btn-story:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ---- Recommend products equal height ---- */
.product-grid > div a[style*="border:1px solid rgba(26,22,18,.08)"] {
    display: flex;
    flex-direction: column;
}
.product-grid > div a[style*="border:1px solid rgba(26,22,18,.08)"] > div:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-grid > div a[style*="border:1px solid rgba(26,22,18,.08)"] > div:last-child p:last-child {
    margin-top: auto;
}

/* ---- Product page responsive improvements ---- */
@media (max-width: 767px) {
    .product-layout { gap: 2rem !important; }
    .product-actions { grid-template-columns: 1fr !important; }
    .product-actions .product-btn { min-height: 44px !important; }
    .qty-controls { border-radius: .5rem; }
    .qty-btn { width: 40px !important; height: 40px !important; }
    .qty-input { width: 40px !important; height: 40px !important; font-size: .9rem !important; }
    .product-form { padding: 1rem !important; }
    .thumb-gallery { grid-template-columns: repeat(auto-fill, minmax(56px, 1fr)) !important; gap: .5rem !important; }
    .sticky-bar-inner { grid-template-columns: 1fr auto !important; }
    .sticky-bar-info { display: none !important; }
    .sticky-qty { width: 50px !important; }
}
@media (min-width: 768px) and (max-width: 991px) {
    .product-actions { grid-template-columns: 1fr !important; }
    .product-actions .product-btn { min-height: 44px !important; }
}

/* ---- Premium Button Enhancements ---- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* ---- Enhanced Navbar Glass Effect ---- */
.navbar {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    border-bottom: 1px solid rgba(26, 22, 18, 0.04);
}

/* ---- Smooth Link Hover Transitions ---- */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}

/* ---- Blog Related Links ---- */
.related-product-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem .8rem;
    border: 1px solid rgba(26,22,18,.12);
    border-radius: 9999px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: all .2s;
}
.related-product-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.related-product-pill:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.related-blog-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-foreground);
    text-decoration: none;
    transition: color .2s;
}
.related-blog-link:hover { color: var(--color-primary); }
.related-blog-link:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; border-radius: 2px; }

/* ---- Cart Layout Enhancement ---- */
@media(min-width: 1024px) {
    .section__inner>div[style*="grid-template-columns: 1fr"] {
        grid-template-columns: 1fr 380px !important;
    }
}

/* ---- Footer Improvements ---- */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 3px;
}

.footer__links a {
    position: relative;
    display: inline-block;
}

.footer__links a span {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.footer__links a:hover span {
    transform: translateX(4px);
    color: white;
}

.footer__social {
    transition: transform 0.3s ease, background 0.3s ease !important;
}

.footer__social:hover {
    transform: translateY(-3px) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

/* ---- Form Element Polish ---- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(122, 0, 0, 0.08);
}

/* ---- Premium Badge Pulse ---- */
.nav-cart-badge {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ---- Tooltip Style ---- */
[title] {
    position: relative;
}

/* ---- Image Loading Shimmer ---- */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

img[loading="lazy"] {
    background: linear-gradient(90deg, #f0ede8 25%, #e8e4df 50%, #f0ede8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

img[loading="lazy"][src] {
    animation: none;
    background: none;
}

/* ---- Selection Color ---- */
::selection {
    background: rgba(122, 0, 0, 0.15);
    color: var(--color-foreground);
}

/* ---- Smooth Focus Ring ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
}



/* ---- Trust Cards Enhancement ---- */
.trust-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26, 22, 18, 0.06);
}

/* ---- Testimonial Cards Enhancement ---- */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 22, 18, 0.08);
}

/* ---- Newsletter Section Polish ---- */
.newsletter__inner {
    position: relative;
    overflow: hidden;
}

.newsletter__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---- Collection Cards Polish ---- */
.collections__grid>* {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.5s ease;
}

.collections__grid>*:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(26, 22, 18, 0.1);
}

/* ---- Force Old Money Sharp Edges (limited to key structural elements) ---- */
.hero__img-card,
.collection-item {
    border-radius: 0 !important;
}

/* ---- FAQ Item ---- */
.faq-item {
    border: 1.5px solid rgba(26,22,18,.08);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: white;
    transition: box-shadow .3s;
}
.faq-item:hover {
    box-shadow: var(--shadow-md);
}

/* ---- Account (Login/Register) ---- */
.account-input {
    width: 100%;
    padding: .85rem 1rem;
    border: 1.5px solid #e5e0d8;
    border-radius: .875rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    color: #1a1612;
    outline: none;
    transition: border-color .2s;
    background: #FAF9F6;
    box-sizing: border-box;
}
.account-input:focus {
    border-color: #7a0000 !important;
}

.social-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .875rem;
    padding: .9rem 1.25rem;
    border: 1.5px solid #e5e0d8;
    border-radius: 1rem;
    font-size: .82rem;
    font-weight: 700;
    color: #1a1612;
    text-decoration: none;
    transition: all .2s;
    background: white;
    margin-bottom: .875rem;
}
.social-btn-google:hover {
    background: #FAF9F6;
}
.social-btn-google:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.social-btn-apple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .875rem;
    padding: .9rem 1.25rem;
    border: 1.5px solid #1a1612;
    border-radius: 1rem;
    font-size: .82rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: opacity .2s;
    background: #1a1612;
    margin-bottom: .875rem;
}
.social-btn-apple:hover {
    opacity: .9;
}
.social-btn-apple:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.account-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #7a0000, #5a0000);
    color: white;
    border: none;
    border-radius: .875rem;
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 15px rgba(122, 0, 0, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}
.account-submit-btn:hover {
    transform: translateY(-1px);
}
.account-submit-btn:active {
    transform: translateY(0);
}
.account-submit-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ---- Checkout Submit Button ---- */
.checkout-submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--color-foreground);
    color: white;
    border: none;
    border-radius: 1rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    min-height: 52px;
}
.checkout-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
}
.checkout-submit-btn:active { transform: translateY(0); }
.checkout-submit-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }

/* ---- Print Styles ---- */
@media print {

    .navbar,
    .footer,
    .popup {
        display: none !important;
    }

    main {
        padding-top: 0 !important;
    }

    body {
        background: white !important;
        color: black !important;
    }
}