/* ============================================
   VIGOU Panels — Official Website Styles v2.0
   ============================================ */

:root {
    --primary: #1a1a2e;
    --accent: #e94560;
    --accent-light: #ff6b81;
    --gold: #d4a574;
    --bg: #ffffff;
    --bg-dark: #0f0f1a;
    --bg-section: #f8f9fa;
    --text: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

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

/* ---- Navigation ---- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: 2px;
}

.navbar.scrolled .logo { color: var(--primary); }
.logo-icon { color: var(--accent); }
.logo-accent { color: var(--gold); font-weight: 400; }

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent) !important;
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
}

.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--primary); }

/* ---- Hero Carousel ---- */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    display: none;
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 8%;
    max-width: 900px;
}

.slide-badge {
    display: inline-block;
    background: rgba(233,69,96,0.2);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(233,69,96,0.4);
    backdrop-filter: blur(10px);
}

.slide-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.4);
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: white;
    margin-bottom: 32px;
    max-width: 600px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.4);
}

.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Swiper Navigation */
.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    color: white;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: var(--transition);
}

.banner-swiper .swiper-button-prev:hover,
.banner-swiper .swiper-button-next:hover {
    background: rgba(233,69,96,0.6);
}

.banner-swiper .swiper-button-prev::after,
.banner-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.banner-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--transition);
}

.banner-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 36px;
    border-radius: 6px;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--primary);
    padding: 48px 0;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-light);
    display: inline;
    line-height: 1;
}

.stat-item .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-light);
}

.stat-item .stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

/* ---- Section Commons ---- */
.section {
    padding: 100px 0;
}

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

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

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-text .section-tag {
    display: block;
    margin-bottom: 8px;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text > p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-highlight {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.highlight-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-highlight strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.about-highlight span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(233,69,96,0.4);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233,69,96,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-full { width: 100%; text-align: center; }

/* ---- Product Filter ---- */
.product-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: white;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* ---- Products ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.product-img {
    height: 240px;
    overflow: hidden;
}

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

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

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.product-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.product-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-hot { background: rgba(233,69,96,0.1); color: var(--accent); }
.tag-premium { background: rgba(212,165,116,0.15); color: #b8864a; }
.tag-luxury { background: rgba(139,69,19,0.1); color: #8B4513; }
.tag-unique { background: rgba(75,0,130,0.1); color: #4B0082; }
.tag-3d { background: rgba(0,128,128,0.1); color: #008080; }
.tag-trending { background: rgba(255,140,0,0.1); color: #FF8C00; }

.products-more {
    text-align: center;
    margin-top: 48px;
}

.products-more p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ---- Scenes / Video Cases ---- */
.case-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.case-filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border);
    border-radius: 50px;
    background: white;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.case-filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.case-filter-btn.active { background: var(--accent); border-color: var(--accent); color: white; }

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

.case-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.case-card.hidden { display: none; }

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.case-video {
    position: relative;
    height: 360px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.case-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
    pointer-events: none;
}

.case-card:hover .play-overlay { background: rgba(0,0,0,0.15); }
.case-video.playing .play-overlay { opacity: 0; }

.case-info {
    padding: 20px;
}

.case-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.case-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Legacy scene styles kept for compat */
.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.scene-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.scene-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.scene-img {
    height: 220px;
    overflow: hidden;
}

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

.scene-card:hover .scene-img img {
    transform: scale(1.1);
}

.scene-info {
    padding: 24px;
}

.scene-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.scene-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- Features ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.feature-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ---- Gallery ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

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

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ---- Specs ---- */
.specs-table-wrap {
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.specs-table th, .specs-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.specs-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(233,69,96,0.03); }

/* ---- Contact ---- */
.section-cta {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.contact-methods { display: flex; flex-direction: column; gap: 16px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.contact-icon { font-size: 1.5rem; }
.contact-item strong { display: block; font-weight: 600; }
.contact-item span { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.contact-form-wrap {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-form h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text);
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

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

.footer-brand .logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; }

.footer-links h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    animation: none;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ---- Scroll Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Gallery Badge on Product Cards ---- */
.product-card.has-gallery { cursor: pointer; }

.gallery-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.product-card.has-gallery:hover .gallery-badge {
    opacity: 1;
}

.product-img { position: relative; }

/* ---- Lightbox Overlay (Gallery Grid) ---- */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.95);
    overflow-y: auto;
    padding: 0;
}

.lightbox-overlay.active { display: block; }

.lightbox-header {
    position: sticky;
    top: 0;
    z-index: 2001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
}

.lightbox-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.lightbox-close {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 10px;
    transition: color 0.2s;
}

.lightbox-close:hover { color: var(--accent); }

.lightbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    padding: 20px 30px 40px;
}

.lightbox-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lightbox-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 20px rgba(233,69,96,0.3);
}

/* ---- Lightbox Full Image Viewer ---- */
.lightbox-viewer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.97);
    align-items: center;
    justify-content: center;
}

.lightbox-viewer.active {
    display: flex;
}

.lightbox-viewer-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-viewer-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 3001;
    line-height: 1;
}

.lightbox-viewer-close:hover { color: var(--accent); }

.lightbox-viewer-prev,
.lightbox-viewer-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3001;
}

.lightbox-viewer-prev { left: 20px; }
.lightbox-viewer-next { right: 20px; }

.lightbox-viewer-prev:hover,
.lightbox-viewer-next:hover {
    background: rgba(233,69,96,0.6);
}

.lightbox-viewer-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ---- Responsive ---- */

/* ========== MOBILE 768px ========== */
@media (max-width: 768px) {
  /* --- Navbar --- */
  .navbar, #navbar { 
    padding: 4px 0 !important; 
    background: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
  }
  .navbar .container, #navbar .container { padding: 0 12px !important; }
  .logo { font-size: 1.1rem !important; letter-spacing: 1px !important; }
  .logo-icon { font-size: 0.9rem !important; }
  .hero-carousel { margin-top: 0 !important; padding-top: 0 !important; }
  .nav-links { 
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; flex-direction: column; padding: 16px; 
    box-shadow: var(--shadow); gap: 12px;
  }
  .nav-links.active { display: flex; }
  .nav-links a { color: var(--text) !important; }
  .hamburger { display: flex; }

  /* --- Hero Carousel --- */
  .hero-carousel { min-height: 500px; height: 70vh; max-height: 700px; }
  .slide-content { padding: 0 16px; }
  .slide-content h1 { font-size: 1rem; }
  .slide-content p { font-size: 0.7rem; font-weight: 500; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { text-align: center; font-size: 0.8rem; padding: 8px 16px; }
  .banner-swiper .swiper-button-prev,
  .banner-swiper .swiper-button-next { display: none; }
  .banner-swiper .swiper-slide img { object-fit: cover; width: 100%; height: 100%; }
  .swiper-pagination-bullet { width: 10px; height: 10px; }

  /* --- Stats --- */
  .stats-bar { padding: 6px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 4px 6px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item .stat-number { font-size: 0.9rem; }
  .stat-item .stat-label { font-size: 0.45rem; }
  .stat-item .stat-suffix { font-size: 0.7rem; }

  /* --- Sections & Text Spacing --- */
  .section { padding: 20px 0; }
  .section-header { margin-bottom: 20px; }
  .section-header h2 { font-size: 1.2rem; margin-bottom: 6px; }
  .section-header p { font-size: 0.75rem; margin-bottom: 0; }
  .section-tag { font-size: 0.7rem; margin-bottom: 6px; letter-spacing: 1px; }
  .container { padding: 0 12px; }

  /* --- Global text tightening --- */
  h1, h2, h3, h4, h5, h6 { margin-bottom: 8px; }
  p { margin-bottom: 8px; line-height: 1.5; }

  /* --- About --- */
  .about-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-image img { height: 180px; }
  .about-image-badge { padding: 8px 12px; gap: 6px; bottom: 12px; left: 12px; }
  .badge-number { font-size: 1.2rem; }
  .badge-text { font-size: 0.55rem; }
  .about-highlights { grid-template-columns: 1fr; gap: 8px; }
  .about-text h3 { font-size: 1rem; margin-bottom: 6px; }
  .about-text p { font-size: 0.8rem; margin-bottom: 8px; }
  .about-desc { margin-bottom: 12px; }
  .highlight-icon { font-size: 1.2rem; }
  .about-highlight strong { font-size: 0.8rem; }
  .about-highlight span { font-size: 0.7rem; }

  /* --- Products --- */
  .product-grid { grid-template-columns: 1fr; gap: 10px; }
  .product-filter { gap: 6px; margin-bottom: 12px; }
  .filter-btn { padding: 6px 12px; font-size: 0.75rem; }
  .product-card { padding: 0; }
  .product-info { padding: 10px; }
  .product-info h3 { font-size: 0.9rem; margin-bottom: 4px; }
  .product-info p { font-size: 0.75rem; margin-bottom: 4px; }

  /* --- Scenes / Cases --- */
  .scenes-grid { grid-template-columns: 1fr; gap: 10px; }
  .cases-grid { grid-template-columns: 1fr; gap: 6px; }
  .case-filter { gap: 6px; margin-bottom: 8px; }
  .case-filter-btn { padding: 6px 12px; font-size: 0.75rem; }
  .case-info { padding: 6px 10px; }
  .case-info h3 { font-size: 0.85rem; margin-bottom: 2px; }
  .case-info p { font-size: 0.7rem; margin-bottom: 0; }

  /* --- Features / Gallery --- */
  .features-grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-card { padding: 16px; }
  .feature-card h3 { font-size: 0.9rem; margin-bottom: 4px; }
  .feature-card p { font-size: 0.75rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery-large { grid-column: span 2; }

  /* --- Contact / Footer --- */
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer { padding: 24px 0 16px; }
  .footer-col h4 { font-size: 0.85rem; margin-bottom: 8px; }
  .footer-col p, .footer-col a { font-size: 0.75rem; }

  /* --- WhatsApp Float --- */
  .wa-float { bottom: 70px !important; right: 12px !important; }
}

/* ========== MOBILE 480px ========== */
@media (max-width: 480px) {
  .logo-text { font-size: 0.65rem; }
  .hero-carousel { min-height: 500px; height: 70vh; max-height: 700px; }
  .slide-content h1 { font-size: 0.85rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item .stat-number { font-size: 1.3rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-large { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
