:root {
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --gold-dark: #8B6914;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --gray: #333333;
    --gray2: #555555;
    --light: #f8f5f0;
    --cream: #FDF8F0;
    --white: #ffffff;
    --border: #e8e0d0;
    --text: #2c2c2c;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(184,134,11,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: all 0.3s ease;
    --font: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Montserrat', 'Arial', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: var(--dark);
    padding: 8px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top a { color: rgba(255,255,255,0.7); }
.header-top a:hover { color: var(--gold-light); }

.header-main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo img { height: 60px; width: auto; }
.site-logo .logo-text {
    font-family: var(--font);
    font-size: 24px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 1px;
}
.site-logo .logo-sub {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav ul { list-style: none; display: flex; gap: 0; align-items: center; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}
.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--gold);
}
.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    left: 18px; right: 18px;
}

/* Dropdown */
.main-nav ul li .dropdown {
    position: absolute;
    top: 100%; left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}
.main-nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.main-nav ul li .dropdown li a {
    padding: 10px 20px;
    font-size: 12px;
    border-bottom: 1px solid var(--border);
    text-transform: none;
    letter-spacing: 0;
}
.main-nav ul li .dropdown li a::after { display: none; }
.main-nav ul li .dropdown li a:hover {
    background: var(--cream);
    color: var(--gold);
    padding-left: 28px;
}

/* Mobile menu toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.slider-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.slider-item.active { opacity: 1; z-index: 1; }

.slider-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}
.slider-item.active .slider-bg { transform: scale(1); }

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.slider-content {
    position: absolute;
    bottom: 15%;
    left: 0; right: 0;
    color: var(--white);
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.slider-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.slider-title {
    font-family: var(--font);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slider-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.slider-dot.active {
    background: var(--gold-light);
    width: 24px;
    border-radius: 4px;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}
.slider-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.3);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
}
.slider-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
}
.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}
.btn-white:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== SECTIONS ========== */
section { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}
.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.section-tag::before { right: 100%; margin-right: -20px; }
.section-tag::after { left: 100%; margin-left: -20px; }

.section-title {
    font-family: var(--font);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== PRODUCT CARDS ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--light);
}

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

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

.product-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 2px;
}

.badge-new { background: var(--gold); color: var(--white); }
.badge-featured { background: var(--dark); color: var(--white); }
.badge-out { background: #ccc; color: var(--white); }

.product-card-actions {
    position: absolute;
    bottom: -50px;
    left: 0; right: 0;
    display: flex;
    gap: 8px;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    transition: var(--transition);
}
.product-card:hover .product-card-actions {
    bottom: 0;
}
.product-card-actions a {
    flex: 1;
    text-align: center;
    padding: 8px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    text-transform: uppercase;
}
.product-card-actions a:hover {
    background: var(--white);
    color: var(--dark);
}

.product-card-body {
    padding: 16px;
}

.product-card-category {
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card-name {
    font-family: var(--font);
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-card-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

.price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-request {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* ========== CATEGORIES GRID ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}
.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--light);
    transition: transform 0.5s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.08); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.category-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    color: var(--white);
}

.category-card-name {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.category-card-count {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* ========== GOLD PRICES ========== */
.gold-prices-section {
    background: var(--dark);
    padding: 30px 0;
}

.gold-prices-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gold-price-item {
    text-align: center;
    color: var(--white);
}

.gold-price-name {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.gold-price-values {
    display: flex;
    gap: 20px;
}

.gold-price-buy,
.gold-price-sell {
    font-size: 13px;
    font-weight: 600;
}

.gold-price-label {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    display: block;
}

.gold-price-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.service-card h3 {
    font-family: var(--font);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: var(--cream);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 60px;
    color: var(--gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    font-weight: 700;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-pos {
    font-size: 12px;
    color: var(--text-light);
}

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--gold-light);
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.06); }

.blog-card-body {
    padding: 24px;
}

.blog-card-cat {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: var(--font);
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--gold); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-light);
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1;
    cursor: pointer;
}

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

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(184,134,11,0.7);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ========== ABOUT SECTION ========== */
.about-section {
    background: var(--cream);
}

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

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(184,134,11,0.4);
}

.about-image-badge .years {
    font-size: 28px;
    line-height: 1;
    font-family: var(--font);
}

.about-image-badge .years-label {
    font-size: 10px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: var(--font);
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.about-feature-text p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ========== TRUST / CERTIFICATES ========== */
.trust-section {
    background: var(--dark);
    padding: 60px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.trust-item {
    color: var(--white);
}

.trust-number {
    font-family: var(--font);
    font-size: 48px;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info {
    background: var(--dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    color: var(--white);
}

.contact-info h3 {
    font-family: var(--font);
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--gold-light);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(184,134,11,0.2);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 4px;
}
.contact-info-text strong {
    font-size: 14px;
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-error {
    font-size: 12px;
    color: #e53935;
    margin-top: 4px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 70px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-brand .logo-text {
    font-family: var(--font);
    font-size: 22px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-brand .logo-sub {
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-col h4 {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(184,134,11,0.3);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}
.footer-col ul li a::before {
    content: '›';
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
}
.footer-contact-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ========== FLOATING BUTTONS ========== */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
    color: var(--white);
    cursor: pointer;
    border: none;
}

.float-btn:hover { transform: scale(1.1); }

.float-whatsapp { background: #25D366; }
.float-top { background: var(--dark); font-size: 16px; }

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--dark);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(184,134,11,0.03)" width="100" height="100"/><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(184,134,11,0.05)" stroke-width="1"/></svg>');
}

.page-header h1 {
    font-family: var(--font);
    font-size: clamp(30px, 4vw, 48px);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    position: relative;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ========== PAGINATION ========== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
}

.page-link:hover,
.page-link.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ========== ALERTS ========== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ========== MAP ========== */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; border: none; filter: grayscale(0.2); }

/* ========== COOKIE NOTICE ========== */
.cookie-notice {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 16px 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 13px;
    border-top: 2px solid var(--gold);
}

.cookie-notice a { color: var(--gold-light); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .main-nav { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; flex-direction: column; padding: 80px 20px 40px; overflow-y: auto; }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; width: 100%; }
    .main-nav ul li a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border); }
    .main-nav ul li .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--cream); }
    .mobile-menu-btn { display: flex; }
    .hero-slider { height: 70vh; min-height: 500px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .trust-grid { gap: 30px; }
    .testimonial-card { min-width: 100%; }
    .blog-grid { grid-template-columns: 1fr; }
    .gold-prices-inner { gap: 20px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .slider-title { font-size: 28px; }
}

/* ========== LAZY LOAD ========== */
img.lazy { opacity: 0; transition: opacity 0.3s; }
img.lazy.loaded { opacity: 1; }

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    display: none;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ========== PRODUCT DETAIL ========== */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--light);
    margin-bottom: 12px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.product-gallery-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--gold);
}

.product-info h1 {
    font-family: var(--font);
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0;
}

.product-spec {
    display: flex;
    gap: 8px;
    font-size: 14px;
}

.product-spec-label {
    color: var(--text-light);
    min-width: 80px;
}

.product-spec-value {
    color: var(--dark);
    font-weight: 600;
}

.product-price-box {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin: 24px 0;
}

.product-price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font);
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-light);
}

.product-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}
.product-share a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

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