:root {
    /* Light Mode Palette */
    --bg-app: rgba(255, 255, 255, 0.95);
    --bg-container: rgba(255, 255, 255, 0.98);
    --bg-surface: rgba(255, 255, 255, 0.9);
    --bg-soft: rgba(240, 242, 245, 0.85);
    
    --text-main: #1a1a1b;
    --text-muted: #000000;
    --text-on-dark: #ffffff;
    
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    
    /* Global Brand Colors */
    --primary: #FF0000;
    --primary-light: #ff3333;
    --wa: #25D366;
    --shopee: #FF6600;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

/* Exclude Swiper elements from global transition */
.clientSwiper,
.clientSwiper *,
.swiper,
.swiper *,
.swiper-wrapper,
.swiper-slide {
    transition: none !important;
    animation: none !important;
}

body { 
    background-color: #f5f5f5;
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.5;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Body glass overlay - animating gradient */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        linear-gradient(125deg, 
            rgba(255,255,255,0.4) 0%, 
            rgba(255,255,255,0.15) 25%, 
            rgba(255,255,255,0.25) 50%, 
            rgba(255,255,255,0.1) 75%, 
            rgba(255,255,255,0.35) 100%);
    background-size: 400% 400%;
    animation: bodyGlassShift 10s ease infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes bodyGlassShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Floating particles effect */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.25) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.15) 0%, transparent 30%);
    animation: particleFloat 15s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.app-container { 
    max-width: 414px; 
    margin: 0 auto; 
    background: url('asset/img/bg.jpeg') no-repeat center center;
    background-size: cover;
    background-position: center top;
    min-height: 100vh; 
    position: relative;
    border-radius: 0;
}

/* Animated glass overlay on app-container */
.app-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(125deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.15) 75%, rgba(255,255,255,0.25) 100%);
    background-size: 400% 400%;
    animation: glassShift 8s ease infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes glassShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism container box-shadow */
.app-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4),
                0 0 60px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.app-container > * {
    position: relative;
    z-index: 1;
}

/* Main Content - transparent to show background */
.app-main {
    padding: 20px;
    padding-bottom: 40px;
    background: transparent;
    min-height: calc(100vh - 80px);
    animation: contentFloat 6s ease-in-out infinite;
}

@keyframes contentFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Interactive hover on app-container */
.app-container:hover::after {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6),
                0 0 80px rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
}

/* Header */
.app-header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    padding: 12px 16px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 414px;
    width: 100%;
    z-index: 100 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    overflow: visible;
    min-height: 64px;
}

.app-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.header-brand { display: flex; align-items: center; gap: 12px; overflow: visible; }
.brand-logo { width: 172px; height: auto; object-fit: contain; }
.brand-text { font-size: 20px; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-icon-btn:hover {
    transform: translateY(-2px);
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.header-icon-btn i {
    font-size: 20px;
    color: #25D366;
}

.header-icon-btn:hover i {
    color: #25D366;
}

/* Main Content */
.app-main { padding: 20px; padding-bottom: 40px; }

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, rgba(255, 219, 18, 0.9), rgba(255, 215, 0, 0.9));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 18px;
    font-weight: 800;
    color: #000;
    box-shadow: 0 8px 20px rgba(255, 219, 18, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(255, 219, 18, 0.5);
    background: linear-gradient(135deg, #FFDB12, #FFD700);
}

.cta-button:active {
    transform: translateY(-1px);
}

.shopee-btn {
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border: 1px solid var(--border-color);
    margin: 20px 0;
    transition: all 0.3s ease;
}

.shopee-btn:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.shopee-btn span { color: var(--text-main); font-weight: 700; }

/* Marketplace Section - Glass UI */
.marketplace-section {
    margin: 24px -20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.marketplace-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-align: center;
}

.marketplace-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Standard size marketplace button */
.marketplace-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* HOVER - lift and shadow */
.marketplace-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}

/* ACTIVE/CLICK - press down effect */
.marketplace-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Icon */
.marketplace-btn .ti {
    font-size: 24px;
    color: #fff;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

/* Icon hover - scale up */
.marketplace-btn:hover .ti {
    transform: scale(1.15);
}

/* Name text */
.marketplace-btn .marketplace-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

/* Name hover - slight move */
.marketplace-btn:hover .marketplace-name {
    transform: translateX(3px);
}

/* Shopee - animated gradient glass */
.marketplace-btn.shopee {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.95) 0%, rgba(255, 153, 51, 0.95) 50%, rgba(255, 102, 0, 0.95) 100%);
    background-size: 200% 200%;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 20px rgba(255, 102, 0, 0.35);
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.marketplace-btn.shopee:hover {
    background-position: 100% 0%;
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.55);
}

/* Tokopedia - animated gradient glass */
.marketplace-btn.tokopedia {
    background: linear-gradient(135deg, rgba(3, 172, 14, 0.95) 0%, rgba(0, 214, 50, 0.95) 50%, rgba(3, 172, 14, 0.95) 100%);
    background-size: 200% 200%;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 20px rgba(3, 172, 14, 0.35);
    animation: gradientMove 3s ease infinite;
}

.marketplace-btn.tokopedia:hover {
    background-position: 100% 0%;
    box-shadow: 0 8px 30px rgba(3, 172, 14, 0.55);
}

/* TikTok - animated gradient glass */
.marketplace-btn.tiktok {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(51, 51, 51, 0.95) 50%, rgba(0, 0, 0, 0.95) 100%);
    background-size: 200% 200%;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    animation: gradientMove 3s ease infinite;
}

.marketplace-btn.tiktok:hover {
    background-position: 100% 0%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

/* Cards & Sections */
.hero-banner { 
    border-radius: 20px; 
    overflow: hidden; 
    margin-bottom: 20px; 
    box-shadow: 0 12px 40px rgba(0,0,0,0.2); 
    animation: slide-up 0.6s ease-out; 
    position: relative; 
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hero-banner img { width: 100%; display: block; }

.hero-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.hero-overlay h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 13px;
    margin: 0;
    opacity: 0.9;
}

/* Client Logo Slider - Minimalist No Background */
.client-section {
    margin: 0 -20px 20px;
    padding: 12px 0;
    background: transparent;
    overflow: hidden;
}

.clientSwiper {
    width: 100%;
    padding: 5px 8px;
    overflow: visible !important;
}

.clientSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

.clientSwiper .swiper-slide {
    width: auto !important;
    display: flex;
    justify-content: center;
}

.logo-item {
    width: 80px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.content-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    display: block;
    animation: slide-up 0.6s ease-out backwards;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 145px;
    transition: all 0.3s ease;
}

.content-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.3);
}

.content-card img.w-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.content-card .card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    padding: 20px;
    color: #fff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    margin: -20px -20px 24px;
    animation: slide-up 0.6s ease-out;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-header h1 { font-size: 24px; font-weight: 800; color: var(--text-main); }
.page-header p { color: var(--text-muted); font-size: 14px; }

/* Photo Grid & Cards (Katalog) */
.photo-cards { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 12px;
    padding: 0 20px 20px;
    margin: 0 -20px;
}

.photo-card {
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    height: 180px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: slide-up 0.5s ease backwards;
    transition: all 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.photo-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.photo-card:hover .photo-card-bg {
    transform: scale(1.1);
}

.photo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.photo-card-overlay h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.photo-card-overlay p {
    font-size: 10px;
    margin: 4px 0 0;
    opacity: 0.8;
}

.photo-card-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Product List (Produk) */
.section-header {
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--primary);
}

.section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.product-item {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: slide-up 0.5s ease backwards;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
    border-color: rgba(255, 0, 0, 0.3);
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.15s; }
.product-item:nth-child(3) { animation-delay: 0.2s; }
.product-item:nth-child(4) { animation-delay: 0.25s; }
.product-item:nth-child(5) { animation-delay: 0.3s; }
.product-item:nth-child(6) { animation-delay: 0.35s; }

.product-item-img {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

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

.product-item-info {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.product-item-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 4px;
}

.product-item-info p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0 0 8px;
}

.price {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.btn-wa {
    background-color: var(--wa);
    color: #fff;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}

.btn-wa i { font-size: 14px; }

/* Section Spacing */
.app-section {
    margin-bottom: 32px;
}

/* Unified Modern Footer */
.modern-footer {
    padding: 33px 24px 100px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
    position: relative;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff6d00);
    border-radius: 0 0 4px 4px;
}

.footer-container {
    max-width: 320px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 20px;
    text-align: center;
}

.footer-logo {
    width: 230px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
    object-fit: contain;
}

.brand-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--text-main);
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-medium {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

/* Footer Tagline */
.footer-tagline {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Footer Description */
.footer-description {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    background: rgba(255, 255, 255, 0.3);
}

.social-link:nth-child(1):hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-link:nth-child(2):hover { background: linear-gradient(135deg, #1877f2, #0d5fbd); color: #fff; }
.social-link:nth-child(3):hover { background: linear-gradient(135deg, #000000, #333333); color: #fff; }
.social-link:nth-child(4):hover { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }

.social-link i { font-size: 20px; }

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1.5px;
}

.copyright-text {
    font-size: 10px;
    color: var(--text-muted);
}

/* Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    background: rgba(255, 255, 255, 0.65) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    display: flex;
    justify-content: space-around;
    padding: 7px 10px 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1000;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
}

.nav-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.05);
}

.nav-item.active {
    color: var(--primary);
}

.nav-item i { font-size: 22px; margin-bottom: 4px; }
.nav-item.active { color: var(--primary); }

/* ============================================
   PRODUK & BLOG SHARED STYLES
   ============================================ */

/* Page Header - Catalog Style */
.page-header-catalog {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: -20px -20px 0;
    position: relative;
    overflow: hidden;
}

.page-header-catalog .page-header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #ff6d00);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.page-header-catalog .page-header-icon i {
    font-size: 28px;
    color: #fff;
}

.page-header-catalog h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 6px 0;
}

.page-header-catalog p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   PAGE HEADER DECORATION - Glass UI Modern
   ============================================ */
.page-header-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    /* GPU acceleration for smooth animations */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Glass shine effect */
.page-header-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    animation: glassShine 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes glassShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Decorative dots container */
.page-header-decoration .dots-container {
    display: flex;
    gap: 6px;
    align-items: center;
}

/* Each decorative element */
.page-header-decoration .deco-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    will-change: transform;
    animation: decoPulse 1.5s ease-in-out infinite;
}

/* Hover effect - scale up */
.page-header-decoration .deco-dot:hover {
    transform: scale(1.5);
}

/* First dot - Red with glow */
.page-header-decoration .deco-dot:nth-child(1) {
    background: linear-gradient(135deg, #FF3B30, #FF6B6B);
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
    animation-delay: 0s;
}

/* Second dot - Orange */
.page-header-decoration .deco-dot:nth-child(2) {
    background: linear-gradient(135deg, #FF9500, #FFB347);
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.5);
    animation-delay: 0.2s;
}

/* Third dot - Yellow/Gold */
.page-header-decoration .deco-dot:nth-child(3) {
    background: linear-gradient(135deg, #FFD60A, #FFE066);
    box-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
    animation-delay: 0.4s;
}

/* Fourth dot - Green */
.page-header-decoration .deco-dot:nth-child(4) {
    background: linear-gradient(135deg, #34C759, #6DD5A0);
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
    animation-delay: 0.6s;
}

/* Fifth dot - Blue */
.page-header-decoration .deco-dot:nth-child(5) {
    background: linear-gradient(135deg, #007AFF, #5AC8FA);
    box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
    animation-delay: 0.8s;
}

/* Pulse animation - runs automatically */
@keyframes decoPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.4);
    }
}

/* Interactive tooltip on hover */
.page-header-decoration .deco-dot::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.page-header-decoration .deco-dot:hover::after {
    opacity: 1;
    bottom: -10px;
}

/* Search Section */
.search-section, .search-section-blog {
    padding: 16px 20px 12px;
    margin: 0 -20px;
}

.search-box, .search-box-blog {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.search-box:hover, .search-box-blog:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.search-box i, .search-box-blog i {
    color: var(--text-muted);
    font-size: 18px;
}

.search-box input, .search-box-blog input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-main);
    outline: none;
}

.search-box input::placeholder, .search-box-blog input::placeholder {
    color: var(--text-muted);
}

/* Category Scroll */
.category-scroll, .category-scroll-blog,
.category-wrapper, .category-wrapper-blog {
    padding: 12px 20px 16px;
    margin: 0 -20px;
}

.category-scroll, .category-scroll-blog {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar,
.category-scroll-blog::-webkit-scrollbar {
    display: none;
}

.pill, .pill-blog {
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pill.active, .pill-blog.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pill:hover:not(.active), .pill-blog:hover:not(.active) {
    background: #fff;
    transform: translateY(-2px);
}

/* Result Info */
.result-info, .result-info-blog {
    padding: 4px 20px 12px;
    margin: 0 -20px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   PRODUK PAGE STYLES
   ============================================ */

/* No Products */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-products i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

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

/* Product Grid */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 20px 20px;
    margin: 0 -20px;
}

@media (max-width: 380px) {
    .cards {
        grid-template-columns: 1fr;
        padding: 0 16px 16px;
    }
}

/* Card Styles */
.card-wrap {
    position: relative;
    animation: fadeInUp 0.5s ease backwards;
    cursor: pointer;
}

.card-wrap:nth-child(1) { animation-delay: 0.05s; }
.card-wrap:nth-child(2) { animation-delay: 0.1s; }
.card-wrap:nth-child(3) { animation-delay: 0.15s; }
.card-wrap:nth-child(4) { animation-delay: 0.2s; }
.card-wrap:nth-child(5) { animation-delay: 0.25s; }
.card-wrap:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 200px;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 36px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.card-filter {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

.card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.4s ease;
}

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

.card-content {
    position: relative;
    z-index: 3;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.card-status {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
}

.card-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.card-status-dot.online { background: #25D366; }
.card-status-dot.offline { background: #999; }

.card-status-text {
    font-size: 9px;
    font-weight: 600;
    color: #fff;
}

.card-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-tags {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.card-tag {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 11px;
}

.card-rating-text {
    color: #fff;
    font-weight: 600;
}

.card-rating-stars {
    color: #FFD700;
    font-size: 11px;
}

.card-price {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin-bottom: 8px;
}

.card-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.card:hover .card-button {
    background: var(--primary);
    box-shadow: 0 4px 16px rgba(255, 0, 0, 0.4);
}

.card-button-text {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.card-button-call {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.card-button-call i {
    font-size: 12px;
}

/* Product Popup */
.product-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.popup-content {
    position: relative;
    width: 100%;
    max-width: 360px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: slideUp 0.3s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.popup-details {
    padding: 16px;
}

.popup-category {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.popup-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 8px 0;
}

.popup-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.popup-rating span {
    color: #FFD700;
}

.popup-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.popup-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--bg-soft);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 10px;
    color: var(--text-muted);
}

.popup-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.popup-price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

/* Checkout Buttons */
.checkout-section {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.checkout-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.checkout-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkout-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.checkout-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
}

.checkout-btn.shopee {
    background: linear-gradient(135deg, #FF6600, #FF8533);
    color: #fff;
}

.checkout-btn.tokopedia {
    background: linear-gradient(135deg, #03AC0E, #00B32D);
    color: #fff;
}

.checkout-btn.tiktok {
    background: linear-gradient(135deg, #000000, #333333);
    color: #fff;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.btn-reset {
    display: inline-block;
    background: var(--bg-soft);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Section - List Layout */
.blog-section {
    padding: 0 20px 20px;
    margin: 0 -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Blog Item - Horizontal Card */
.blog-item {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease backwards;
    position: relative;
    overflow: hidden;
}

.blog-item:nth-child(1) { animation-delay: 0.05s; }
.blog-item:nth-child(2) { animation-delay: 0.1s; }
.blog-item:nth-child(3) { animation-delay: 0.15s; }
.blog-item:nth-child(4) { animation-delay: 0.2s; }
.blog-item:nth-child(5) { animation-delay: 0.25s; }
.blog-item:nth-child(6) { animation-delay: 0.3s; }

.blog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.blog-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

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

.blog-item:hover .blog-item-image img {
    transform: scale(1.1);
}

.blog-item-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 2px;
    text-transform: uppercase;
}

.blog-item-badge.artikel { background: linear-gradient(135deg, #667eea, #764ba2); }
.blog-item-badge.promo { background: linear-gradient(135deg, #f093fb, #f5576c); }
.blog-item-badge.pengumuman { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.blog-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-item-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item-excerpt {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item-meta {
    display: flex;
    gap: 12px;
    font-size: 10px;
    color: var(--text-muted);
}

.blog-item-meta span {
    display: flex;
    align-items: center;
    gap: 3px;
}

.blog-item-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.blog-item:hover .blog-item-arrow {
    background: var(--primary);
    color: #fff;
    right: 8px;
}

.blog-item-arrow i {
    font-size: 12px;
}

/* Empty State */
.blog-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.blog-empty-state i {
    font-size: 48px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.blog-empty-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-reset-blog {
    display: inline-block;
    background: var(--bg-soft);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

/* Blog Popup */
.blog-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.blog-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.blog-popup-content {
    position: relative;
    width: 100%;
    max-width: 414px;
    max-height: 90vh;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px 24px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: slideUp 0.3s ease;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.blog-popup-content::-webkit-scrollbar {
    display: none;
}

.popup-blog-details {
    padding: 20px;
    padding-top: 0;
}

.popup-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.popup-blog-badge.artikel { background: linear-gradient(135deg, #667eea, #764ba2); }
.popup-blog-badge.promo { background: linear-gradient(135deg, #f093fb, #f5576c); }
.popup-blog-badge.pengumuman { background: linear-gradient(135deg, #4facfe, #00f2fe); }

.popup-blog-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.popup-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.popup-blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.popup-blog-desc {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 16px;
    white-space: pre-line;
}

.popup-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.popup-blog-tag {
    padding: 4px 10px;
    background: var(--bg-soft);
    border-radius: 12px;
    font-size: 11px;
    color: var(--text-muted);
}

/* Share Section */
.popup-share {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    margin-bottom: 14px;
}

.popup-share-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.popup-share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
}

.share-btn.whatsapp { background: #25D366; color: #fff; }
.share-btn.facebook { background: #1877F2; color: #fff; }
.share-btn.twitter { background: #1DA1F2; color: #fff; }
.share-btn.link { background: var(--bg-soft); color: var(--text-main); }

/* Comments Section */
.popup-comments {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

.popup-comments-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.popup-comment {
    background: var(--bg-soft);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.comment-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
}

.comment-date {
    font-size: 10px;
    color: var(--text-muted);
}

.comment-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.no-comments {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

.popup-close-blog {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.popup-close-blog:hover {
    transform: scale(1.1);
}

.popup-close-blog i {
    color: #333;
    font-size: 18px;
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-soft) 25%, var(--bg-surface) 50%, var(--bg-soft) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 200px;
    border-radius: 14px;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-image {
    width: 100%;
    height: 180px;
    border-radius: 16px;
}

/* ============================================
   PULL TO REFRESH
   ============================================ */
.ptr-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 414px;
    z-index: 9999;
    pointer-events: none;
}

.ptr-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.ptr-indicator.active {
    opacity: 1;
    transform: translateY(0);
}

.ptr-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ptr-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
    font-weight: 600;
}

/* ============================================
   MICRO-INTERACTIONS
   ============================================ */
/* Button hover effects */
.btn-wa, .cta-button, .marketplace-btn, .checkout-btn, .share-btn {
    position: relative;
    overflow: hidden;
}

.btn-wa::after, .cta-button::after, .marketplace-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-wa:active::after, .cta-button:active::after, .marketplace-btn:active::after {
    width: 200px;
    height: 200px;
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Card hover lift */
.content-card, .photo-card, .product-item, .blog-item, .catalog-item {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.content-card:hover, .photo-card:hover, .blog-item:hover {
    transform: translateY(-6px) scale(1.02);
}

/* Icon bounce on hover */
.nav-item:hover i,
.catalog-item:hover .catalog-icon i,
.social-link:hover i {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Button press animation */
.btn-wa:active,
.cta-button:active,
.checkout-btn:active,
.nav-item:active {
    transform: scale(0.95);
}

/* Pulse animation for CTA */
.cta-button {
    animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(255,219,18,0.3); }
    50% { box-shadow: 0 12px 32px rgba(255,219,18,0.6); }
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.4s ease;
}

/* ============================================
   IMAGE LIGHTBOX / ZOOM
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: -70px;
}

.lightbox-nav.next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
}

/* Zoom on click */
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable:active {
    cursor: zoom-out;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   ENHANCED ACCESSIBILITY
   ============================================ */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   GLASSMORPHISM UI ENHANCEMENTS
   ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Glass effect for hero overlay */
.hero-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        transparent 100%
    );
}

/* Glass for search box */
.search-box, .search-box-blog {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill.active, .pill-blog.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Image lazy loading placeholder */
img[data-src] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img.loaded,
img[data-src].loaded {
    opacity: 1;
}

/* Content visibility for performance */
.lazy-content {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

/* Optimize paint */
.optimize-repaint {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

/* GPU acceleration for animations */
.gpu-accelerate {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

/* Smooth animations - prevent vibration */
.fade-smooth {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Preload critical images */
.preload-hero {
    fetchpriority: high;
}

/* Async loading indicator */
.loading-async {
    min-height: 200px;
    position: relative;
}

.loading-async::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 2px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================
   3D & INTERACTIVE EFFECTS
   ============================================ */

/* 3D Card Tilt */
.card-wrap, .content-card, .photo-card, .product-item {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Heart Beat Animation */
@keyframes heartBeat {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* 3D Flip Animation */
@keyframes flipIn {
    from { transform: perspective(400px) rotateY(0); }
    to { transform: perspective(400px) rotateY(360deg); }
}

/* Zoom Rotate */
@keyframes zoomRotate {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1.1) rotate(5deg); }
}

/* Elastic Bounce */
@keyframes elastic {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Glow Pulse */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 0, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), 0 0 40px rgba(255, 0, 0, 0.3); }
}

/* Skew Animation */
@keyframes skewHover {
    from { transform: skewX(0deg); }
    to { transform: skewX(-5deg); }
}

/* Apply 3D effects */
.card-wrap:hover, .content-card:hover, .photo-card:hover {
    animation: glowPulse 1.5s ease-in-out infinite;
}

/* Interactive cursor */
.interactive-element {
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-element:hover {
    cursor: grab;
}

.interactive-element:active {
    cursor: grabbing;
}

/* Parallax container */
.parallax-container {
    perspective: 1px;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Drag handle indicator */
.drag-handle {
    cursor: grab;
    opacity: 0.5;
    transition: opacity 0.3;
}

.drag-handle:hover {
    opacity: 1;
}

.dragging {
    opacity: 0.5;
    transform: scale(0.98);
}

/* Swipe indicator */
.swipe-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    animation: bounce 2s infinite;
}

.swipe-indicator span {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.5;
}

.swipe-indicator span:first-child {
    opacity: 1;
}

/* Long press feedback */
.long-press-feedback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 600;
    z-index: 10000;
    animation: fadeInScale 0.3s ease;
}

/* Touch ripple */
.touch-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.4);
    transform: scale(0);
    animation: ripple-anim 0.6s linear;
    pointer-events: none;
}

/* Double tap visual */
.double-tap-like {
    position: absolute;
    font-size: 64px;
    animation: heartBeat 0.8s ease-out forwards;
    z-index: 100;
}

/* Mouse follower (desktop only) */
#mouse-follower {
    display: none;
}

@media (min-width: 769px) {
    #mouse-follower {
        display: block;
    }
}

/* Hero Section - Modern Design */
.hero-section {
    margin-bottom: 24px;
}

.hero-logo {
    text-align: center;
    margin-bottom: 20px;
}

.hero-logo-img {
    width: 195px;
    height: auto;
    display: inline-block;
    object-fit: contain;
}

.hero-logo-text {
    display: none;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-content {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.tag-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-headline {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.hero-text {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.2);
    width: auto;
    margin-bottom: 0;
}

.hero-cta .cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
    background: var(--primary-light);
}

.hero-cta .cta-button i {
    font-size: 12px;
}

.hero-cta .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-main);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.hero-cta .cta-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.hero-cta .cta-link i {
    font-size: 14px;
    color: var(--primary);
}

/* Stats Grid - Inside Hero Content - Glass UI */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Interactive hover - lift and glow */
.stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Active/click - press down */
.stat-card:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Shimmer effect on hover */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card-primary {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.85) 0%, rgba(255, 51, 51, 0.85) 100%);
    border-color: rgba(255, 0, 0, 0.4);
}

.stat-card-primary:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.95) 0%, rgba(255, 51, 51, 0.95) 100%);
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35);
}

.stat-card-accent {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.85) 0%, rgba(18, 140, 126, 0.85) 100%);
    border-color: rgba(37, 211, 102, 0.4);
}

.stat-card-accent:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95) 0%, rgba(18, 140, 126, 0.95) 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* No icon styling needed - removed */

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.1;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-value {
    transform: scale(1.05);
}

.stat-card-primary .stat-value,
.stat-card-primary .stat-title,
.stat-card-accent .stat-value,
.stat-card-accent .stat-title {
    color: #fff;
}

.stat-title {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.2;
    margin-top: 2px;
}

.stat-card-primary .stat-title,
.stat-card-accent .stat-title {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 380px) {
    .hero-headline {
        font-size: 22px;
    }
    
    .hero-text {
        font-size: 13px;
    }
    
    .cta-button, .cta-link {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .stat-card {
        padding: 12px;
    }
    
    .stat-value {
        font-size: 18px;
    }
}

/* Video Popup */
.video-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2147483647 !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.video-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1 !important;
}

.video-popup-content {
    position: relative;
    z-index: 2 !important;
    width: 100%;
    max-width: 400px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.video-popup-close i {
    color: #fff;
    font-size: 18px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

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