:root {
    --color-bg-dark: #120c08;
    --color-bg-panel: #1e150f;
    --color-wood: #3a2516;
    --color-gold: #cba365;
    --color-gold-hover: #e5b976;
    --color-text-light: #f8f1e5;
    --color-text-muted: #9b8c7c;
    --color-whatsapp: #25D366;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-gold);
    letter-spacing: 1px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover:not(.disabled) {
    background-color: transparent;
    color: var(--color-gold);
}

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

.btn-secondary:hover:not(.disabled) {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-primary.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
    margin-bottom: 10px;
}

.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Navbar (Glassmorphism) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(18, 12, 8, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(203, 163, 101, 0.1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary) {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.hero-logo {
    width: 220px;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid rgba(203, 163, 101, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Categories Section - Luxury Editorial */
.categories-section {
    padding: 80px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.category-grid.luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(203, 163, 101, 0.15);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s ease;
}

.category-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-color: rgba(203, 163, 101, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-banner:hover .banner-content {
    transform: translateY(0);
}

.banner-content h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--color-text-light);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.banner-content .btn-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-gold);
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
    display: inline-block;
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}

.category-banner:hover .banner-content .btn-text {
    opacity: 1;
    border-color: var(--color-gold);
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.craft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.craft-text h2 {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.craft-text p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.craft-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.feature h4 {
    font-size: 1rem;
    font-family: var(--font-body);
}

.craft-image img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--color-wood);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Collection Section */
.collection-section {
    padding: 100px 0;
    background-color: var(--color-bg-panel);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-wood);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    border-color: rgba(203, 163, 101, 0.5);
}

.product-image-container {
    height: 380px;
    width: 100%;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-wood);
    color: rgba(255,255,255,0.2);
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.product-info .description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    min-height: 45px;
}

.product-info .price {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-bottom: 25px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-panel);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--color-wood);
    text-align: center;
}

.stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.review {
    font-style: italic;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.customer {
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-whatsapp);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: #080503;
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-wood);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer h3, .footer h4 {
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-text-muted);
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-wood);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .craft-content, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 15px;
    }
    
    .nav-links {
        margin-top: 15px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .floating-whatsapp span {
        display: none;
    }
    
    .floating-whatsapp {
        padding: 15px;
        border-radius: 50%;
    }
}
