/* 
   LUXURY GIFT CATALOGUE - STYLESHEET
   Aesthetics: Premium, Clean, Harmonious Golds, High Contrast, Dynamic Transitions
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Color Variables Design System */
:root {
    /* Day Theme (Light Marble/Linen & Gold) - Inspired by The Mansion World */
    --bg-primary: #faf9f6;
    --bg-secondary: #f4f2ec;
    --bg-tertiary: #ebe8df;
    --bg-glass: rgba(250, 249, 246, 0.92);
    
    --text-primary: #1c1a17;
    --text-secondary: #4d4943;
    --text-muted: #8a8276;
    
    --accent-gold: #c5a880;
    --accent-gold-hover: #a68a62;
    --accent-gold-glow: rgba(197, 168, 128, 0.15);
    --border-color: rgba(197, 168, 128, 0.22);
    --border-strong: rgba(197, 168, 128, 0.45);
    
    --card-shadow: none;
    --card-shadow-hover: none;
    
    --transition-speed: 0.4s;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    --input-bg: #ffffff;
    --input-border: rgba(197, 168, 128, 0.3);
}

[data-theme="dark"] {
    /* Night Theme (Charcoal, Obsidian & Champagne Gold) */
    --bg-primary: #131211;
    --bg-secondary: #1a1917;
    --bg-tertiary: #22201e;
    --bg-glass: rgba(19, 18, 17, 0.92);
    
    --text-primary: #faf9f6;
    --text-secondary: #e5e2d9;
    --text-muted: #aba59a;
    
    --accent-gold: #d5be9e;
    --accent-gold-hover: #f1dec5;
    --accent-gold-glow: rgba(213, 190, 158, 0.2);
    --border-color: rgba(213, 190, 158, 0.2);
    --border-strong: rgba(213, 190, 158, 0.45);
    
    --card-shadow: none;
    --card-shadow-hover: none;
    
    --input-bg: #1a1917;
    --input-border: rgba(213, 190, 158, 0.35);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal scroll globally */
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

p {
    font-weight: 300;
    color: var(--text-secondary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
}

.section-padding {
    position: relative;
    padding: 8rem 0;
    overflow: hidden; /* Clips all absolutely positioned decorative elements */
    z-index: 1;
    max-width: 100%;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

/* Subtle architectural thin line grid background */
.grid-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 120px 120px;
    background-position: center top;
    opacity: 0.25;
}

/* Soft atmospheric glowing ambient light leaks for Aura brand */
.aura-glow-left {
    position: absolute;
    top: -10%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
    overflow: hidden;
}

.aura-glow-right {
    position: absolute;
    bottom: -10%;
    right: -15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, transparent 75%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
    filter: blur(45px);
    overflow: hidden;
}

@media (max-width: 768px) {
    .aura-glow-left {
        width: 300px;
        height: 300px;
        left: -20%;
    }
    .aura-glow-right {
        width: 300px;
        height: 300px;
        right: -20%;
    }
}

/* Fine grain luxury texture layer */
.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -3;
    opacity: 0.015;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Beautiful luxury diagonal watermark ribbons */
.watermark-ribbon {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    z-index: -2;
    white-space: nowrap;
    user-select: none;
    overflow: hidden;
    max-width: 100%;
}
.watermark-ribbon-left {
    transform: rotate(-15deg);
    top: 15%;
    left: -5%;
    max-width: 120%;
}
.watermark-ribbon-right {
    transform: rotate(15deg);
    bottom: 15%;
    right: -5%;
    max-width: 120%;
}

@media (max-width: 768px) {
    .watermark-ribbon {
        font-size: 4rem;
    }
    .watermark-ribbon-left {
        left: -3%;
    }
    .watermark-ribbon-right {
        right: -3%;
    }
}

.text-center { text-align: center; }
.gold-text { color: var(--accent-gold); }

/* Navigation Bar (Double-Decker Layout) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: background var(--transition-speed) ease, border-color var(--transition-speed) ease;
}

.navbar-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.nav-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(179, 146, 67, 0.08);
    height: 60px;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .nav-top-bar {
        padding: 0.75rem 1rem;
    }
    .nav-logo {
        font-size: 1.3rem;
    }
    .btn-sm {
        padding: 0.5rem 1rem;
        font-size: 0.68rem;
    }
}

.nav-bottom-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 2rem;
    height: 45px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-top-bar {
    height: 50px;
    padding: 0.5rem 2rem;
}

.navbar.scrolled .nav-bottom-bar {
    height: 38px;
    padding: 0.2rem 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    fill: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.5rem 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link svg {
    transform: rotate(180deg);
}

/* Hover Dropdowns */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--accent-gold);
    min-width: 260px;
    box-shadow: none;
    padding: 0.8rem 0;
    z-index: 1002;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    pointer-events: auto;
    animation: slideDownFade 0.3s ease forwards;
}

.dropdown-link {
    display: block;
    padding: 0.65rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(179, 146, 67, 0.03);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: var(--bg-tertiary);
    color: var(--accent-gold);
}

/* Nav Actions (Toggle & Button) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Theme Toggle Switch */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.theme-toggle-btn:hover {
    border-color: var(--accent-gold);
    background-color: var(--bg-secondary);
}

.theme-toggle-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: transform 0.5s ease;
}

.sun-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="dark"] .moon-icon {
    display: none;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    border-radius: 0 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    box-shadow: none;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
    box-shadow: none;
    transform: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--bg-primary);
    transform: none;
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.72rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0b0a;
    overflow: hidden;
    box-sizing: border-box;
    padding-top: 105px; /* Offset fixed double-decker navbar — push content below navbar */
    padding-bottom: 4rem;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px; /* Offset mobile topbar only */
        padding-bottom: 3rem;
        min-height: 100svh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(12,11,10,0.4) 0%, rgba(12,11,10,0.85) 80%);
    z-index: 2;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: scale(1.05);
    animation: subtleZoom 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fcfbf9;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-sub {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.15;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-title span {
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #e5dec9;
    font-weight: 300;
    animation: fadeInUp 1.4s ease forwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1.6s ease forwards;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 0.95rem; max-width: 100%; padding: 0 0.5rem; }
    .hero-actions { flex-direction: column; gap: 1rem; align-items: center; }
    .hero-sub { font-size: 0.75rem; letter-spacing: 0.2em; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .hero-desc { font-size: 0.88rem; }
}

/* Showcase Header / Title blocks */
.section-title-wrap {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
}

.subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.85rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background-color: var(--accent-gold);
    margin: 1.5rem auto 0;
}

/* Collections Catalog Cards */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.collection-card {
    position: relative;
    height: 480px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: border-color var(--transition-speed) ease;
}

.collection-card:hover {
    border-color: var(--border-strong);
}

.collection-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12,11,10,0.85) 0%, rgba(12,11,10,0.3) 50%, rgba(12,11,10,0) 100%);
    z-index: 1;
}

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

.collection-card-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.collection-card-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.collection-card-desc {
    color: #d1c9bd;
    font-size: 0.9rem;
    max-width: 380px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.collection-card:hover .collection-card-desc {
    opacity: 1;
    transform: translateY(0);
}

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

.collection-btn svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

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

.collection-card:hover .collection-btn {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Feature Section (Bespoke customization teaser) */
.split-feature {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.split-feature-img {
    flex: 1;
    position: relative;
    border: 1px solid var(--border-color);
}

.split-feature-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.split-feature-content {
    flex: 1;
}

@media (max-width: 768px) {
    .split-feature {
        flex-direction: column;
        gap: 3rem;
    }
}

/* B2B Trust Banner / Carousel */
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem 3rem;
    opacity: 0.7;
    flex-wrap: wrap;
    text-align: center;
}

.trust-logo-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .trust-logo-item {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
}

/* Testimonial Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--card-shadow-hover);
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-gold-hover);
    opacity: 0.15;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-company {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* About / Heritage Styles */
.heritage-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-left: 2rem;
    border-left: 1px solid var(--border-color);
}

@media (max-width: 480px) {
    .heritage-timeline {
        padding-left: 1.25rem;
        margin-top: 2rem;
    }
    .timeline-year {
        font-size: 1.4rem;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 0.25rem;
    width: 10px;
    height: 10px;
    background-color: var(--accent-gold);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    transition: background-color var(--transition-speed) ease;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

/* Concierge Grid */
.concierge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.concierge-card {
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    background-color: var(--bg-secondary);
    text-align: center;
}

.concierge-icon {
    width: 48px;
    height: 48px;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 1.5rem;
}

.concierge-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .concierge-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQs Accordion */
.accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-gold);
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
}

.accordion-item.active .accordion-header svg {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* arbitrary height to fit paragraph */
}

/* Customization Engine Styling */
.custom-workspace {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}

.preview-container {
    flex: 1.2;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    height: 550px;
}

.preview-frame {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.base-product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Render customization effects dynamically on top */
.customization-overlay-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.custom-render-area {
    position: absolute;
    /* Dimensions mapped dynamically to item surface */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Leather Debossing Effect */
.effect-emboss {
    color: rgba(20, 18, 16, 0.4);
    text-shadow: -1px -1px 1px rgba(0,0,0,0.8), 1px 1px 1px rgba(255,255,255,0.15);
    mix-blend-mode: multiply;
    font-weight: 600;
}

/* Metallic/Glass Engraving Effect (Brushed Gold/Silver) */
.effect-engrave-gold {
    color: #e6c875;
    background: linear-gradient(135deg, #e6c875 0%, #ba953c 50%, #f7e09e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.6));
    font-weight: 500;
}

.effect-engrave-silver {
    color: #e5e4e2;
    background: linear-gradient(135deg, #f3f3f3 0%, #a3a2a0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.6));
    font-weight: 500;
}

/* Frosted Glass Etching Effect */
.effect-etch {
    color: rgba(255, 255, 255, 0.7);
    filter: blur(0.4px) drop-shadow(0px 0px 2px rgba(255, 255, 255, 0.3));
    mix-blend-mode: overlay;
    font-weight: 400;
}

.custom-text-preview {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.2;
    word-break: break-all;
    max-width: 250px;
}

.custom-logo-preview {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.control-panel {
    flex: 0.8;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.control-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--text-secondary);
}

.custom-select, .custom-input {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.custom-select:focus, .custom-input:focus {
    border-color: var(--accent-gold);
}

.style-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.style-option {
    border: 1px solid var(--input-border);
    padding: 1rem 0.5rem;
    text-align: center;
    background-color: var(--input-bg);
    cursor: pointer;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all 0.3s ease;
}

.style-option.selected {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: var(--bg-tertiary);
}

@media (max-width: 992px) {
    .custom-workspace {
        flex-direction: column;
    }
    .preview-container {
        height: 400px;
    }
}

/* Inquiry Form (B2B Multi-step Quote Desk) */
.inquiry-wrapper {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
}

.inquiry-form-container {
    flex: 1.3;
}

.inquiry-summary-container {
    flex: 0.7;
    position: sticky;
    top: 130px;
    height: fit-content;
}

.quote-desk-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem;
}

.quote-summary-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    padding: 2.5rem;
}

/* Progress Tracker Bar */
.progress-tracker {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3.5rem;
}

.progress-tracker::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-bar-fill {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-gold);
    z-index: 2;
    transition: width 0.4s ease;
}

.progress-step {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.progress-step.active .step-num {
    border-color: var(--accent-gold);
    background-color: var(--bg-primary);
    color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold-glow);
}

.progress-step.completed .step-num {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
}

.step-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--text-primary);
}

/* Quote Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-full {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Grid layout for Product Select cards in Inquiry */
.product-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-select-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.product-select-card.selected {
    border-color: var(--accent-gold);
}

.product-select-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.product-select-info {
    flex: 1;
}

.prod-sel-title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.prod-sel-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.prod-sel-qty-input {
    width: 50px;
    padding: 0.4rem;
    border: 1px solid var(--input-border);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
}

/* Form Action Buttons Bar */
.form-actions-bar {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

/* B2B Summary Details styling */
.summary-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.summary-item-row.total-row {
    font-weight: 500;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .inquiry-wrapper {
        flex-direction: column;
    }
    .inquiry-summary-container {
        position: relative;
        top: 0;
    }
}

/* Collection Portfolio Specific Styles */
.portfolio-header {
    position: relative;
    padding: 8rem 0 3.5rem;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.portfolio-header-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-header .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .portfolio-header {
        padding: 6.5rem 0 2.5rem;
    }
    .portfolio-header .hero-title {
        font-size: 1.85rem;
    }
}

.portfolio-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 4rem 0 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.portfolio-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .portfolio-filter-bar {
        flex-direction: column;
        margin: 2rem 0 1.5rem;
    }
    .filter-btn {
        font-size: 0.78rem;
    }
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    cursor: pointer;
    padding-bottom: 0.5rem;
    position: relative;
    transition: color 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    color: var(--text-primary);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-gold);
}

.sort-select {
    padding: 0.5rem;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

/* Product Catalogue Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.product-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    transition: border-color var(--transition-speed) ease;
}

.product-card:hover {
    border-color: var(--accent-gold);
}

.prod-img-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.prod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .prod-img {
    transform: scale(1.05);
}

.prod-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prod-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.prod-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.prod-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
}

.prod-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    margin-top: auto;
}

.prod-specs-brief {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.prod-inquire-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 600;
}

.prod-inquire-link:hover {
    color: var(--text-primary);
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* B2B Quote Modal Confirmation */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    padding: 4rem;
    max-width: 650px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: zoomUp 0.4s ease forwards;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.modal-icon {
    width: 64px;
    height: 64px;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.modal-ref-box {
    border: 1px dashed var(--accent-gold);
    padding: 1.25rem;
    font-family: monospace;
    font-size: 1.2rem;
    background-color: var(--bg-primary);
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

/* Footer Section */
.footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    max-width: 320px;
    margin-bottom: 2rem;
}

.footer-col-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input-border);
    border-right: none;
    background-color: var(--input-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.newsletter-btn {
    background-color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    color: #ffffff;
    padding: 0 1.5rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--accent-gold-hover);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Animations */
@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

@keyframes subtleZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive Menu Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-bottom-bar {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.5rem;
        transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 999;
        border-top: 1px solid var(--border-color);
        padding: 2.5rem 1.5rem;
        overflow-y: auto;
        display: flex; /* Force override */
    }
    
    .navbar.scrolled .nav-bottom-bar {
        top: 50px;
        height: calc(100vh - 50px);
    }
    
    .nav-bottom-bar.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 1.2rem;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 0.85rem;
        justify-content: center;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(179, 146, 67, 0.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Toggle states for menu icon */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        background-color: var(--bg-tertiary);
        border: none;
        text-align: center;
        opacity: 1;
        display: none;
        width: 100%;
        margin-top: 0.5rem;
        pointer-events: auto;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown:hover .dropdown-content {
        animation: none;
        display: none;
    }
    
    .dropdown.active:hover .dropdown-content {
        display: block;
    }
}

/* Video Loop Placeholder Styling */
.video-placeholder-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0b0a;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.video-loop-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    opacity: 0.45;
}

.video-play-btn {
    position: absolute;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(179, 146, 67, 0.12);
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.video-play-btn:hover {
    background-color: var(--accent-gold);
    color: #ffffff;
    box-shadow: 0 0 22px var(--accent-gold-glow);
    transform: scale(1.06);
}

.video-play-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    margin-left: 2px;
}

/* Physical Showcase Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.gallery-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.gallery-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-5px);
}

.gallery-card-img-wrap {
    width: 100%;
    height: 72%;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(179, 146, 67, 0.05);
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-img {
    transform: scale(1.06);
}

.gallery-card-info {
    padding: 1.25rem 1.5rem;
    height: 28%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-card-tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.gallery-card-title {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.gallery-card-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-card {
        height: 380px;
    }
}

/* Quality Standards Cards & timelines */
.qc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

/* Wide card spans full 3 cols on desktop, single col on mobile */
.qc-card-wide {
    grid-column: span 3;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}

.qc-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.5rem 2rem;
    border-radius: 0;
    text-align: center;
    transition: border-color var(--transition-speed) ease;
}

.qc-card:hover {
    border-color: var(--accent-gold);
}

.qc-icon {
    width: 44px;
    height: 44px;
    stroke: var(--accent-gold);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 1.2rem;
}

.qc-title {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.qc-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .qc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    /* Reset span on mobile — already 1 column */
    .qc-card-wide {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* ================================================
   GLOBAL MOBILE OVERFLOW PROTECTION
   Prevents any element from causing horizontal scroll
   ================================================ */
@media (max-width: 768px) {

    /* Portfolio header must clip its decorative elements */
    .portfolio-header {
        overflow: hidden;
    }

    /* Sections with inline styles should not overflow */
    section {
        overflow-x: hidden;
        max-width: 100%;
    }

    /* All images should be responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Tables scroll internally — not page-level */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }

    /* Flex rows wrap on mobile */
    .form-actions-bar {
        flex-wrap: wrap;
        gap: 1rem;
    }

    /* Prevent any absolute-positioned decorative elements from bleeding */
    .portfolio-header,
    .footer {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    /* Extra small: tighten section padding */
    .section-padding {
        padding: 3.5rem 0;
    }

    /* Smaller product card images */
    .prod-img-wrap {
        height: 240px;
    }

    /* Hero sub tag wraps nicely */
    .hero-sub {
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        padding: 0 1rem;
        word-break: break-word;
    }

    /* Collection cards shorter on phones */
    .collection-card {
        height: 360px;
    }
}

