/* ==================== LUXURY WINE ESTATE - PREMIUM DESIGN ==================== */
:root {
    --primary-color: #2C1810;
    --secondary-color: #B8966F;
    --accent-gold: #D4AF37;
    --dark-wine: #5C2E2E;
    --dark-bg: #1A1310;
    --light-bg: #FAF8F5;
    --cream: #F5F0E8;
    --text-dark: #1A0F08;
    --text-medium: #2D2420;
    --text-light: #4A3F38;
    --white: #FFFFFF;
    --border-light: #E8E3DD;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-subtle: 0 4px 30px rgba(44, 24, 16, 0.06);
    --shadow-medium: 0 10px 50px rgba(44, 24, 16, 0.10);
    --shadow-strong: 0 20px 70px rgba(44, 24, 16, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background: var(--light-bg);
    font-weight: 300;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* ==================== LUXURY HEADER ==================== */
.header-top {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-bottom: none;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact span {
    margin-right: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-contact span::before {
    content: '•';
    color: var(--accent-gold);
}

.header-social a {
    margin-left: 20px;
    color: var(--secondary-color);
    font-weight: 400;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.header-social a svg {
    transition: transform 0.3s ease;
}

.header-social a:hover svg {
    transform: scale(1.2);
}

.header-social .whatsapp-link:hover {
    color: #25D366;
}

.header-social a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.header-social a:hover::after {
    width: 100%;
}

.header-social a:hover {
    color: var(--accent-gold);
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: relative;
    z-index: 1000;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-subtle);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--border-light);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 40px;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: white;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.navbar.scrolled .logo h1 {
    color: var(--primary-color);
    text-shadow: none;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-left: -20px;
}

.logo h1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 35px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, var(--secondary-color) 100%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 70%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

/* ==================== HERO SECTION - LUXURY ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: -60px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 24, 16, 0.5) 0%, rgba(44, 24, 16, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: var(--font-body);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUpDelayed 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollLine 2s infinite;
}

/* ==================== ELEGANT BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 0;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid transparent;
    font-size: 0.75rem;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-smooth);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--dark-bg);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* ==================== SECTIONS - LUXURY SPACING ==================== */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2,
.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 2px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 20px auto;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 2;
    letter-spacing: 0.5px;
}

.section-footer {
    text-align: center;
    margin-top: 70px;
}

/* ==================== LUXURY PRODUCT CARDS ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    position: relative;
    padding-top: 100%;
    background: var(--cream);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.95);
    backdrop-filter: blur(10px);
    color: var(--dark-bg);
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.product-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.35;
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.product-description {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 14px;
    flex-grow: 1;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-details {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-medium);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: 0.3px;
    flex-wrap: wrap;
}

.product-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    gap: 14px;
    text-align: center;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    white-space: nowrap;
    width: 100%;
}

.btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    white-space: nowrap;
    width: 100%;
}

.btn-order:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.btn-order svg {
    flex-shrink: 0;
}

.product-stock {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-stock.in-stock {
    color: #5C7C5C;
}

.product-stock.low-stock {
    color: #B8966F;
}

.product-stock.out-of-stock {
    color: #8B6F6F;
}

/* ==================== CATEGORIES - LUXURY LAYOUT ==================== */
.categories {
    background: var(--cream);
    position: relative;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.category-card {
    background: var(--white);
    padding: 70px 40px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-card:hover::before {
    opacity: 0.05;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 400;
}

/* ==================== ABOUT SECTION - LUXURY ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-medium);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-gold);
    z-index: 1;
}

.about-image img {
    transition: var(--transition-smooth);
    filter: grayscale(30%);
}

.about-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 2;
    font-style: italic;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 2;
    font-weight: 400;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--cream);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.feature:hover {
    background: var(--white);
    border-color: var(--border-light);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

.feature h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature p {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 400;
}

/* ==================== TESTIMONIALS - LUXURY ==================== */
.testimonials {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.testimonials .section-title {
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonials .section-title {
    color: #FFFFFF;
}

.testimonials .section-header h2 {
    color: #FFFFFF;
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.stars {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

.testimonial-card p {
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 2;
    font-size: 1rem;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author strong {
    color: var(--accent-gold);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* ==================== CONTACT - LUXURY ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-details {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--cream);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.contact-item:hover {
    background: var(--white);
    border-color: var(--border-light);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    color: var(--accent-gold);
    filter: grayscale(50%);
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    background: var(--cream);
    color: var(--text-dark);
}

.form-select {
    width: 100%;
    padding: 16px 24px;
    padding-right: 45px;
    border: 1px solid rgba(44, 24, 16, 0.12);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"%3e%3cpath d="M1 1L6 6L11 1" stroke="%23D4AF37" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-select:hover {
    border-color: var(--accent-gold);
    background: var(--cream);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), 0 4px 20px rgba(212, 175, 55, 0.2);
}

/* ==================== FOOTER - LUXURY ==================== */
.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(184, 150, 111, 0.2);
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr !important;
    gap: 50px !important;
    margin-bottom: 60px;
    text-align: left !important;
    align-items: start;
}

.footer-col:first-child {
    padding-right: 20px;
}

.footer-col h3,
.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after,
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.footer-col p {
    line-height: 1.9;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
    transition: var(--transition-fast);
    padding-left: 0;
}

.footer-col ul li:hover {
    transform: translateX(5px);
}

.footer-col ul li a {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
}

.footer-legal {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.legal-link {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.legal-icon {
    height: 50px;
    width: auto;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: brightness(0.95);
}

.legal-link:hover .legal-icon {
    opacity: 1;
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-social a {
    color: var(--secondary-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-social a svg {
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-gold);
}

.footer-social a:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.footer-social .whatsapp-btn:hover {
    color: #25D366;
}

/* ==================== CATALOG PAGE ==================== */
.page-header {
    background: transparent;
    color: var(--white);
    text-align: center;
    padding: 120px 40px;
    position: relative;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 30px auto;
}

.page-header p {
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}

.catalog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 246, 243, 0.95) 100%);
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(44, 24, 16, 0.08), 0 2px 8px rgba(44, 24, 16, 0.04);
    margin-bottom: 35px;
    border: none;
    border-top: 3px solid var(--accent-gold);
    position: relative;
    overflow: hidden;
}

.filter-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -50%;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--secondary-gold), var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.filter-section:hover::before {
    opacity: 1;
}

.filter-section h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 28px;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 18px;
}

.filter-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    padding: 16px 24px;
    background: var(--white);
    border: 1px solid rgba(44, 24, 16, 0.12);
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.filter-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn::after {
    content: '✦';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--accent-gold);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: var(--accent-gold);
    background: var(--cream);
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.15);
}

.filter-btn:hover::before {
    transform: scaleY(1);
}

.filter-btn:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d2619 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 6px 24px rgba(44, 24, 16, 0.25), 0 0 0 1px var(--accent-gold);
    transform: translateX(4px);
}

.filter-btn.active::before {
    transform: scaleY(1);
    width: 100%;
    background: rgba(212, 175, 55, 0.1);
}

.filter-btn.active::after {
    opacity: 1;
    color: var(--accent-gold);
    transform: translateY(-50%) scale(1);
}

.info-box {
    background: var(--cream);
    padding: 25px;
    border-left: 2px solid var(--accent-gold);
}

.info-box p {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.catalog-header {
    margin-bottom: 40px;
}

.results-count {
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== LOADING & UTILITIES ==================== */
.loading {
    text-align: center;
    padding: 80px 20px;
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpDelayed {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    50% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ==================== RESPONSIVE - LUXURY ==================== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .logo-img {
        height: 120px;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: white;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    
    .catalog-sidebar {
        position: static;
        height: auto;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-header h2,
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 90px;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-contact,
    .header-social {
        width: 100%;
        justify-content: center;
    }
    
    .header-contact span {
        margin: 0 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2,
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-details {
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 70px;
    }
    
    .header-top {
        font-size: 0.65rem;
        padding: 10px 0;
    }
    
    .header-contact span {
        display: block;
        margin: 5px 0;
    }
    
    .hero {
        height: 65vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header h2,
    .section-title {
        font-size: 1.6rem;
    }
    
    .product-card {
        padding: 0;
    }
    
    .product-info {
        padding: 25px;
    }
    
    .category-card {
        padding: 50px 25px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Product Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 24, 16, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.product-modal-content {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.product-modal.active .product-modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.95);
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 28px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 1;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-category {
    color: var(--secondary-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F0E8 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-medium);
}

.modal-detail-item span:first-child {
    font-size: 1.3rem;
}

.modal-description {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.8;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.modal-btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.modal-btn-secondary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8966F 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.modal-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        padding-top: 50px;
    }
    
    .modal-close {
        width: 50px;
        height: 50px;
        font-size: 32px;
        top: 10px;
        right: 10px;
        background: rgba(212, 175, 55, 1);
        border: 3px solid white;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-price {
        font-size: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .product-modal {
        padding: 10px;
    }
}
