/* Reset & Base Styles */
:root {
    --primary: #D4AF37; /* Gold */
    --primary-light: #E5C363;
    --background: #0A0A0A;
    --card-bg: #141414;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --cream: #F5F5F0;
    --font-main: 'Outfit', sans-serif;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: -0.02em;
}

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

/* Utilities */
.py-24 { padding: 6rem 0; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.max-w-xl { max-width: 36rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Navbar */
.navbar {
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 38px;
    width: auto;
    /* This removes white backgrounds on logos if they aren't transparent */
    mix-blend-mode: screen; 
    filter: brightness(1.1);
}

.text-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 10px 0;
}

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

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

.action-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-icons i {
    width: 20px;
    height: 20px;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.action-icons i:hover {
    color: var(--primary);
}

.nav-btn.primary {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: 0.3s;
}

.nav-btn.primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 20%),
                linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .hero-content {
    z-index: 10;
}


.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 400;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

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

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

.btn.secondary {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.3);
}

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

.btn.outline {
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

.nav-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    background: var(--primary);
    color: var(--background);
    border: none;
    transition: var(--transition);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background: var(--background);
    overflow: hidden;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    height: calc(100vh - var(--header-height));
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sections */
.section-tag {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    color: var(--cream);
}

/* Category Slider */
.category-slider {
    padding: 0;
}

.c-slide {
    height: auto;
}

/* New Category Card Design */
.category-card-new {
    background: #080808;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.category-card-new:hover {
    transform: translateY(-5px);
}

.cat-img-box {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card-new:hover .cat-img-box img {
    transform: scale(1.05);
}

.cat-info-box {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cat-tag {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cat-info-box h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.cat-btn-outline {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--primary);
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
}

.cat-btn-outline:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* Premium Banner */
.premium-banner {
    background: #000;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.5em;
    color: rgba(212, 175, 55, 0.1);
    background: linear-gradient(90deg, #D4AF37, #E5C363, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.image-scroller {
    overflow: hidden;
    padding: 2rem 0;
}

.scroll-track {
    display: flex;
    gap: 1rem;
    animation: scroll 30s linear infinite;
}

.scroll-track img {
    height: 400px;
    width: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

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

.step-num {
    font-size: 5rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.15);
    display: block;
}

.process-item h3 {
    margin-top: -1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-attachment: fixed;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: #050505;
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-column h4 {
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.footer-brand .logo {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    background: rgba(212, 175, 55, 0.05);
}





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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--primary);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 180px;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-map-container iframe {
    width: 100%;
    height: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.copyright {
    color: rgba(255,255,255,0.25);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

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

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: translateY(-3px);
    }
}

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

.fade-in { animation: fadeInUp 1s forwards; opacity: 0; }
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

/* Responsive */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-links, .mobile-hide { display: none; }
    .menu-toggle { display: block; }

    .hero {
        text-align: center;
        padding-top: calc(var(--header-height) + 1rem);
        min-height: 85vh; /* Reduced for better mobile fit */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .hero h1 { 
        font-size: 2.2rem; 
        line-height: 1.2;
        margin-bottom: 0.75rem; 
    }
    
    .hero-description { 
        font-size: 0.95rem; 
        margin-bottom: 1.5rem; 
        line-height: 1.4;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 0.75rem;
    }

    .btn { 
        width: 100%; 
        justify-content: center; 
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .section-title { font-size: 2rem; }
    .py-24 { padding: 4rem 0; }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        gap: 2rem;
    }

    .scroll-track img {
        height: 250px;
        width: 200px;
    }

    .cta-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand p { margin: 0 auto; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.75rem; }
    .logo { font-size: 1.1rem; letter-spacing: 0.15em; }
    .navbar-container { padding: 0 0.5rem; }
}
/* Product Section Design */
.bg-card { background: var(--card-bg); }
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
}

.p-img-box {
    aspect-ratio: 4/5;
    background: transparent; /* Background removed as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0; /* Padding removed for full width */
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed to cover for full stretch */
    transition: var(--transition);
}

.product-card:hover .p-img-box img {
    transform: scale(1.08);
}

.p-info-box {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #888;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 400;
}

.p-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
    height: 2.8rem; /* Equal height for titles (2 lines) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-price-row {
    margin-bottom: 1.25rem;
}

.p-price {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

.p-price.old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.p-subtext {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.p-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.product-card:hover .p-btn {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

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

/* Dropdown Menu Styles */
.nav-links li {
    position: relative;
}

.nav-links li.has-dropdown > a {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem !important;
    text-transform: none !important;
    letter-spacing: 0.05em !important;
    color: var(--text-muted) !important;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.05);
    color: var(--primary) !important;
}
