
:root {
    --color-primary: #F7D9DF;
    --color-secondary: #FFFFFF;
    --color-accent: #1B1B1B;
    --color-bg: #FFFDFC;
    --color-bg-alt: #FAF8F7;
    --color-text: #1B1B1B;
    --color-text-muted: #6B6B6B;
    --color-text-light: #9A9A9A;
    --color-border: #E8E4E2;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-primary);
    color: var(--color-accent);
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s var(--transition-smooth);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(255, 253, 252, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-accent);
    text-decoration: none;
    position: relative;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--color-accent);
    color: var(--color-secondary);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::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.6s var(--ease-out-expo);
}

.nav-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(27, 27, 27, 0.15);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:active {
    transform: scale(0.98);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.3s var(--transition-smooth);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links-open {
    display: flex !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 253, 252, 0.98);
    backdrop-filter: blur(20px);
    padding: 40px;
    gap: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

body.nav-open-lock {
    overflow: hidden;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 120%;
    background: linear-gradient(135deg, rgba(247, 217, 223, 0.25) 0%, rgba(247, 217, 223, 0.05) 100%);
    border-radius: 0 0 0 200px;
    z-index: 0;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 24px;
    display: inline-block;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-accent);
    margin-bottom: 28px;
}

.hero-heading em {
    font-style: italic;
    font-weight: 500;
    color: #C4959E;
}

.hero-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 440px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-secondary);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.6s var(--ease-out-expo);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(27, 27, 27, 0.18);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 1.5px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.hero-visual {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.6s var(--transition-smooth);
    will-change: transform;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.hero-card:hover img {
    transform: scale(1.05);
}

.hero-card-1 {
    top: 5%;
    left: 5%;
    width: 55%;
    height: 45%;
    z-index: 2;
    transform: rotate(-2deg);
}

.hero-card-2 {
    bottom: 8%;
    right: 0;
    width: 50%;
    height: 40%;
    z-index: 3;
    transform: rotate(3deg);
}

.hero-card-3 {
    top: 35%;
    right: 15%;
    width: 35%;
    height: 30%;
    z-index: 1;
    transform: rotate(-1deg);
    opacity: 0.85;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-shape-1 {
    width: 180px;
    height: 180px;
    background: var(--color-primary);
    opacity: 0.4;
    top: -5%;
    right: 20%;
    filter: blur(40px);
}

.hero-shape-2 {
    width: 120px;
    height: 120px;
    background: #E8D5C8;
    opacity: 0.5;
    bottom: 10%;
    left: -5%;
    filter: blur(30px);
}

/* HERO SLIDESHOW (Homepage) */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.hero-slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s var(--ease-out-expo);
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slideshow-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.8);
}

.hero-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: #FFFFFF;
}

/* FEATURED CATEGORIES */
.categories {
    padding: 120px 0;
    background: var(--color-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 16px;
    display: inline-block;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-accent);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--color-secondary);
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.5s var(--transition-smooth);
    box-shadow: 0 10px 22px rgba(72, 58, 48, 0.20);
}

.category-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.category-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

/* Placeholder used until real product photography is uploaded */
.category-card-image.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: repeating-linear-gradient(
        135deg,
        var(--color-bg-alt),
        var(--color-bg-alt) 14px,
        #F2EDEC 14px,
        #F2EDEC 28px
    );
}

.category-card-image.placeholder .placeholder-icon {
    font-size: 2.25rem;
    line-height: 1;
    opacity: 0.7;
}

.category-card-image.placeholder .placeholder-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px 32px;
    background: linear-gradient(to top, rgba(255,255,255,0.98) 60%, rgba(255,255,255,0.8));
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.category-card-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}


/* WHY CHOOSE SECTION */
.why-choose {
    padding: 140px 0;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.why-choose-accent {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(100px);
    transform: translateY(-50%);
    pointer-events: none;
}

.why-choose-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-choose-left {
    max-width: 480px;
}

.why-choose-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.why-choose-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.reason-item {
    position: relative;
    padding-left: 0;
}

.reason-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.reason-title {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.reason-desc {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.why-choose-visual {
    position: relative;
    height: 600px;
}

.why-choose-image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.why-choose-visual:hover .why-choose-image img {
    transform: scale(1.03);
}

.why-choose-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--color-secondary);
    padding: 24px 32px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    z-index: 2;
}

.why-choose-badge-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.why-choose-badge-sub {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* SHOWCASE SECTION */
.showcase {
    padding: 140px 0;
    background: var(--color-bg);
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-item:nth-child(even) .showcase-image {
    order: 2;
}

.showcase-item:nth-child(even) .showcase-content {
    order: 1;
}

.showcase-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo);
}

/* Placeholder used until real product photography is uploaded */
.showcase-image.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: repeating-linear-gradient(
        135deg,
        var(--color-bg-alt),
        var(--color-bg-alt) 14px,
        #F2EDEC 14px,
        #F2EDEC 28px
    );
}

.showcase-image.placeholder .placeholder-icon {
    font-size: 2.75rem;
    opacity: 0.7;
}

.showcase-image.placeholder .placeholder-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.showcase-image:hover img {
    transform: scale(1.04);
}

.showcase-content {
    max-width: 480px;
}

.showcase-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 20px;
    display: inline-block;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.showcase-text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.showcase-link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 4px;
}

.showcase-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: width 0.4s var(--ease-out-expo);
}

.showcase-link:hover::after {
    width: 100%;
}

.showcase-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s var(--ease-out-expo);
}

.showcase-link:hover svg {
    transform: translateX(4px);
}

/* TESTIMONIAL SECTION */
.testimonial {
    padding: 160px 0;
    background: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.testimonial-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    opacity: 0.12;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.testimonial-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-quote-mark {
    font-family: var(--font-heading);
    font-size: 8rem;
    line-height: 0.5;
    color: var(--color-primary);
    opacity: 0.6;
    margin-bottom: 20px;
    user-select: none;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--color-accent);
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 2px;
}

.testimonial-role {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* FINAL CTA SECTION */
.final-cta {
    padding: 160px 0;
    background: var(--color-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-accent {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: var(--color-primary);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 24px;
    display: inline-block;
}

.final-cta-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-accent);
    margin-bottom: 28px;
}

.final-cta-text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* FOOTER */
.footer {
    padding: 80px 0 40px;
    background: var(--color-accent);
    color: var(--color-secondary);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
    display: inline-block;
    text-decoration: none;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-column-title {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

/* FOOTER CONTACT BLOCK (address / phone / email / hours) */
.footer-contact {
    list-style: none;
    display: grid;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    fill: rgba(255,255,255,0.45);
}

.footer-contact span,
.footer-contact a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.7);
    transition: fill 0.3s ease;
}

.footer-social:hover svg {
    fill: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: var(--color-secondary);
}


/* VIEW MORE BUTTON (Homepage) */
.view-more-wrapper {
    text-align: center;
    margin-top: 64px;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
}

/* HERO SMALL (Subpages) */
.hero-small {
    min-height: auto;
    padding: 180px 0 100px;
}

.hero-small .hero-visual {
    display: none;
}

.hero-small .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-small .hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.hero-small .hero-text {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* PRODUCTEN PAGE — QUICK CATEGORY NAV */
.category-nav {
    padding: 4px 0 28px;
}

.category-nav-inner {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-nav-pill {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-accent);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 100px;
    border: 1px solid var(--color-border);
    background: var(--color-secondary);
    transition: all 0.3s var(--transition-smooth);
    white-space: nowrap;
}

.category-nav-pill:hover {
    background: var(--color-accent);
    color: var(--color-secondary);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* PRODUCTEN PAGE — CATEGORY BLOCKS */
.categories-expanded {
    padding-top: 24px;
}

.product-category-block {
    margin-bottom: 100px;
}

.product-category-block:last-child {
    margin-bottom: 0;
}

.product-category-header {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.product-category-number {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.product-category-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.product-category-desc {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.categories-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* CATEGORY INFO BOX (facts / USPs under a category header) */
.product-category-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 920px;
    margin: 0 auto 48px;
    padding: 28px 32px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 20px;
}

.product-category-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.product-category-info-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.product-category-info-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.product-category-info-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

.product-card-slideshow-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.product-card-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

.product-card-dot:hover {
    background: rgba(255,255,255,0.9);
}

.product-card-dot.is-active {
    width: 18px;
    border-radius: 3px;
    background: #FFFFFF;
}
.product-card {
    display: flex;
    flex-direction: column;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(45, 35, 30, 0.08), 0 2px 6px rgba(45, 35, 30, 0.05);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(45, 35, 30, 0.14), 0 6px 16px rgba(45, 35, 30, 0.08);
}

.product-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-card-slideshow {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card-slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease-in-out;
    pointer-events: none;
    user-select: none;
}

.product-card-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.product-card:hover .product-card-image img {
    transform: none;
}

/* Placeholder used until real product photography is uploaded */
.product-card-image.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: repeating-linear-gradient(
        135deg,
        var(--color-bg-alt),
        var(--color-bg-alt) 14px,
        #F2EDEC 14px,
        #F2EDEC 28px
    );
    border-bottom: 1px solid var(--color-border);
}

.product-card-image.placeholder .placeholder-icon {
    font-size: 2.25rem;
    line-height: 1;
    opacity: 0.7;
}

.product-card-image.placeholder .placeholder-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.product-card-body {
    padding: 24px 26px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.product-card-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.product-card-media {
    display: grid;
    gap: 16px;
    margin: 2px 0 22px;
}

.product-card-extra-image {
    margin: 0;
}

.product-card-extra-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}

.product-card-extra-image figcaption,
.product-card-media-label {
    display: block;
    margin-top: 7px;
    color: var(--color-text-light);
    font-size: 0.75rem;
    line-height: 1.4;
}

.product-card-card-options {
    margin-top: 4px;
}

.product-card-note-text {
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.product-card-video video {
    display: block;
    width: 100%;
    margin-top: 8px;
    border-radius: 12px;
}

/* PRODUCT PRICING */
.product-price {
    margin-bottom: 10px;
}

.product-price-variant {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-accent);
}

.product-price-variant + .product-price-variant {
    margin-top: 4px;
}

.product-price-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.product-price-set {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.product-includes {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: -4px;
    margin-bottom: 14px;
}

.product-mini-thumb-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -4px;
    margin-bottom: 14px;
}

.product-mini-thumb {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.product-spotlight-body .product-price-variant {
    font-size: 1.25rem;
}

/* PRODUCT SPOTLIGHT (feature layout for single-item categories) */
.product-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(45, 35, 30, 0.09), 0 3px 10px rgba(45, 35, 30, 0.05);
}

.product-spotlight-image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.product-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.product-spotlight:hover .product-spotlight-image img {
    transform: scale(1.05);
}

.product-spotlight-body {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-spotlight-body .product-card-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.product-spotlight-body .product-card-desc {
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

/* STAR RATING WIDGET */
.product-rating {
    display: none;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.product-rating-stars {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 6px;
}

.product-rating-stars .star {
    background: none;
    border: none;
    padding: 2px;
    font-size: 1.3rem;
    line-height: 1;
    color: var(--color-border);
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.product-rating-stars .star:hover,
.product-rating-stars .star:focus-visible {
    transform: scale(1.15);
}

.product-rating-stars.is-disabled .star {
    cursor: default;
}

.product-rating-stars.is-disabled .star:hover {
    transform: none;
}

.product-rating-stars .star.is-filled,
.product-rating-stars .star.is-hover {
    color: #E8B341;
}

.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.product-rating-average {
    font-weight: 600;
    color: var(--color-accent);
}

.product-rating-note {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* Light CTA variant */
.final-cta-light {
    background: var(--color-bg-alt);
}

/* ABOUT ME PAGE (Over mij) */
.about-section {
    padding: 100px 0 140px;
    background: var(--color-bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 100px;
    align-items: start;
}

.about-visual {
    position: sticky;
    top: 120px;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: repeating-linear-gradient(
        135deg,
        var(--color-bg-alt),
        var(--color-bg-alt) 14px,
        #F2EDEC 14px,
        #F2EDEC 28px
    );
    border: 1px solid var(--color-border);
}

.about-image.placeholder .placeholder-icon {
    font-size: 2.75rem;
    opacity: 0.7;
}

.about-image.placeholder .placeholder-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    text-align: center;
    padding: 0 24px;
}

.about-signature {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-accent);
    text-align: center;
}

.about-content {
    max-width: 620px;
}

.about-greeting {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-text p {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 22px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* PRODUCT OPTIONS (colors / scents) */
.product-options {
    margin-top: 16px;
    display: grid;
    gap: 14px;
}

.option-group-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: block;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.color-swatches li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid var(--color-border);
    box-shadow: inset 0 0 0 2px var(--color-secondary);
}

.swatch-wit { background: #FFFFFF; }
.swatch-roos { background: #F0B8C6; }
.swatch-lila { background: #C9B7DE; }
.swatch-rood { background: #B94A4A; }

.scent-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.scent-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-accent);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 6px 12px;
    border-radius: 100px;
}

/* Material info callout (used under Kaarsen / Lichtjes headers) */
.material-note {
    max-width: 780px;
    margin: 0 auto 48px;
    padding: 24px 28px;
    background: var(--color-bg-alt);
    border-left: 3px solid var(--color-primary);
    border-radius: 4px 16px 16px 4px;
    text-align: left;
}

.material-note p {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.material-note strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* Reusable mug instructions accordion on product card */
.product-card-note {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
}

.product-card-note summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-accent);
}

.product-card-note summary::-webkit-details-marker {
    display: none;
}

.product-card-note summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1rem;
    color: var(--color-text-light);
}

.product-card-note[open] summary::after {
    content: '–';
}

.product-card-note ol {
    margin: 12px 0 0 18px;
    display: grid;
    gap: 6px;
}

.product-card-note ol li {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--color-text-muted);
}

/* CONTACT PAGE */
.contact-page {
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.contact-shell {
    width: 100%;
}

.contact-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 32px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    backdrop-filter: blur(16px);
}

.contact-heading {
    margin-top: 8px;
    margin-bottom: 16px;
}

.contact-text {
    margin-bottom: 32px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field label {
    font-weight: 600;
    color: var(--color-accent);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    color: var(--color-accent);
    background: var(--color-bg);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(247, 217, 223, 0.25);
}

.contact-form .btn {
    justify-self: start;
    border: none;
    cursor: pointer;
}

.contact-quick {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    text-align: center;
}

.contact-quick a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-quick a:hover {
    text-decoration: underline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .categories-grid,
    .categories-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-category-header {
        margin-bottom: 36px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 450px;
        max-width: 600px;
        margin: 0 auto;
    }

    .why-choose-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-choose-visual {
        height: 450px;
        max-width: 600px;
        margin: 0 auto;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showcase-item:nth-child(even) .showcase-image,
    .showcase-item:nth-child(even) .showcase-content {
        order: unset;
    }

    .showcase-image {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .showcase-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
    }

    .product-spotlight {
        grid-template-columns: 1fr;
    }

    .product-spotlight-image {
        min-height: 300px;
    }

    .product-spotlight-body {
        padding: 32px;
    }
}

        .hero-small {
            padding: 140px 0 60px;
        }

        .view-more-wrapper {
            margin-top: 40px;
        }

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-inner {
        gap: 32px;
    }

    .hero-visual {
        height: 360px;
        min-height: 300px;
        width: 100%;
    }

    .hero-visual-inner,
    .hero-slideshow {
        width: 100%;
        height: 100%;
        min-height: 300px;
    }

    .hero-slide img {
        object-position: center;
    }

    .hero-card-1 { width: 60%; height: 45%; }
    .hero-card-2 { width: 55%; height: 40%; }
    .hero-card-3 { width: 40%; height: 30%; }

    .categories-grid,
    .categories-grid-3 {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .product-category-info {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .why-choose-visual {
        height: 350px;
    }

    .why-choose-badge {
        left: 16px;
        bottom: -16px;
        padding: 16px 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section {
        padding: 60px 0 100px;
    }

    .material-note {
        padding: 20px;
    }

    .category-nav-inner {
        gap: 8px;
    }

    .category-nav-pill {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        height: 320px;
        min-height: 280px;
    }

    .hero-visual-inner,
    .hero-slideshow {
        min-height: 280px;
    }
}

/* ACCESSIBILITY & MOTION */
@media (pointer: fine) {
    .hero-card,
    .category-card,
    .showcase-image,
    .why-choose-image {
        cursor: pointer;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}