@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8d734a;
    --primary-light: #b5a489;
    --dark: #1a1a1a;
    --gray: #f2f2f2;
    --bg-light: #f7f5f2;
    /* Warmer, more sophisticated light background */
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 15px 35px rgba(0, 0, 0, 0.08);
    /* Slightly deeper shadow */
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
    /* Slightly deeper shadow */
}

@media (max-width: 768px) {
    h1, .serif-title { 
        font-size: clamp(1.8rem, 6vw, 2.2rem) !important; 
        word-wrap: break-word; 
        overflow-wrap: break-word; 
        hyphens: auto; 
    }
    h2 { font-size: 1.8rem !important; word-wrap: break-word; overflow-wrap: break-word; }
    h3 { font-size: 1.4rem !important; word-wrap: break-word; overflow-wrap: break-word; }
    .section-title h2 { font-size: 2rem !important; }
    .hero-slider {
        height: 85vh;
        min-height: 400px;
        padding: 0 !important;
    }
    .hero-slider .swiper-slide {
        height: 100% !important;
        display: flex !important;
        flex-direction: column;
        justify-content: center !important;
        padding: 0 !important;
    }
    .hero-slider .container {
        width: 100%;
        margin: 0 auto;
    }
    .hero-content {
        padding-top: 0;
    }
    .hero-content h1 { 
        font-size: clamp(1.5rem, 6vw, 2rem) !important; 
        line-height: 1.2;
        word-wrap: break-word; 
        overflow-wrap: break-word; 
        hyphens: auto;
        margin-bottom: 15px;
        /* Limit to 3 lines */
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-content p {
        font-size: 0.9rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 20px;
        /* Limit to 4 lines */
        display: -webkit-box;
        -webkit-line-clamp: 4;
        line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-content .sub-text {
        font-size: 0.8rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 10px;
    }
}

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

html {
    scroll-behavior: smooth;
}

body,
html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.menu-open {
    overflow: hidden !important;
    height: 100vh !important;
}

body {
    background-color: #fff;
    color: #111;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    padding-top: 84px;
}

h1,
h2,
h3,
h4,
.serif-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Strengthened weight */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

section:nth-child(even) {
    background-color: var(--bg-light);
}

section.section-bg {
    background-color: var(--bg-light);
}

section:last-of-type {
    padding-bottom: 50px;
}

/* Reduce padding for the last section before footer */

.section-title {
    margin-bottom: 60px;
}

.section-title p {
    color: var(--primary);
    letter-spacing: 5px;
    font-size: 0.7rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--dark);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
}

/* More authoritative header */

/* 1. Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(to right, #fff 0%, #faf7f0 100%);
    padding: 15px 0;
    border-bottom: 1px solid #eeebe3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 10px 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 240, 0.98) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Header Specific Styles */
.header-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 30px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: 0.3s;
}

header.scrolled .logo img {
    height: 32px;
}

@media (max-width: 1200px) {
    .logo img {
        height: 36px;
    }

    header.scrolled .logo img {
        height: 28px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 28px;
    }

    header.scrolled .logo img {
        height: 24px;
    }

    .header-main {
        gap: 10px !important;
    }
}

.nav-links {
    display: flex !important;
    gap: 25px !important;
    list-style: none !important;
    margin: 0;
    padding: 0;
    align-items: center !important;
}

.nav-links a {
    display: flex !important;
    align-items: center !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 15px 0 !important;
    color: var(--dark);
}

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

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: 0.3s;
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
}

@media (min-width: 1201px) {
    .has-dropdown {
        position: relative;
        display: flex;
        align-items: center;
    }

    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 240px;
        background: #fff;
        list-style: none;
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        z-index: 1000;
        border: 1px solid #eee;
        transition: 0.3s;
    }

    .has-dropdown:hover .dropdown {
        opacity: 1;
        visibility: visible;
    }

    .dropdown li a {
        padding: 10px 20px !important;
        font-size: 0.75rem !important;
        display: block !important;
    }

    .dropdown li a:hover {
        background: #f8f8f8;
        padding-left: 25px !important;
    }

    .has-dropdown:hover .dropdown-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 1200px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 40px 0 !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        visibility: hidden;
        pointer-events: none;
        overflow-y: auto;
        display: flex !important;
    }

    .nav-links.is-visible {
        right: 0 !important;
        visibility: visible !important;
        pointer-events: all !important;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f5f5f5;
        padding: 0 25px !important;
        list-style: none !important;
    }

    .nav-links li a {
        padding: 18px 0 !important;
        width: 100%;
        font-size: 0.8rem !important;
        font-weight: 600;
        text-transform: uppercase;
        color: var(--dark) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        letter-spacing: 1px;
    }

    .nav-links li a:hover,
    .nav-links li a:active {
        color: var(--primary) !important;
    }

    .has-dropdown.mobile-open>a {
        color: var(--primary) !important;
        border-bottom: none;
    }



    .dropdown {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        width: 100%;
        list-style: none !important;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.4s ease;
    }

    .has-dropdown.mobile-open .dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
        padding-bottom: 15px;
    }

    .dropdown li {
        border-bottom: 1px solid #f9f9f9 !important;
        padding: 0 !important;
    }

    .dropdown li:last-child {
        border-bottom: none !important;
    }

    .dropdown li a {
        padding: 10px 0 !important;
        font-size: 0.8rem !important;
        opacity: 0.8;
        font-weight: 400;
        text-transform: uppercase;
    }

    .logo img {
        height: 20px !important;
    }

    .header-main .container {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex-shrink: 0 !important;
    }

    .burger-menu {
        display: block !important;
        margin-left: 5px !important;
        flex-shrink: 0 !important;
        z-index: 1001 !important;
    }

    .dropdown-icon {
        width: 38px;
        height: 38px;
        background: #f9f9f9;
        border-radius: 0;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 0.8rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        color: #555;
        margin-left: 10px;
        border: 1px solid #eee;
    }

    .has-dropdown.mobile-open .dropdown-icon {
        transform: rotate(180deg);
        background: #eee;
        color: var(--dark);
        border-color: #ddd;
    }

    .header-main {
        gap: 15px !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--dark);
        z-index: 100001 !important;
        padding: 0;
        position: relative;
        pointer-events: auto !important;
        transition: var(--transition);
    }

    .mobile-menu-toggle .line {
        width: 26px;
        height: 2px;
        background: var(--dark);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-toggle.active .line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--primary);
    }

    .mobile-menu-toggle.active .line:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .mobile-menu-toggle.active .line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--primary);
    }
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    cursor: pointer;
    z-index: 10001;
}

.lang-active {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    color: var(--dark);
}

.lang-active img {
    width: 22px !important;
    height: 15px !important;
    object-fit: cover !important;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: 130px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    z-index: 10000;
}

.lang-dropdown:hover .lang-list {
    display: flex;
}

.lang-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    font-size: 0.85rem;
    color: var(--dark);
}

.lang-list a img {
    width: 20px !important;
    height: 14px !important;
    object-fit: cover !important;
    border-radius: 2px;
}

.lang-list a:hover {
    background: #f9f9f9;
    color: var(--primary);
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-video iframe,
.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130vw;
    height: 73.125vw;
    /* 16:9 based on 130vw */
    min-height: 130vh;
    min-width: 231.11vh;
    /* 16:9 based on 130vh */
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1.5s ease;
    pointer-events: none;
}

/* Swiper Global Customization */
.swiper {
    width: 100%;
    height: auto;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch !important;
    min-height: 100%;
}

.swiper-slide {
    height: auto !important;
    min-height: 100% !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.1rem !important;
    font-weight: 700;
}

.swiper-pagination { position: relative !important; margin-top: 50px !important; bottom: 0 !important; }
.swiper-pagination-bullet { width: 12px !important; height: 12px !important; background: #ccc !important; opacity: 1 !important; margin: 0 6px !important; border-radius: 0 !important; transition: 0.3s; }
.swiper-pagination-bullet-active { background: var(--primary) !important; width: 30px !important; }

/* Hero Slider Overrides (bullets on dark) */
.hero-slider .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.5 !important;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1 !important;
}

/* 2. Hero Slider */
.hero-slider {
    height: 90vh;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0;
    width: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Utility Classes */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

.section-padding-lg {
    padding: 120px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    padding: 120px 0;
    color: white;
    text-align: center;
    overflow: hidden;
    background: var(--dark);
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.page-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 3;
}

.page-banner .serif-title {
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-banner .banner-divider {
    width: 50px;
    height: 2px;
    background: var(--primary);
    margin: 0 auto 20px;
}

.page-banner .banner-subtitle {
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.hero-slider .swiper-slide {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero-slider img,
.hero-slider picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-slider .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .hero-btns {
    margin-top: 30px;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: #fff !important;
    max-width: 850px;
    text-align: left;
    margin: 0;
    padding-top: 80px;
}

.hero-content h1,
.hero-content p,
.hero-content .sub-text {
    color: #fff;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.sub-text {
    font-size: 0.85rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff !important;
    margin-bottom: 25px;
    font-weight: 700;
    display: block;
    font-family: 'Inter', sans-serif;
}

.hero-content h1 {
    font-size: 5.2rem;
    line-height: 1.1;
    margin-bottom: 35px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    font-family: 'Playfair Display', serif;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        text-shadow: 0.5px 0.5px 0px var(--primary), 1px 1px 0px var(--primary), 0 3px 10px rgba(0, 0, 0, 0.5) !important;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 45px;
    opacity: 0.95;
    letter-spacing: 0.5px;
    max-width: 650px;
    line-height: 1.8;
    font-weight: 300;
}

/* Product Detail Button Overrides */
.product-detail .btn,
.error-page .btn {
    background: var(--primary) !important;
    color: #fff !important;
    border-color: var(--primary) !important;
}

.product-detail .btn::before,
.error-page .btn::before {
    background: var(--dark) !important;
}

.product-detail .btn:hover,
.error-page .btn:hover {
    color: #fff !important;
    transform: translateY(-3px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-quote {
    padding: 22px 50px !important;
    font-size: 1rem !important;
    flex: 1;
}

.btn-whatsapp {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    padding: 22px 25px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail .btn-whatsapp::before {
    background: #25D366 !important;
}

.btn-whatsapp i {
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    z-index: 2;
}

.btn-whatsapp:hover {
    border-color: #25D366 !important;
}

.btn-whatsapp:hover::before {
    left: 0 !important;
}



.hero-features-section {
    background: #f9f9f9;
    padding: 50px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 10;
}

.hero-features {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.h-feat-box {
    text-align: center;
    color: var(--dark);
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.h-feat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e0e0e0;
}

.h-feat-box i {
    color: var(--primary);
    font-size: 2.8rem !important;
    margin-bottom: 20px;
    display: block;
    transition: 0.3s;
}

.h-feat-box:hover i {
    transform: translateY(-5px) scale(1.1);
}

.h-feat-box strong {
    display: block;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.h-feat-box p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: transparent;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--primary);
    text-decoration: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

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

.btn-dark:hover {
    color: #fff;
}

.btn-white,
.btn-light {
    background: #fff;
    color: var(--dark);
}

.btn-white:hover,
.btn-light:hover {
    color: #fff;
    background: var(--primary);
}

/* Elegant Textual Discovery CTA */
.elegant-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 10px 0;
}

.cta-line {
    width: 50px;
    height: 1px;
    background: var(--primary);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-cta:hover {
    color: var(--primary);
}

.elegant-cta:hover .cta-line {
    width: 90px;
    background: var(--dark);
}

.elegant-cta i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
    color: var(--primary);
}

.elegant-cta:hover i {
    transform: translateX(10px);
    color: var(--dark);
}

.cta-text {
    transition: 0.3s;
    color: inherit;
    display: inline-block;
}

/* Global Swiper Navigation Arrows */
.p-swiper-prev,
.p-swiper-next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p-swiper-prev {
    left: -25px;
}

.p-swiper-next {
    right: -25px;
}

/* Hero Slider Typography Fixes */
.hero-slider .serif-title {
    color: #fff !important;
    text-shadow: 1px 1px 0px var(--primary), 2px 2px 0px var(--primary), 0 10px 50px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: -1px;
}

.hero-slider .sub-text {
    color: var(--primary) !important;
    letter-spacing: 5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.p-swiper-prev:hover,
.p-swiper-next:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.p-swiper-prev i,
.p-swiper-next i {
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .p-swiper-prev, .p-swiper-next { top: auto; bottom: -80px; transform: none; }
    .p-swiper-prev { left: calc(50% - 60px); }
    .p-swiper-next { right: calc(50% - 60px); }
    .blog-swiper, .product-swiper { padding-bottom: 120px !important; }
    .swiper-pagination { margin-top: 60px !important; }
    }

@media (max-width: 768px) {

    .p-swiper-prev,
    .p-swiper-next {
        display: none !important;
    }

    /* Use pagination on mobile */
}

/* Hero Navigation Customization */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
    width: 50px !important;
    height: 50px !important;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 1000;
}

.pause-play-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.pause-play-btn i {
    font-size: 1.3rem;
}

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

.hero-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.hero-slider .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.4 !important;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1 !important;
}

/* Category Masonry */
.category-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 350px;
    gap: 30px;
    margin-top: 60px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    background: #111;
    grid-column: span 4;
}

.masonry-item.big {
    grid-column: span 8;
    grid-row: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 1s;
}

.masonry-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.masonry-overlay h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.m-link {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.m-link i {
    transition: 0.3s;
}

.m-link:hover i {
    transform: translateX(5px);
}

/* 3. Product & Blog Grids */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-carousel-wrap {
    position: relative;
    padding: 40px 0;
    overflow: visible;
    width: 100%;
}

.product-swiper {
    padding: 40px 0 80px !important;
    overflow: visible !important;
}

.product-item-lux {
    text-align: left;
    transition: var(--transition);
    background: #fff;
    padding: 15px;
    border: 1px solid #e5e1d8;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.product-item-lux:hover {
    box-shadow: 0 25px 50px rgba(141, 115, 74, 0.15);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.p-img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.product-item-lux:hover .p-img-box img {
    transform: scale(1.1);
}

.p-info-box {
    padding: 10px 5px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.p-info-box h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.btn-lux {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 1.5px solid var(--primary);
    padding-bottom: 5px;
    transition: 0.3s;
    width: fit-content;
    font-family: 'Inter', sans-serif;
}

.btn-lux:hover {
    letter-spacing: 3.5px;
    color: var(--dark);
    border-bottom-color: var(--dark);
}

/* Section Titles refinement */
.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title p {
    color: var(--primary);
    letter-spacing: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title h2,
.serif-title {
    font-size: 3rem;
    color: inherit;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.serif-title:not(.white) {
    color: var(--dark);
}

.serif-title.white {
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation */
.p-swiper-prev,
.p-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    font-size: 1.2rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.p-swiper-prev {
    left: 10px;
}

.p-swiper-next {
    right: 10px;
}

.p-swiper-prev:hover,
.p-swiper-next:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

/* Blog Section refinement */
.blog-swiper {
    padding: 40px 0 20px !important;
    overflow: visible !important;
}

/* Reduced bottom padding */
.blog-grid-lux {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 30px;
}

@media (max-width: 576px) {
    .blog-grid-lux {
        gap: 20px;
    }
}

.blog-card-lux {
    background: #fff;
    border: 1px solid #e5e1d8;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.blog-card-lux:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.b-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.b-content h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--dark);
    flex-grow: 1;
    transition: 0.3s;
    font-family: 'Playfair Display', serif;
}

.b-meta {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.b-meta i {
    color: var(--primary);
}

.b-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.b-link i {
    transition: 0.3s;
}

.b-link:hover {
    color: var(--dark);
}

.b-link:hover i {
    transform: translateX(5px);
}

.blog-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.blog-card-lux:hover .blog-img-wrap img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 15px;
    border-radius: 4px;
    z-index: 5;
}

.b-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.b-meta {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.b-meta i {
    color: var(--primary);
}

.b-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
    flex-grow: 1;
}

.b-link {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.b-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* Workshop & Process refinement */
.workshop-section {
    background: var(--dark);
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.workshop-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.process-list-lux {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.process-list-lux li {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.process-list-lux li:hover {
    transform: translateX(10px);
    border-bottom-color: var(--primary);
}

.process-list-lux li span {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    min-width: 60px;
    opacity: 0.8;
}

.process-list-lux li p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.production-gallery-lux {
    position: relative;
}

.production-gallery-lux img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .production-gallery-lux {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.why-us-swiper {
    padding: 40px 0 60px !important;
}

.why-box-lux {
    background: #fff;
    padding: 45px 35px;
    border: 1px solid #e5e1d8;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.why-box-lux:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(141, 115, 74, 0.1);
    border-color: var(--primary);
}

.why-box-lux i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.why-box-lux h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.why-box-lux p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Page Banners */
/* Page Banners */
.page-banner {
    position: relative;
    padding: 60px 0;
    background: #000;
    color: #fff;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 10;
}

.page-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #fff !important;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    color: var(--primary) !important;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-banner .serif-title {
    color: #fff !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

/* Project Hero refinement */
.project-hero .serif-title {
    color: #fff !important;
    text-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.project-hero .container {
    max-width: 1000px;
}

.project-info-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.project-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.project-info-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
}

.project-info-value {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Breadcrumb Navigation */
.breadcrumb-wrap {
    padding: 20px 0;
    background: #faf9f6;
    border-bottom: 1px solid #f2eff9;
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 10px;
    font-family: 'Inter', sans-serif;
}

.breadcrumb-link {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    line-height: 1;
    position: relative;
    top: 1px;
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    font-size: 0.7rem;
    font-weight: 300;
    color: #d1c7bd;
    display: inline-flex;
    align-items: center;
    user-select: none;
    line-height: 1;
    position: relative;
    top: 1px;
}

.breadcrumb-current {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    line-height: 1;
    position: relative;
    top: 1px;
}

/* 4. Product Detail */
.product-detail {
    padding: 80px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image-box {
    background: #fff;
    padding: 15px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    cursor: zoom-in;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.main-img-tag {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-image-box:hover .main-img-tag {
    transform: scale(1.03);
}

.zoom-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark);
}

.price-box {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.premium-label {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 3px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
}

.description-text {
    line-height: 2;
    color: #444;
    margin-bottom: 50px;
    font-size: 1.15rem;
}

.product-colors {
    margin-bottom: 60px;
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.color-group {
    margin-bottom: 40px;
}

.color-group:last-child {
    margin-bottom: 0;
}

.color-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin-bottom: 25px;
    font-weight: 700;
}

.swatch-grid {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #eee;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-size: cover;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.color-swatch:hover {
    transform: scale(1.15) translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-specs-section {
    margin-bottom: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.section-title-small {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.tech-table-wrap table {
    width: 100% !important;
    border-collapse: collapse !important;
    border: none !important;
    margin: 20px 0 !important;
}

.tech-table-wrap tr {
    border: none !important;
    transition: background 0.3s ease;
}

.tech-table-wrap tr:hover {
    background: rgba(197, 168, 128, 0.08) !important;
}

.tech-table-wrap td,
.tech-table-wrap th {
    border: none !important;
    border-bottom: 1px solid #eee !important;
    padding: 20px 15px !important;
    font-size: 1rem;
    color: #555;
    vertical-align: middle;
    word-break: break-word;
    text-align: left !important;
}

.tech-table-wrap td:first-child,
.tech-table-wrap th:first-child {
    font-weight: 700 !important;
    color: var(--dark) !important;
    width: 35% !important;
    min-width: 160px !important;
    text-transform: uppercase !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
}

.tech-table-wrap tr:last-child td {
    border-bottom: none !important;
}

.tech-table-wrap td strong {
    font-weight: inherit;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 1px solid #f0f0f0;
    padding-top: 40px;
    margin-top: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.spec-value {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.product-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-quote {
    padding: 22px 50px;
    font-size: 1rem;
    flex: 1;
}

.btn-whatsapp {
    background: #25D366 !important;
    border-color: #25D366 !important;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp i {
    font-size: 1.8rem;
    color: #fff;
}

.related-products {
    padding: 50px 0;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.section-sub {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.section-main {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.product-grid-related {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

/* 5. Lightbox & Modal (Consolidated) */

/* 4. Footer Styling (PREMIUM RESTORED) */
footer {
    background: #eceae6;
    padding: 80px 0 30px;
    border-top: 1px solid #e0ddd7;
}

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

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 25px;
    opacity: 0.8;
}

.footer-logo p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    max-width: 320px;
    margin-bottom: 25px;
}

.footer-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.9rem;
    color: #555;
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 1px;
}

/* 6. Page Components */
.category-nav-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-nav-link {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #666;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.category-nav-link.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary) !important;
}

.category-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.thumb-item {
    aspect-ratio: 1 / 1;
    border: 2px solid #eee;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
    padding: 4px;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
}

.thumb-item.active {
    border-color: var(--primary) !important;
    opacity: 1 !important;
}

.thumb-item:hover {
    opacity: 1 !important;
    border-color: var(--primary) !important;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
}

/* 5. UI Helpers */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
}

.lightbox-content-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    animation: zoomOut 0.4s;
}

@keyframes zoomOut {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.close-lightbox {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
    line-height: 1;
}

.close-lightbox:hover {
    background: var(--primary);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    transition: 0.3s;
}

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

.prev-btn {
    left: 40px;
}

.next-btn {
    right: 40px;
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--dark);
    transform: translateY(-5px);
}

.scroll-top-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* 6. Responsiveness */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    .product-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .product-gallery {
        position: static !important;
    }

    .product-title,
    .product-info h1 {
        font-size: 2.8rem !important;
        text-align: center;
    }

    .price-box {
        justify-content: center;
        margin-bottom: 30px;
    }

    .description-text {
        text-align: center;
        font-size: 1.05rem;
    }

    .color-label,
    .section-title-small {
        text-align: center;
    }

    .swatch-grid,
    .product-actions {
        justify-content: center;
    }

    /* Table Responsiveness Fix */
    .tech-table-wrap {
        overflow-x: auto;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .tech-table-wrap td:first-child,
    .tech-table-wrap th:first-child {
        min-width: 130px !important;
        width: 40% !important;
        font-size: 0.7rem !important;
    }

    .tech-table-wrap td,
    .tech-table-wrap th {
        font-size: 0.95rem;
        padding: 15px 10px !important;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Lightbox Mobile Overrides */
    .close-lightbox {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .category-nav-list {
        gap: 20px;
    }

    .category-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-nav-bar {
        padding: 15px 0;
    }
    
    .category-nav-list {
        gap: 12px;
        justify-content: center;
    }
    
    .category-nav-link {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 576px) {
    .product-title,
    .product-info h1 {
        font-size: 2.2rem !important;
    }

    .premium-label {
        font-size: 1rem;
    }

    .tech-table-wrap td:first-child,
    .tech-table-wrap th:first-child {
        min-width: 110px !important;
        font-size: 0.65rem !important;
    }

    .tech-table-wrap td,
    .tech-table-wrap th {
        font-size: 0.85rem;
        padding: 12px 8px !important;
    }

    .btn-quote {
        padding: 18px 30px !important;
    }

    .thumbnail-grid {
        gap: 10px;
    }
}

/* FAQ & Page Content Premium Refinement */
[data-slug="sikca-sorulan-sorular"] .rich-text {
    max-width: 900px;
    margin: 40px auto;
}

[data-slug="sikca-sorulan-sorular"] .rich-text p {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 30px 40px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    line-height: 1.8;
    color: #555;
}

[data-slug="sikca-sorulan-sorular"] .rich-text p:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

[data-slug="sikca-sorulan-sorular"] .rich-text p strong {
    display: block;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 0;
    font-weight: 500;
}

/* FAQ Block System (Admin Powered) */
.faq-container {
    margin-top: 40px;
}

.faq-card-premium {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 35px 40px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-card-premium:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.faq-q {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.3;
}

.faq-q span {
    color: var(--primary);
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-top: 4px;
}

.faq-a {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    padding-left: 42px;
}

@media (max-width: 768px) {
    body {
        padding-top: 85px;
    }

    .breadcrumb-wrap {
        padding: 12px 0;
    }
    .breadcrumb {
        gap: 4px 8px;
    }
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
    }
    .breadcrumb-separator {
        font-size: 0.7rem;
    }

    [data-slug="sikca-sorulan-sorular"] .rich-text p {
        padding: 20px 25px;
        font-size: 0.95rem;
    }

    [data-slug="sikca-sorulan-sorular"] .rich-text p strong {
        font-size: 1.15rem;
    }

    .faq-card-premium {
        padding: 25px;
    }

    .faq-q {
        font-size: 1.2rem;
        gap: 10px;
    }

    .faq-q span {
        font-size: 0.9rem;
    }

    .faq-a {
        padding-left: 0;
        margin-top: 10px;
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-logo p {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 25px;
    }

    .footer-contact i {
        margin: 0 0 5px 0;
        font-size: 1.5rem;
    }

    .footer-logo img {
        margin: 0 auto 25px;
    }

    .footer-links ul {
        padding: 0;
    }

    .category-masonry {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        margin-top: 40px !important;
    }

    .masonry-item {
        width: 100% !important;
        height: 300px !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* Hero Mobile */
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }

    .hero-slide-wrap {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding-top: 60px;
        text-align: center;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1,
    .hero-content p,
    .hero-content .sub-text {
        text-align: center !important;
    }

    .hero-content h1 {
        font-size: 2rem !important;
        margin-bottom: 12px;
    }

    .hero-content p {
        font-size: 0.9rem !important;
        margin-bottom: 20px;
    }

    .sub-text {
        font-size: 0.7rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-btns .btn {
        padding: 12px 15px;
        font-size: 0.7rem;
    }

    .slider-controls {
        bottom: 15px;
        right: auto;
        top: auto;
        left: 15px;
    }

    .pause-play-btn {
        width: 30px !important;
        height: 30px !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }

    .pause-play-btn i {
        font-size: 0.8rem;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
        top: 50% !important;
    }

    .hero-slider .swiper-pagination {
        bottom: 15px !important;
    }

    .hero-features {
        flex-direction: column;
        gap: 40px;
    }

    .h-feat-box:not(:last-child)::after {
        display: none;
    }

    .h-feat-box {
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .h-feat-box:last-child {
        border-bottom: none;
    }

    .project-info-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 30px;
    }

    .project-hero .serif-title {
        font-size: 2.5rem !important;
    }

    .reference-grid-lux {
        grid-template-columns: 1fr !important;
    }
}

/* 7. Project/Reference Cards (Minimalist Editorial) */
.ref-item-lux {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    border-radius: 0;
    overflow: visible;
    border: 1px solid #e5e1d8;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ref-item-lux:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(141, 115, 74, 0.15);
    border-color: var(--primary);
}

.ref-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    margin-bottom: 25px;
    background: #eee;
}

.ref-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.ref-item-lux:hover .ref-img::after {
    left: 150%;
}

.ref-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
    position: relative;
    z-index: 1;
}

.ref-item-lux:hover .ref-img img {
    transform: scale(1.1);
}

.ref-info {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ref-info .cat {
    color: #999;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.ref-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 500;
}

.ref-info p {
    color: #777;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-minimal {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    width: fit-content;
    padding-bottom: 5px;
    transition: 0.3s;
}

.ref-item-lux:hover .btn-minimal {
    color: var(--dark);
    border-bottom-color: var(--dark);
    padding-left: 10px;
}

/* 8. Block Editor Styles (Premium Layouts) */
.rich-text {
    font-family: 'Inter', sans-serif;
}

.rich-text h1,
.rich-text h2,
.rich-text h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.rich-text p {
    margin-bottom: 25px;
}

.rich-text ul,
.rich-text ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.rich-text li {
    margin-bottom: 10px;
}

.responsive-image-text {
    margin-bottom: 60px;
    display: block;
    overflow: hidden;
}

.responsive-image-text .image-container {
    width: 45%;
    margin-bottom: 20px;
}

.responsive-image-text .image-container.left {
    float: left;
    margin-right: 40px;
}

.responsive-image-text .image-container.right {
    float: right;
    margin-left: 40px;
}

.responsive-image-text .text-container {
    overflow: hidden;
}

@media (max-width: 992px) {
    .responsive-image-text .image-container {
        width: 100% !important;
        float: none !important;
        margin: 0 0 30px 0 !important;
    }
}

.block-features {
    margin: 80px 0;
}

.block-cta {
    transition: var(--transition);
}

.block-cta:hover {
    transform: scale(1.01);
}

.block-cta .btn:hover {
    background: var(--dark) !important;
    color: #fff !important;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-card-premium {
    background: #fff;
    border: 1px solid #f0f0f0;
    padding: 35px 40px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-card-premium:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.block-text blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--primary);
    padding-left: 30px;
    border-left: 4px solid var(--primary);
    margin: 40px 0;
    line-height: 1.5;
}

/* 9. Blog Detail Specifics */
.blog-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-content .block-text p {
    font-size: 1.25rem;
    line-height: 2;
    color: #333;
    font-weight: 300;
}

.blog-content h2.serif-title {
    color: var(--dark);
    font-weight: 500;
}

/* 10. Footer Styles */
footer .footer-logo img {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
}

footer .social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

footer .social-links a {
    transition: var(--transition);
}

footer .social-links a:hover {
    color: #fff !important;
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
}

/* 11. Product Video Button & Modal */
.product-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 25px;
    background: transparent;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: auto;
}

.product-video-btn:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-video-btn i {
    font-size: 1.6rem;
    color: var(--primary);
    transition: 0.3s;
}

.product-video-btn:hover i {
    color: #fff;
}

.video-modal {
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9) !important; /* Darker background for focus */
}

.video-wrap {
    width: 90%;
    max-width: 1000px;
    position: relative;
    z-index: 10002;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 12. Blog Details CSS */
.blog-content p { margin-bottom: 25px; }
.blog-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 30px 0; }
.blog-content h2, .blog-content h3 { margin: 40px 0 20px; font-weight: 600; }
.blog-detail-wrap, .other-posts { 
    overflow-wrap: break-word; 
    word-wrap: break-word; 
    word-break: break-word; 
    hyphens: auto; 
}

@media (max-width: 768px) {
    .blog-header h1.serif-title { font-size: 2.5rem !important; }
    .blog-content h2.serif-title, .blog-content h3 { font-size: 1.8rem !important; }
}

/* 13. WhatsApp Support Widget */
:root { --chat-bottom: 30px; }
#chat-button {
    position: fixed; bottom: var(--chat-bottom); right: 30px;
    background: #25D366; color: #fff; width: 60px; height: 60px;
    border-radius: 50%; font-size: 30px; display: flex;
    align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#chat-button.moved-up { bottom: 100px !important; }
#chat-button::after {
    content: ''; position: absolute; width: 100%; height: 100%;
    border-radius: 50%; background: #25D366; opacity: 0.4;
    animation: chatPulse 2s infinite; z-index: -1;
}
#chat-button .badge {
    position: absolute; top: -2px; right: -2px;
    background: #ef4444; color: white; width: 22px; height: 22px;
    border-radius: 50%; font-size: 12px; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid #fff; animation: badgePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
#chat-button:hover { transform: scale(1.1); }
#chat-box {
    position: fixed; bottom: calc(var(--chat-bottom) + 80px); right: 30px;
    width: 320px; background: #fff; border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); display: none;
    overflow: hidden; z-index: 9999; border: 1px solid #f1f5f9;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#chat-box.moved-up { bottom: 180px !important; }
.chat-header { background: #25D366; padding: 20px; color: white; display: flex; align-items: center; gap: 12px; }
.chat-header i { font-size: 24px; }
.whatsapp-title { font-weight: 600; margin-bottom: 2px; font-size: 16px; }
.chat-body { padding: 25px; }
.chat-body p { margin: 0 0 15px; font-size: 15px; color: #475569; line-height: 1.6; }
.chat-body a {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff; padding: 14px; border-radius: 12px;
    text-decoration: none; font-weight: 700; transition: all 0.2s;
}
.chat-body a:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); }

@keyframes chatPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}
@keyframes badgePop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
@keyframes softBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes attentionShake {
    0%, 100% { transform: rotate(0deg); }
    20%, 60% { transform: rotate(-10deg); }
    40%, 80% { transform: rotate(10deg); }
}
.bounce { animation: softBounce 0.8s ease; }
.shake { animation: attentionShake 0.5s ease-in-out 3; }
.chat-close-box {
    margin-left: auto; cursor: pointer; font-size: 1.2rem;
    opacity: 0.8; transition: all 0.2s; display: flex;
    align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 50%;
}
.chat-close-box:hover { opacity: 1; background: rgba(0,0,0,0.1); }

.scroll-top-btn {
    position: fixed; bottom: 30px; right: 30px;
    width: 55px; height: 55px; background: var(--primary); color: #fff;
    border: none; border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9998; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.scroll-top-btn.visible {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.scroll-top-btn:hover {
    background: var(--dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) { 
    .bounce { animation: none !important; }
    #chat-button { width: 45px; height: 45px; font-size: 22px; right: 15px; bottom: 15px; }
    #chat-button.moved-up { bottom: 70px !important; }
    #chat-box { width: 250px; right: 15px; bottom: 75px; }
    #chat-box.moved-up { bottom: 130px !important; }
    .scroll-top-btn { width: 40px; height: 40px; right: 15px; bottom: 15px; font-size: 16px; }
    .chat-header { padding: 12px 15px; }
    .chat-header i { font-size: 20px; }
    .whatsapp-title { font-size: 14px !important; }
    .chat-body { padding: 15px; }
    .chat-body p { font-size: 13px; margin: 0 0 12px; }
    .chat-body a { padding: 10px; font-size: 13px; }
}