/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #faf8f3;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Desktop Navigation Styles */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
    
    .desktop-nav {
        display: flex !important;
    }
    
    .mobile-nav-toggle {
        display: none !important;
    }
    
    .mobile-nav-menu {
        display: none !important;
    }
    
    .mobile-only {
        display: none !important;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Mobile Navigation */
    .mobile-menu {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    /* Header adjustments */
    .header-top-bar {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }
    
    .header-top-bar .flex-wrap {
        justify-content: center;
        text-align: center;
    }
    
    .header-top-bar a {
        font-size: 0.75rem;
    }
    
    /* Logo and branding */
    .logo-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo-container .h-20 {
        height: 4rem;
        width: 4rem;
    }
    
    .logo-container .text-3xl {
        font-size: 1.5rem;
    }
    
    .logo-container .text-sm {
        font-size: 0.75rem;
    }
    
    /* Typography adjustments */
    h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .text-4xl {
        font-size: 2rem !important;
    }
    
    .text-3xl {
        font-size: 1.75rem !important;
    }
    
    .text-2xl {
        font-size: 1.5rem !important;
    }
    
    .text-xl {
        font-size: 1.25rem !important;
    }
    
    /* Grid adjustments */
    .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .grid.lg\\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .grid.lg\\:grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    /* Card adjustments */
    .product-card {
        margin-bottom: 1rem;
    }
    
    .product-card-image {
        height: 200px;
    }
    
    /* Button adjustments */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 44px;
    }
    
    /* Form adjustments */
    input, textarea, select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Gallery adjustments */
    .gallery-main {
        height: 300px;
    }
    
    .gallery-thumbnails {
        padding: 0.5rem;
    }
    
    .gallery-thumbnail {
        width: 60px;
        height: 48px;
    }
    
    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Spacing adjustments */
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .py-16 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-12 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .mb-16 {
        margin-bottom: 2rem;
    }
    
    .mb-12 {
        margin-bottom: 1.5rem;
    }
    
    .mb-8 {
        margin-bottom: 1rem;
    }
    
    /* Hide elements on mobile */
    .hidden-mobile {
        display: none !important;
    }
    
    /* Show elements only on mobile */
    .mobile-only {
        display: block !important;
    }
    
    /* Mobile Navigation Styles */
    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #000;
        margin: 5px 0;
        transition: 0.3s;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .mobile-nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        z-index: 1000;
        transition: left 0.3s ease;
        padding-top: 80px;
    }
    
    .mobile-nav-menu.active {
        left: 0;
    }
    
    .mobile-nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    .mobile-nav-menu li {
        margin: 1rem 0;
    }
    
    .mobile-nav-menu a {
        color: white;
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1rem;
        display: block;
        transition: color 0.3s;
    }
    
    .mobile-nav-menu a:hover,
    .mobile-nav-menu a.active {
        color: var(--golden);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    h1 {
        font-size: 1.75rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    .text-4xl {
        font-size: 1.75rem !important;
    }
    
    .text-3xl {
        font-size: 1.5rem !important;
    }
    
    .text-2xl {
        font-size: 1.25rem !important;
    }
    
    .py-20 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-16 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .mb-16 {
        margin-bottom: 1.5rem;
    }
    
    .mb-12 {
        margin-bottom: 1rem;
    }
}

/* Colors */
:root {
    --golden: #d4af37;
    --golden-dark: #b8941f;
    --golden-light: #f4e5b8;
    --black: #000000;
    --white: #ffffff;
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --header-height: 140px;
}

/* Utility Classes */
.bg-golden { background-color: var(--golden); }
.bg-golden-dark { background-color: var(--golden-dark); }
.bg-golden-light { background-color: var(--golden-light); }
.bg-black { background-color: var(--black); }
.bg-white { background-color: var(--white); }
.bg-neutral-50 { background-color: var(--neutral-50); }
.bg-neutral-100 { background-color: var(--neutral-100); }
.bg-neutral-200 { background-color: var(--neutral-200); }
.bg-neutral-300 { background-color: var(--neutral-300); }
.bg-neutral-400 { background-color: var(--neutral-400); }
.bg-neutral-500 { background-color: var(--neutral-500); }
.bg-neutral-600 { background-color: var(--neutral-600); }
.bg-neutral-700 { background-color: var(--neutral-700); }
.bg-neutral-800 { background-color: var(--neutral-800); }
.bg-neutral-900 { background-color: var(--neutral-900); }

.text-golden { color: var(--golden); }
.text-golden-dark { color: var(--golden-dark); }
.text-golden-light { color: var(--golden-light); }
.text-black { color: var(--black); }
.text-white { color: var(--white); }
.text-neutral-50 { color: var(--neutral-50); }
.text-neutral-100 { color: var(--neutral-100); }
.text-neutral-200 { color: var(--neutral-200); }
.text-neutral-300 { color: var(--neutral-300); }
.text-neutral-400 { color: var(--neutral-400); }
.text-neutral-500 { color: var(--neutral-500); }
.text-neutral-600 { color: var(--neutral-600); }
.text-neutral-700 { color: var(--neutral-700); }
.text-neutral-800 { color: var(--neutral-800); }
.text-neutral-900 { color: var(--neutral-900); }
.text-white { color: var(--white); }
.text-neutral-200 { color: var(--neutral-200); }

.border-golden { border-color: var(--golden); }
.border-golden-dark { border-color: var(--golden-dark); }
.border-golden-light { border-color: var(--golden-light); }
.border-neutral-200 { border-color: var(--neutral-200); }
.border-neutral-300 { border-color: var(--neutral-300); }
.border-neutral-800 { border-color: var(--neutral-800); }

/* Golden Gradient */
.golden-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.golden-text {
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b8 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Luxury Shadow */
.luxury-shadow {
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15), 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Professional Shadows */
.professional-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.professional-shadow:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Layout */
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.transform { transform: scale(1); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.left-1\/2 { left: 50%; }
.bottom-8 { bottom: 2rem; }
.z-10 { z-index: 10; }

/* Flexbox */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Responsive Grid */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-2 { padding-top: 0.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mr-4 { margin-right: 1rem; }
.mr-8 { margin-right: 2rem; }
.ml-auto { margin-left: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing */
.w-0 { width: 0; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-full { width: 100%; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-[600px] { height: 600px; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }
.min-h-screen-offset { min-height: calc(100vh - var(--header-height)); }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-h-16 { max-height: 4rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1.2; }
.text-sm { font-size: 0.875rem; line-height: 1.4; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-xl { font-size: 1.25rem; line-height: 1.7; }
.text-2xl { font-size: 1.5rem; line-height: 1.4; }
.text-3xl { font-size: 1.875rem; line-height: 1.3; }
.text-4xl { font-size: 2.25rem; line-height: 1.2; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-golden-light { color: var(--golden-light); }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-widest-2 { letter-spacing: 0.15em; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }
.whitespace-nowrap { white-space: nowrap; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top-width: 1px; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }

/* Shadows */
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object Fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Opacity */
.opacity-60 { opacity: 0.6; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover Effects */
.hover\:text-golden:hover { color: var(--golden); }
.hover\:bg-golden:hover { background-color: var(--golden); }
.hover\:bg-golden-dark:hover { background-color: var(--golden-dark); }
.hover\:bg-golden-50:hover { background-color: var(--neutral-50); }
.hover\:bg-neutral-200:hover { background-color: var(--neutral-200); }
.hover\:border-golden:hover { border-color: var(--golden); }
.hover\:border-golden:hover { border-color: var(--golden); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:grayscale-0:hover { filter: grayscale(0); }

/* Group Hover */
.group:hover .group-hover\:w-full { width: 100%; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Shrink */
.shrink-0 { flex-shrink: 0; }

/* Space */
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Responsive Design */
@media (min-width: 640px) {
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:gap-6 { gap: 1.5rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:gap-12 { gap: 3rem; }
    .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
    .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .md\:text-left { text-align: left; }
    .md\:text-center { text-align: center; }
    .md\:items-center { align-items: center; }
    .md\:justify-center { justify-content: center; }
    .md\:justify-between { justify-content: space-between; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:gap-8 { gap: 2rem; }
    .lg\:gap-12 { gap: 3rem; }
    .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .xl\:gap-16 { gap: 4rem; }
    .xl\:px-16 { padding-left: 4rem; padding-right: 4rem; }
}

/* Background Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-black { --tw-gradient-from: #000000; --tw-gradient-to: rgb(0 0 0 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-black\/80 { --tw-gradient-to: rgb(0 0 0 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(0 0 0 / 0.8), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-to: rgb(0 0 0 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-transparent { --tw-gradient-to: rgb(0 0 0 / 0); --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to); }
.to-black\/60 { --tw-gradient-to: rgb(0 0 0 / 0.6); }
.to-black\/80 { --tw-gradient-to: rgb(0 0 0 / 0.8); }

/* Custom Classes */
.golden-border {
    border: 2px solid var(--golden);
}

/* Form Elements */
input, textarea, button {
    font-family: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

input, textarea {
    border: 1px solid var(--neutral-300);
    border-radius: 0.25rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    transition: border-color 0.15s ease-in-out;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Lists */
ul {
    list-style: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

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

/* Professional Enhancements */
.section-padding {
    padding: 5rem 0;
}

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

/* Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: 2px solid var(--golden);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--golden);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Card Enhancements */
.card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-200);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Product Card Alignment */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-image {
    height: 12rem;
    flex-shrink: 0;
}

.product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    flex-shrink: 0;
}

.product-card-specs {
    flex: 1;
    margin:.5rem 0;
}

/* Ensure consistent grid layout */
@media (min-width: 768px) and (max-width: 1023px) {
    .grid.md\\:grid-cols-2.lg\\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid.md\\:grid-cols-2.lg\\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Improve spacing consistency */
.grid.md\\:grid-cols-2.lg\\:grid-cols-3 {
    align-items: stretch;
}

/* Form Enhancements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--neutral-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--neutral-300);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page load fade-in helper */
body.loaded .fade-in {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Animation and Effects */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -10px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Text Shadow Effects */
.drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

.drop-shadow-2xl {
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

/* Background Image with Gradient Overlay */
.hero-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gradient Overlay Variables */
:root {
    --gradient-black-start: rgba(0, 0, 0, 0.4);
    --gradient-black-middle: rgba(0, 0, 0, 0.6);
    --gradient-black-end: rgba(0, 0, 0, 0.7);
}

/* Slideshow Styles */
.thumbnail {
    transition: all 0.3s ease;
}

.active-thumbnail {
    opacity: 1 !important;
    border-color: var(--golden) !important;
}

/* Enhanced Arrow Navigation */
#main-slide {
    transition: opacity 0.3s ease-in-out;
}

/* Enhanced button styling */
button[id*="-btn"] {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

button[id*="-btn"]:hover {
    transform: scale(1.1) !important;
    transition: all 0.3s ease;
}

button[id*="-btn"]:active {
    transform: scale(0.95) !important;
}

/* Thumbnail container scrolling */
#thumbnail-container {
    scroll-behavior: smooth;
}

/* Enhanced button visibility */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

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

/* About Us Dropdown Enhanced Styles */
.dropdown-arrow {
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-container:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Simplified dropdown animations */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 8px 6px;
    min-width: 280px;
    background: white;
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-container.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Enhanced dropdown items with perfect alignment */
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    margin: 2px 6px;
    border-radius: 8px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.4;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    color: #111827;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.10);
    color: #D4AF37;
    font-weight: 600;
}

.dropdown-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    font-weight: 700;
    border-left: 3px solid #D4AF37;
    padding-left: 13px;
}

.dropdown-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: #D4AF37;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.dropdown-item span {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile/touch responsive dropdown */
@media (max-width: 1024px) {
    .dropdown-menu {
        position: fixed;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
        width: min(90vw, 320px);
        box-shadow: 
            0 20px 25px -5px rgba(0, 0, 0, 0.2), 
            0 10px 10px -5px rgba(0, 0, 0, 0.1);
    }
    
    .dropdown-container:hover .dropdown-menu,
    .dropdown-container.dropdown-open .dropdown-menu {
        transform: translateX(-50%) translateY(0) scale(1);
    
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    .dropdown-container {
        position: relative;
    }
    
    .dropdown-toggle {
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .dropdown-menu {
        position: absolute;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease-out;
    }
    
    .dropdown-container.dropdown-open .dropdown-menu {
        transform: translateY(0);
        opacity:.9;
        visibility: visible;
    }
    
    .dropdown-item {
        padding: 16px 20px;
        font-size: 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* Enhanced visual effects */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid white;
}

`.dropdown-toggle {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    background: transparent;
}

/* Ensure About Us text matches other menu fonts */
.dropdown-toggle span {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.dropdown-toggle:hover {
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.dropdown-toggle:active {
    transform: translateY(0);
}

.dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.dropdown-toggle:hover::before {
    left: 100%;
}

/* Keyboard navigation enhancement */
.dropdown-toggle:focus,
.dropdown-item:focus {
    outline: 2px solid var(--golden);
    outline-offset: 2px;
    border-radius: 4px;
}

.dropdown-container[aria-expanded="true"] .dropdown-toggle {
    background: rgba(212, 175, 55, 0.1);
    color: var(--golden-dark);
}

/* Ripple effect on mobile */
@media (hover: none) and (pointer: coarse) {
    .dropdown-item:active {
        background: rgba(212, 175, 55, 0.2) !important;
        transform: scale(0.98);
        transition: all 0.1s ease;
    }
}

/* Loading animation for dropdown items */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    animation: dropdownFadeIn 0.2s ease-out forwards;
}

.dropdown-item:nth-child(1) { animation-delay: 0ms; }
.dropdown-item:nth-child(2) { animation-delay: 50ms; }
.dropdown-item:nth-child(3) { animation-delay: 100ms; }
.dropdown-item:nth-child(4) { animation-delay: 150ms; }

/* Enhanced dropdown menu theme consistency */
.dropdown-container:hover .dropdown-toggle,
.dropdown-container.dropdown-open .dropdown-toggle {
    color: #D4AF37 !important;
}

/* Perfect text alignment and spacing */
.dropdown-item span {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Ensure consistent golden theme colors */
.dropdown-item:hover span,
.dropdown-item.active span {
    color: #D4AF37 !important;
}

/* Remove any default link styles */
.dropdown-item,
.dropdown-item:visited {
    text-decoration: none;
    color: inherit;
}

.dropdown-item:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Enhanced backdrop */
.dropdown-container::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 49;
}

.dropdown-container.dropdown-open::after {
    opacity: 1;
    visibility: visible;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* Slideshow Image Transitions */
.slide-enter {
    opacity: 0;
    transform: scale(1.1);
}

.slide-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Modal Styles */
.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.z-50 {
    z-index: 9999;
}

.bg-opacity-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-black {
    background-color: #000000;
}

.hidden {
    display: none;
}

.flex {
    display: flex;
}

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

.justify-center {
    justify-content: center;
}

.min-h-screen {
    min-height: 100vh;
}

.max-w-4xl {
    max-width: 56rem;
}

.w-full {
    width: 100%;
}

.max-h-\[90vh\] {
    max-height: 90vh;
}

.overflow-y-auto {
    overflow-y: auto;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.bg-white {
    background-color: #ffffff;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

/* Modal Animation */
#modal-overlay {
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

#modal-content {
    animation: slideIn 0.3s ease-out;
}

/* Enhanced Navigation Menu Styles */
nav a {
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: color 0.15s ease, background 0.15s ease;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

nav a:hover {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.08);
}

/* Prevent flickering between nav items */
nav {
    gap: 2px !important;
}

nav a {
    margin: 0 2px;
}

nav a.active {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.15);
    font-weight: 700;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F4D03F);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Navigation Menu Item Subtle Animations */
nav a span {
    position: relative;
    z-index: 1;
}

nav a:hover span {
    transform: translateX(2px);
}

/* Enhanced Dropdown Toggle Styling */
.dropdown-toggle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: -0.01em !important;
}

.dropdown-toggle:hover {
    color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.08) !important;
}

/* Animated Underline Effect */
.animated-underline {
    animation: underline-pulse 2s ease-in-out infinite;
}

@keyframes underline-pulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.7; transform: scaleX(0.95); }
}

/* Mobile Menu Styles */
.space-y-4 > * + * {
    margin-top: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.border-b {
    border-bottom-width: 1px;
}

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
