/* =========================================
   1. ROOT VARIABLES
   ========================================= */
:root {
    /* Brand Colors */
    --primary: #d4af37;
    --secondary: #c9a44c;
    --accent: #b08d2f;
    --dark: #111;
    --light: #ffffff;

    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.35);

    /* Zinc Scale */
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-600: #52525b;
    --zinc-500: #71717a;
    --zinc-400: #a1a1aa;
    --zinc-200: #e4e4e7;
    --zinc-100: #f4f4f5;
    --zinc-50: #fafafa;

    /* Amber Scale */
    --amber-700: #92400e;
    --amber-600: #b45309;
    --amber-500: #d97706;
    --amber-400: #f59e0b;
    --amber-200: #fde68a;
    --amber-50: #fffbeb;

    /* Green Scale */
    --green-700: #15803d;
    --green-600: #16a34a;
    --green-50: #f0fdf4;

    /* Utilities */
    --transition: all 0.3s ease;
}

/* =========================================
   2. GLOBAL STYLES
   ========================================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #212529;
    overflow-x: hidden;
}

/* =========================================
   3. HEADER & NAVIGATION (React Style)
   ========================================= */
.navbar {
    background: #fff;
    transition: var(--transition);
    padding: 20px 0;
    z-index: 999;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    color: #451a03 !important;
    line-height: 1;
}

.navbar-brand span {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 3px;
    color: #d97706;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #52525b !important;
    transition: color 0.2s;
    padding: 6px 0;
    margin: 0 10px;
}

.nav-link:hover {
    color: #d97706 !important;
}

.nav-cta {
    background: #451a03;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: #18181b;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-spacer {
    height: 90px;
}

/* =========================================
   4. HERO SLIDER
   ========================================= */
.hero-slider .swiper {
    height: 80vh;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed background-attachment: fixed; as it breaks on transformed elements */
}

.hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
}

.hero-slider h1 {
    font-size: 3.2rem;
    font-weight: 700;
    animation: fadeUp 1s ease forwards;
}

.hero-slider p {
    font-size: 1.3rem;
    animation: fadeUp 1.5s ease forwards;
}

/* =========================================
   5. COMPONENTS (Glass, Cards, Buttons)
   ========================================= */
/* Glass Effect */
.glass {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden; /* Required for shine effect */
}

.hero-slider .glass {
    color: #fff;
    text-align: center;
    padding: 40px;
}

/* Glass Shine Animation */
.glass::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    animation: glassShine 6s infinite linear;
    pointer-events: none;
}

/* Cards */
.category-card,
.product-card,
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover,
.product-card:hover,
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.35);
}

.category-card img,
.product-card img,
.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    color: #fff; /* Ensures text visibility */
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    background: transparent;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 36px;
}

/* =========================================
   6. TYPOGRAPHY & UTILITIES
   ========================================= */
.section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 40px;
}

.gold-text {
    background: linear-gradient(45deg, #d4af37, #f5d76e, #b08d2f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    margin: 20px auto 40px;
}

.lux-shadow {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Utilities */
.hover-shadow:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.transition {
    transition: var(--transition);
}

/* =========================================
   7. FOOTER (Ultra Premium)
   ========================================= */
.premium-footer {
    background: linear-gradient(180deg, #111, #1c1c1c);
    color: #ddd;
    padding: 70px 0 30px;
    font-size: 14px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-title {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-text {
    color: #aaa;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    color: #999;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* =========================================
   8. PRODUCT PAGE (React Style)
   ========================================= */
/* Breadcrumb Custom */
.breadcrumb-custom {
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    margin-bottom: 20px;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: var(--amber-400);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.product-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.product-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.1));
    pointer-events: none;
    z-index: 1;
}

.product-main-image {
    transition: transform 0.5s ease;
}

.product-image-wrapper:hover .product-main-image {
    transform: scale(1.02);
}

.image-badge {
    font-size: 0.75rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

/* Quick Specs Card */
.quick-specs-card {
    transition: var(--transition);
    border: 1px solid var(--zinc-200);
    border-radius: 12px;
    padding: 15px;
}

.quick-specs-card:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Product Description */
.product-short-desc p {
    transition: var(--transition);
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.product-short-desc:hover p {
    border-left-color: var(--amber-500) !important;
}

/* Expand Toggle Button */
.btn-toggle-details {
    border: 2px solid var(--amber-500);
    color: var(--amber-600);
    background: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-toggle-details:hover {
    background: var(--amber-50);
    color: var(--amber-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.25);
}

.btn-toggle-details::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.1), transparent);
    transition: left 0.5s ease;
}

.btn-toggle-details:hover::after {
    left: 100%;
}

/* Full Details Animation */
#productFullDetails {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#productFullDetails.collapsing {
    opacity: 0.5;
    transform: translateY(10px);
}

#productFullDetails.show {
    opacity: 1;
    transform: translateY(0);
}

/* Specs Table */
.specs-table-container {
    transition: var(--transition);
    border: 1px solid var(--zinc-200);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.specs-table-container:hover {
    background: white;
    border-color: var(--amber-200) !important;
}

.specs-table-container td {
    padding: 8px 12px;
    border-bottom: 1px dashed var(--zinc-200);
}

.specs-table-container tr:last-child td {
    border-bottom: none;
}

/* Quality Badges */
.badge {
    font-weight: 500;
    transition: var(--transition);
    border-radius: 6px;
    padding: 6px 12px;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.btn-call {
    background: var(--zinc-900);
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
}

.btn-call:hover {
    background: var(--zinc-800);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(24, 24, 27, 0.3);
}

.btn-whatsapp {
    background: white;
    color: var(--green-600);
    border: 2px solid var(--green-600);
    padding: 12px 20px;
    font-weight: 600;
    transition: var(--transition);
    border-radius: 50px;
}

.btn-whatsapp:hover {
    background: var(--green-50);
    color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.25);
}

/* Product Meta */
.product-meta {
    font-size: 0.875rem;
}

.product-meta .share-links a {
    transition: var(--transition);
    color: var(--zinc-600);
    margin-left: 10px;
}

.product-meta .share-links a:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

/* Related Products Card */
.related-card {
    transition: var(--transition);
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.related-card:hover {
    transform: translateY(-6px);
    border-color: var(--amber-200);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.15) !important;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* =========================================
   9. ANIMATIONS
   ========================================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glassShine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* =========================================
   10. MEDIA QUERIES
   ========================================= */
@media (max-width: 992px) {
    .product-hero h1 {
        font-size: 2rem !important;
    }

    .product-image-wrapper {
        margin-bottom: 2rem;
    }

    .product-ctas .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider .swiper {
        height: 50vh;
    }

    .hero-slider h1 {
        font-size: 2rem;
    }

    .hero-slider p {
        font-size: 1rem;
    }

    .glass {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .breadcrumb-custom {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .specs-table-container td {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

/* =========================================
   11. PRINT STYLES
   ========================================= */
@media print {
    .btn-toggle-details,
    .product-ctas,
    .share-links,
    .related-products,
    .navbar,
    .whatsapp-float,
    .premium-footer {
        display: none !important;
    }

    #productFullDetails {
        display: block !important;
        opacity: 1 !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}

/* ===== HOME PAGE SPECIFIC ===== */

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-image-wrapper {
    position: relative;
}

.about-image-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 5rem;
    height: 5rem;
    background: var(--amber-50, #fff7ed);
    border-top-left-radius: 1.5rem;
    z-index: -1;
}

.about-image {
    border-radius: 1rem;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--dark);
    color: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-badge .number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.about-badge .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.icon-circle-sm {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--amber-50, #fff7ed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.btn-link-custom {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-link-custom:hover {
    color: var(--accent);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--zinc-50, #fafafa);
}

.product-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--zinc-100, #f4f4f5);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 25px 60px rgba(212,175,55,0.2);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--amber-50, #fff7ed);
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.product-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-link a:hover {
    text-decoration: underline;
}

/* Why Choose Us */
.why-section {
    padding: 80px 0;
    background: var(--dark);
}

.why-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--zinc-800, #27272a);
    border: 1px solid var(--zinc-700, #3f3f46);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1rem;
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 992px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-info {
    background: var(--amber-950, #451a03);
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .location-info {
        padding: 5rem;
    }
}

.location-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.location-text {
    color: rgba(251, 245, 232, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.location-item-title {
    font-weight: 700;
    margin-bottom: 0;
}

.location-item-text {
    color: rgba(251, 245, 232, 0.7);
    margin: 0;
}

.btn-directions {
    background: #fff;
    color: var(--amber-950, #451a03);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 2rem;
    display: inline-block;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-directions:hover {
    background: var(--amber-100, #fef3c7);
    color: var(--amber-950, #451a03);
}

.location-map {
    height: 25rem;
    background: var(--zinc-200, #e4e4e7);
}

@media (min-width: 992px) {
    .location-map {
        min-height: 100%;
    }
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
    transition: filter 0.5s;
}

.location-map iframe:hover {
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: #fff;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    font-size: 1.25rem;
    color: var(--zinc-500, #71717a);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-cta-primary {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-cta-primary:hover {
    background: var(--accent);
    color: #fff;
}

.btn-cta-outline {
    background: transparent;
    border: 1px solid var(--zinc-300, #d4d4d8);
    color: var(--zinc-700, #3f3f46);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta-outline:hover {
    background: var(--zinc-50, #fafafa);
    color: var(--zinc-900, #18181b);
}

/* Utility */
.bg-light-amber {
    background: var(--amber-50, #fff7ed);
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Footer Social Icons - Add to style.css */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}