/* style.css */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0; }

:root {
    --bg-white: #ffffff;
    --bg-light: #f4f6f9;
    --border-color: #e2e8f0;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --accent: #0066cc; 
    --accent-hover: #004c99;
    --footer-bg: #0b0f19;
    --footer-text: #cbd5e1;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --shadow-soft: 0 15px 35px rgba(15, 23, 42, 0.05);
    --shadow-hover: 0 20px 45px rgba(15, 23, 42, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --title-gradient: linear-gradient(90deg, #0066cc, #00bfff);
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-tap-highlight-color: transparent; 
}
html, body { max-width: 100%; overflow-x: hidden; }
body { background: var(--bg-white); color: var(--text-dark); font-family: var(--font-body); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

::-webkit-scrollbar { 
    width: 14px; 
    height: 14px; 
}
::-webkit-scrollbar-track { 
    background: rgba(15, 23, 42, 0.03); 
    border-radius: 100px;
    margin: 5px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.02);
}
::-webkit-scrollbar-thumb { 
    background-color: var(--accent);
    background-image: linear-gradient(180deg, var(--accent) 0%, #0059b3 100%);
    border: 4px solid transparent; 
    border-radius: 100px; 
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { 
    background-image: linear-gradient(180deg, var(--accent-hover) 0%, var(--accent) 100%);
    border-width: 3px;
}

@keyframes shineSweep {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.logo-text-anim {
    background: linear-gradient(110deg, var(--accent) 30%, #4facfe 50%, var(--accent) 70%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineSweep 4s linear infinite;
    display: inline-block;
}

.footer-logo-anim {
    background: linear-gradient(110deg, #ffffff 30%, #4facfe 50%, #ffffff 70%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineSweep 4s linear infinite;
    display: inline-block;
}

.nav-pill {
    position: fixed; top: 25px; left: 50%; transform: translateX(-50%);
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--border-color); border-radius: 100px;
    padding: 10px 20px 10px 25px; display: flex; align-items: center; gap: 40px; z-index: 1000;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08); width: max-content; transition: 0.3s;
    box-sizing: border-box; flex-wrap: nowrap;
}

.nav-logo { 
    font-family: 'Outfit', sans-serif; 
    font-weight: 900; 
    font-size: 1.8rem; 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    letter-spacing: -0.5px;
    transition: 0.3s;
    color: var(--accent) !important;
    white-space: nowrap; 
    outline: none;
    flex-shrink: 0;
}
.main-logo { width: 35px; height: 35px; object-fit: contain; border-radius: 8px; flex-shrink: 0; }

.nav-links { display: flex; gap: 10px; align-items: center; }
.nav-item { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; color: var(--text-muted); padding: 10px 18px; border-radius: 50px; transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.nav-item i { font-size: 1.1rem; }
.nav-item:hover, .nav-item.active { background: rgba(0, 102, 204, 0.08); color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 15px; flex-wrap: nowrap; flex-shrink: 0; }
.btn-cart-nav { background: var(--text-dark); color: white; border: none; padding: 12px 25px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.2); flex-shrink: 0; }
.btn-cart-nav:hover { background: var(--accent); transform: scale(1.05); }
.cart-badge { background: white; color: var(--text-dark); font-size: 0.85rem; padding: 2px 8px; border-radius: 20px; font-weight: 900; }
.hamburger { display: none; background: none; border: none; font-size: 1.8rem; color: var(--text-dark); cursor: pointer; padding: 5px; transition: 0.3s; position: relative; z-index: 1001; flex-shrink: 0; }

.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; background: rgba(11, 15, 25, 0.98); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); overflow: hidden; }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-container { display: flex; flex-direction: column; gap: 15px; align-items: center; width: 100%; max-width: 320px; padding: 0 20px; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: white; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; align-items: center; gap: 15px; text-transform: uppercase; letter-spacing: 1px; opacity: 0; transform: translateY(30px); background: rgba(255,255,255,0.03); width: 100%; padding: 15px 25px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a i { color: var(--accent); font-size: 1.4rem; background: rgba(0,102,204,0.15); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 12px; transition: 0.3s; flex-shrink: 0; }
.mobile-menu a:hover, .mobile-menu a.active { background: linear-gradient(135deg, rgba(0,102,204,0.2), rgba(0,191,255,0.05)); border-color: rgba(0,102,204,0.3); transform: scale(1.02); }
.mobile-menu a.active i { background: var(--accent); color: white; box-shadow: 0 5px 15px rgba(0,102,204,0.4); }
.mobile-menu a.animate-click { transform: scale(0.9) translateY(-10px); opacity: 0; transition: all 0.3s ease-in-out; }

.mobile-socials { display: flex; gap: 15px; margin-top: 40px; opacity: 0; transform: translateY(20px); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); transition-delay: 0.35s; }
.mobile-menu.open .mobile-socials { opacity: 1; transform: translateY(0); }
.mobile-socials a { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; padding: 0; opacity: 1; transform: none; transition: 0.3s; box-shadow: none; }
.mobile-socials a i { color: white; background: transparent; width: auto; height: auto; border-radius: 0; }
.mobile-socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,102,204,0.3); }

.section { padding: 120px 5%; max-width: 1400px; margin: 0 auto; text-align: center; }
.section-title { font-family: var(--font-head); font-size: clamp(2.8rem, 6vw, 4rem); font-weight: 900; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 15px; background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; line-height: 1.5; padding-bottom: 0.2em; padding-top: 0.1em; text-align: center; display: inline-block; width: 100%; }
.section-subtitle { font-size: 1.25rem; color: var(--text-muted); font-weight: 500; max-width: 800px; margin: 0 auto 50px auto; line-height: 1.8; text-align: center; }
.section-subtitle-accent { background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-weight: 800; font-family: var(--font-head); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 10px; text-align: center; }

.bg-light { background-color: var(--bg-light); border-radius: 40px; margin: 20px 5%; width: calc(100% - 10%); max-width: 1400px; padding: 100px 5%; margin-inline: auto; }

.btn-primary { background: linear-gradient(135deg, var(--accent), #0059b3); color: white; padding: 16px 35px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: none; cursor: pointer; white-space: nowrap; outline: none; }
.btn-primary:hover { transform: translateY(-3px); }
.btn-primary:active { transform: scale(0.95) translateY(0); }
.btn-secondary { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); padding: 14px 30px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; white-space: nowrap; outline: none; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); background: rgba(0, 102, 204, 0.05); transform: translateY(-3px); }
.btn-secondary:active { transform: scale(0.95) translateY(0); }

.hero-complex { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; max-width: 1400px; margin: 0 auto; padding: 200px 5% 100px; }
.hero-text-area { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

.hero-desc-box { 
    background: var(--bg-white); 
    padding: 35px 40px; 
    border-radius: 24px; 
    border: 2px solid var(--border-color); 
    margin-bottom: 35px; 
    width: 100%; 
    position: relative;
    box-shadow: var(--shadow-soft); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    overflow: hidden;
    z-index: 1;
    min-height: 200px;
} 
.hero-desc-box:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-hover); 
    border-color: var(--accent);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 204, 0.08);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: none; 
}
.hero-desc-box p { 
    margin: 0; 
    font-size: 1.15rem; 
    color: var(--text-dark); 
    line-height: 1.8; 
    font-weight: 500; 
    text-align: left; 
}
.hero-desc-box p strong { color: var(--text-dark); font-weight: 800; }
.hero-desc-box p em { 
    font-style: normal; 
    font-weight: 700; 
    color: var(--accent); 
}

.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-visual { position: relative; width: 100%; border-radius: 30px; overflow: hidden; box-shadow: none; border: none; background: transparent; aspect-ratio: 16/9; transition: transform 0.3s ease; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; image-rendering: high-quality; -webkit-backface-visibility: hidden; transform: translateZ(0); }

.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; text-align: center; }
.bento-card { background: var(--bg-white); padding: 40px; border-radius: 24px; border: 2px solid var(--border-color); box-shadow: var(--shadow-soft); transition: 0.4s; }
.bento-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.bento-icon { font-size: 2.5rem; color: var(--accent); margin: 0 auto 25px; background: rgba(0, 102, 204, 0.08); width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 24px; }
.bento-card h3 { font-family: var(--font-head); font-size: 1.6rem; padding-bottom: 0.2em; line-height: 1.5; margin-bottom: 15px; background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; display: inline-block; }
.bento-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; margin-bottom: 60px; text-align: center; }
.step-card { background: var(--bg-white); border-radius: 24px; padding: 50px 30px 40px; position: relative; overflow: hidden; border: none; box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; height: 100%; }
.step-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #f8fafc; z-index: -1; opacity: 0; transition: 0.4s; }
.step-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); }
.step-card:hover::after { opacity: 1; }
.step-number-corner { position: absolute; top: 25px; right: 25px; font-family: var(--font-head); font-size: 1.15rem; font-weight: 900; color: #cbd5e1; transition: 0.3s ease; z-index: 2; }
.step-card:hover .step-number-corner { color: var(--accent); transform: scale(1.1); }
.step-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 25px; display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: #f0f7ff; border-radius: 20px; transition: 0.4s; z-index: 2; position: relative; }
.step-card:hover .step-icon { background: var(--accent); color: white; transform: scale(1.05) rotate(5deg); box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08); }
.step-card h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--accent); margin-bottom: 15px; z-index: 2; position: relative; line-height: 1.4; padding-bottom: 0; background: none; -webkit-background-clip: unset; -webkit-text-fill-color: unset; }
.step-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; z-index: 2; position: relative; margin: 0; }

.category-filter-wrapper { text-align: center; width: 100%; margin-bottom: 50px; }
.category-filter { 
    display: inline-flex; gap: 8px; justify-content: center; flex-wrap: wrap; 
    background: transparent; padding: 0; border: none; box-shadow: none; 
}
.filter-btn { 
    background: transparent; border: none; color: var(--text-muted); 
    font-family: var(--font-head); font-weight: 800; padding: 12px 24px; 
    border-radius: 16px; cursor: pointer; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    display: flex; align-items: center; gap: 8px; text-transform: uppercase; 
    font-size: 0.9rem; letter-spacing: 0.5px; outline: none; 
}
.filter-btn i { font-size: 1.1rem; transition: 0.4s ease; color: var(--text-muted); display: flex; align-items: center; }
.filter-btn:hover { color: var(--accent); background: var(--bg-light); transform: translateY(-2px); }
.filter-btn:hover i { color: var(--accent); }
.filter-btn.active { background: linear-gradient(135deg, var(--accent), #00bfff); color: white; box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3) !important; transform: translateY(-3px); }
.filter-btn.active i { color: white; }

.color-badge-simple {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    background: var(--bg-white); 
    border: 2px solid var(--accent);
    color: var(--text-muted);
    padding: 14px 30px; border-radius: 50px; font-family: var(--font-body);
    font-size: 1.05rem; font-weight: 600; cursor: default;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}
.color-badge-simple i { color: var(--accent); font-size: 1.2rem; background: rgba(0, 102, 204, 0.08); width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.color-badge-simple strong { color: var(--accent); font-weight: 900; font-family: var(--font-head); }

.products-wrapper { display: flex; justify-content: center; }
.products-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; width: 100%; }

.product-card { 
    background: var(--bg-white); 
    border: 2px solid var(--border-color); 
    border-radius: 24px; 
    padding: 25px; 
    transition: all 0.4s ease; 
    display: flex; 
    flex-direction: column; 
    box-shadow: var(--shadow-soft); 
    width: 100%; max-width: 380px; 
    position: relative; 
}
.product-card::before {
    content: "";
    position: absolute;
    inset: -2px; 
    border: 2px dotted var(--accent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}
.product-card:hover { 
    border-color: transparent; 
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.08); 
    transform: translateY(-8px); 
}
.product-card:hover::before {
    opacity: 1;
}

.img-wrapper { position: relative; width: 100%; border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
.product-img { width: 100%; height: 260px; object-fit: cover; display: block; background: #ffffff; cursor: pointer; transition: 0.5s; }
.img-wrapper:hover .product-img { transform: scale(1.03); }

.product-info { text-align: center; }

.product-info h3 {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 3.5vw, 1.45rem);
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--title-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1.4;
    text-wrap: balance;
}

.product-info p { 
    color: #000000; 
    font-size: 1rem; 
    font-weight: 700;
    margin-bottom: 25px; 
    flex-grow: 1; 
    line-height: 1.7; 
    padding: 0 10px;
}

.single-line-title {
    font-family: var(--font-head);
    font-size: clamp(1.15rem, 3.5vw, 1.45rem) !important;
    font-weight: 900;
    display: block;
    min-height: 2.8em; 
    margin-bottom: 15px;
    background: var(--title-gradient); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    color: transparent;
    white-space: normal; 
    text-wrap: balance; 
    line-height: 1.4;
}

.review-stars { display: flex; justify-content: center; align-items: center; cursor: pointer; transition: 0.3s; width: max-content; margin: 0 auto 15px auto; }
.review-stars:hover { transform: scale(1.05); opacity: 0.8; }
.stars-inner { display: flex; gap: 2px; font-size: 1.05rem; }
.stars-text { font-family: var(--font-body); font-weight: 700; color: var(--text-dark); font-size: 0.95rem; margin-left: 8px; display: flex; align-items: center; gap: 5px; }
.stars-count { color: var(--text-muted); font-weight: 500; }

.product-footer { display: flex; flex-direction: column; gap: 15px; padding-top: 20px; border-top: 1px dashed var(--border-color); }
.price-badge { background: linear-gradient(135deg, var(--bg-light), var(--bg-white)); color: var(--text-dark); padding: 15px; border-radius: 20px; font-family: var(--font-head); font-weight: 900; font-size: 1.8rem; text-align: center; border: 2px solid var(--border-color); box-shadow: inset 0 2px 5px rgba(0,0,0,0.02); }
.price-badge span { background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.price-badge small { font-size: 1rem; font-weight: 700; color: var(--text-muted); }
.product-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.btn-add, .btn-gallery { border: none; padding: 14px; border-radius: 16px; font-weight: 800; font-family: var(--font-head); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.95rem; outline: none; }
.btn-add { background: linear-gradient(135deg, var(--accent), #004c99); background-size: 200% auto; color: white; transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); will-change: background-position, transform; }
.btn-add:hover { background-position: right center; transform: scale(1.04) translateY(-3px); }
.btn-add:active { transform: scale(0.95); }
.btn-gallery { background: var(--bg-light); color: var(--text-dark); border: 2px solid var(--border-color); transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.btn-gallery:hover { border-color: var(--accent); color: var(--accent); background: var(--bg-white); transform: translateY(-2px); }
.btn-gallery:active { transform: scale(0.95); }

.lightbox-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #ffffff; z-index: 4000; opacity: 0; pointer-events: none; transition: 0.3s; display: flex; flex-direction: column; align-items: center; justify-content: center; overscroll-behavior: none; touch-action: none; }
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: var(--text-dark); font-size: 2.5rem; cursor: pointer; transition: 0.3s; z-index: 4010; }
.lightbox-close:hover { color: #ef4444; transform: scale(1.1) rotate(90deg); }
.lightbox-content { display: flex; align-items: center; justify-content: center; width: 90%; height: 75%; gap: 30px; position: relative; touch-action: none; }

.lightbox-img { max-height: 100%; max-width: 80%; border-radius: 15px; border: none !important; outline: none !important; box-shadow: none !important; object-fit: contain; transition: 0.3s; touch-action: none; }

.lightbox-arrow { background: #e0f2fe; border: none; color: var(--accent); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; transition: 0.3s; }
.lightbox-arrow:hover { background: var(--accent); color: white; transform: scale(1.1); }

.lightbox-thumbnails { 
    display: none; 
    gap: 15px; margin-top: 20px; 
    background: #e0f2fe; 
    border: none !important;
    box-shadow: none !important;
    padding: 15px 25px; border-radius: 20px; 
    max-width: 90vw; overflow-x: auto; 
    scrollbar-width: none; -webkit-overflow-scrolling: touch; 
    scroll-snap-type: x mandatory; scroll-behavior: smooth; touch-action: pan-x; 
}
.lightbox-thumbnails::-webkit-scrollbar { display: none; }
.lightbox-thumb { flex-shrink: 0; width: 70px; height: 70px; object-fit: cover; border-radius: 10px; cursor: pointer; border: none !important; outline: none !important; box-shadow: none !important; transition: 0.3s; opacity: 0.5; scroll-snap-align: center; background: white; }
.lightbox-thumb.active { opacity: 1; transform: scale(1.15); box-shadow: none !important; border: none !important; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,23,42,0.8); backdrop-filter: blur(10px); z-index: 3000; opacity: 0; pointer-events: none; transition: 0.3s; display: flex; justify-content: center; align-items: center; padding: 20px; overscroll-behavior: none; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-content { background: var(--bg-white); width: 100%; max-width: 650px; border-radius: 30px; padding: 60px 40px 40px 40px; transform: translateY(50px) scale(0.95); transition: 0.4s; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 25px 50px rgba(15,23,42,0.2); overscroll-behavior: contain; }
.modal-content::-webkit-scrollbar-track { margin: 30px 0; background: rgba(15, 23, 42, 0.02); }
.modal-overlay.open .modal-content { transform: translateY(0) scale(1); }
.close-modal { position: absolute; top: 25px; right: 25px; background: var(--bg-light); border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; color: var(--text-dark); z-index: 10; }
.close-modal:hover { background: #ef4444; color: white; }

.avg-rating-box { display: flex; align-items: center; justify-content: center; flex-direction: column; background: var(--bg-light); padding: 25px; border-radius: 20px; margin-bottom: 30px; text-align: center; border: 2px solid var(--border-color); }
.avg-score { font-family: var(--font-head); font-size: 3.5rem; font-weight: 900; background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; line-height: 1; margin-bottom: 10px; display: inline-block; }
.avg-stars i { color: #fbbf24; font-size: 1.5rem; }
.review-item { position: relative; padding-bottom: 40px; margin-bottom: 40px; text-align: center; border-bottom: none; }
.review-item:not(:last-child)::before { content: ''; position: absolute; bottom: 0; left: 10%; width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); z-index: 1; opacity: 0.3; }
.review-item:not(:last-child)::after { content: '◆'; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-size: 1.5rem; padding: 0 15px; z-index: 2; background-color: var(--bg-white); line-height: 1; }
.reviewer-name { font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; color: var(--text-dark); }
.review-title { font-weight: 800; margin: 10px 0; color: var(--accent); font-size: 1.1rem; }

.review-form-container { 
    background: linear-gradient(145deg, #ffffff, #f8fafc); 
    padding: 40px 30px; 
    border-radius: 24px; 
    margin-top: 40px; 
    border: 2px dashed var(--border-color);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}
.form-header { text-align: center; margin-bottom: 30px; }
.form-icon {
    width: 65px; height: 65px; background: rgba(0, 102, 204, 0.1);
    color: var(--accent); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 15px;
}
.form-header h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--text-dark); margin-bottom: 5px; font-weight: 900; }
.form-header p { color: var(--text-muted); font-size: 1rem; margin: 0; }

.email-privacy-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(16, 185, 129, 0.1); color: #10b981;
    padding: 6px 14px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 800; margin-top: 0; margin-bottom: 15px;
}

.recaptcha-wrapper {
    display: flex; justify-content: center; align-items: center; 
    width: 100%; margin: 20px 0; 
    background: transparent; padding: 0; border: none;
}
.recaptcha-wrapper > div { 
    display: flex; justify-content: center; align-items: center;
    transform-origin: center; 
}

.modern-reply {
    background: linear-gradient(145deg, #ffffff, #f8fafc) !important;
    border: 2px dashed var(--border-color) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05) !important;
    padding: 25px !important;
    border-radius: 20px !important;
    margin-top: 20px;
}

.review-form-container .btn-primary:hover,
.modern-reply .btn-primary:hover {
    transform: translateY(-2px);
}

.review-replies { margin-top: 20px; margin-bottom: 15px; border-left: 3px solid var(--accent); padding-left: 20px; display: flex; flex-direction: column; gap: 15px; text-align: left; }
.reply-item { background: #f8fafc; padding: 15px 20px; border-radius: 0 16px 16px 16px; border: 1px solid var(--border-color); position: relative; }
.reply-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.reply-name { font-family: var(--font-head); font-weight: 800; color: var(--text-dark); font-size: 1rem; }
.admin-badge { background: linear-gradient(135deg, var(--accent), #00bfff); color: white; padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; display: inline-flex; align-items: center; gap: 5px; }
.reply-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; font-style: italic; }

.review-actions { display: flex; gap: 10px; justify-content: center; margin-top: 15px; }
.btn-delete-review { background: transparent; color: #ef4444; border: 2px solid rgba(239, 68, 68, 0.2); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.btn-delete-review:hover { background: #ef4444; color: white; border-color: #ef4444; }
.btn-reply { background: transparent; color: var(--accent); border: 2px solid rgba(0, 102, 204, 0.2); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.btn-reply:hover { background: var(--accent); color: white; border-color: var(--accent); }

.reply-form { margin-top: 20px; display: none; background: white; padding: 20px; border-radius: 16px; border: 2px dashed var(--border-color); text-align: left; animation: fadeInForm 0.3s ease; }
.reply-form.active { display: block; }
@keyframes fadeInForm { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.input-field { width: 100%; padding: 16px 20px; border-radius: 16px; border: 2px solid var(--border-color); background: var(--bg-white); font-family: var(--font-body); font-size: 1rem; transition: 0.3s; outline: none; margin-bottom: 15px; }
.input-field:focus { border-color: var(--accent); box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05); }
.input-field.error { border-color: #ef4444 !important; }
.error-message { color: #ef4444; font-size: 0.85rem; font-weight: 700; margin-top: -10px; margin-bottom: 15px; display: flex; align-items: center; gap: 6px; white-space: normal; overflow: hidden; text-overflow: ellipsis; max-width: 100%; animation: fadeInError 0.3s ease; }
@keyframes fadeInError { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.star-rating-input { display: flex; gap: 10px; margin-bottom: 20px; cursor: pointer; font-size: 1.8rem; color: #e2e8f0; }
.star-rating-input i.active, .star-rating-input i:hover ~ i { color: #e2e8f0; }
.star-rating-input i { color: #fbbf24; transition: 0.2s; }

.web-card { max-width: 500px; border-radius: 30px; padding: 25px; margin: 0 auto; }
.web-card .product-img { height: auto; aspect-ratio: 16/10; object-fit: cover; border-radius: 20px; margin-bottom: 20px; width: 100%; transition: 0.5s; }
.web-card:hover .product-img { transform: scale(1.03); }

.testimonials-grid { display: flex; overflow-x: auto; gap: 30px; padding: 20px 10px 30px 10px; margin-top: 40px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.testimonials-grid::-webkit-scrollbar { height: 14px; }
.testimonials-grid::-webkit-scrollbar-track { background: rgba(15, 23, 42, 0.02); border-radius: 100px; margin: 0 30px; }
.testimonials-grid::-webkit-scrollbar-thumb { background-image: linear-gradient(90deg, var(--accent) 0%, #00bfff 100%); border: 4px solid transparent; background-clip: content-box; border-radius: 100px; }
.testimonials-grid::-webkit-scrollbar-thumb:hover { background-image: linear-gradient(90deg, var(--accent-hover) 0%, var(--accent) 100%); border-width: 3px; }

.testimonial-card { min-width: 350px; flex: 0 0 auto; scroll-snap-align: center; background: var(--bg-white); padding: 40px; border-radius: 24px; border: 2px solid var(--border-color); box-shadow: var(--shadow-soft); position: relative; text-align: center; transition: 0.4s; }
.testimonial-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); transform: translateY(-8px); }
.author-avatar { width: 60px; height: 60px; background: var(--accent); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; margin: 0 auto 20px; }

.cart-sidebar { position: fixed; top: 0; right: -500px; width: 100%; max-width: 480px; height: 100vh; height: 100dvh; background: var(--glass-bg); backdrop-filter: blur(25px); box-shadow: -10px 0 50px rgba(15,23,42,0.15); z-index: 2000; transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,0.5); }
.cart-sidebar.open { right: 0; }
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(5px); z-index: 1999; opacity: 0; pointer-events: none; transition: 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-header { padding: 30px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: var(--bg-white); }
.cart-header h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--text-dark); padding-bottom: 0.2em; line-height: 1.5; margin: 0; display: flex; align-items: center; gap: 10px; }
.cart-header h2 i { color: var(--accent); }
.close-cart { background: var(--bg-light); border: 2px solid var(--border-color); width: 40px; height: 40px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; color: var(--text-dark); transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.close-cart:hover { background: #ef4444; color: white; border-color: #ef4444; transform: rotate(90deg); }
.cart-body { flex: 1; overflow-y: auto; padding: 25px; }
.cart-body::-webkit-scrollbar-track { margin: 15px 0; background: rgba(15, 23, 42, 0.02); }

.cart-item { display: flex; gap: 15px; align-items: center; background: var(--bg-white); padding: 15px; border-radius: 20px; border: 2px solid var(--border-color); margin-bottom: 15px; box-shadow: var(--shadow-soft); transition: 0.3s; }
.cart-item:hover { border-color: var(--accent); box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06); transform: translateY(-2px); }
.cart-item-img { width: 75px; height: 75px; object-fit: cover; border-radius: 12px; flex-shrink: 0; border: 2px solid var(--bg-light); }
.cart-item-info { flex-grow: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.cart-item-title { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 10px; }
.cart-item-price-qty { display: flex; align-items: center; gap: 15px; }
.cart-item-price { font-weight: 900; background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-size: 1.2rem; font-family: var(--font-head); display: inline-block; padding-bottom: 0.2em; line-height: 1.5; white-space: nowrap; }
.cart-qty-controls { display: flex; align-items: center; gap: 10px; background: var(--bg-light); padding: 4px 10px; border-radius: 10px; border: 2px solid var(--border-color); }
.cart-qty-controls button { background: none; border: none; font-size: 1.1rem; cursor: pointer; font-weight: 900; color: var(--text-dark); transition: 0.2s; outline: none; display: flex; align-items: center; justify-content: center; }
.cart-qty-controls button:hover { color: var(--accent); }
.cart-qty-controls span { font-weight: 800; font-size: 1rem; min-width: 20px; text-align: center; }
.cart-item-remove { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: none; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-remove:hover { background: #ef4444; color: white; }

.cart-footer { padding: 30px; border-top: 1px solid var(--border-color); background: var(--bg-white); box-shadow: 0 -10px 30px rgba(0,0,0,0.03); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 1rem; color: var(--text-muted); font-weight: 600; margin-bottom: 10px; }
.cart-summary-row span:last-child { color: var(--text-dark); font-weight: 800; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; margin-top: 15px; padding-top: 15px; border-top: 1px dashed var(--border-color); color: var(--text-dark); margin-bottom: 20px; }
.cart-total-row span:last-child { background: var(--title-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; font-size: 1.8rem; display: inline-block; padding-bottom: 0.2em; line-height: 1.5; }

.btn-checkout { background: linear-gradient(135deg, var(--accent), #004c99); background-size: 200% auto; color: white; width: 100%; padding: 20px; border: none; border-radius: 16px; font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; justify-content: center; gap: 10px; align-items: center; white-space: nowrap; }
.btn-checkout:hover { background-position: right center; transform: scale(1.02) translateY(-3px); }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; text-align: left; }
.contact-info-panel { background: var(--bg-light); padding: 50px; border-radius: 24px; text-align: center; }
.contact-form-panel { background: var(--bg-white); padding: 50px; border-radius: 24px; box-shadow: var(--shadow-hover); border: 2px solid var(--border-color); text-align: left; }
.service-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
.service-option input { display: none; }
.service-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 20px 15px; border: 2px solid var(--border-color); border-radius: 16px; cursor: pointer; transition: all 0.3s ease; text-align: center; font-family: var(--font-head); font-weight: 800; color: var(--text-muted); background: #f8fafc; }
.service-option input:checked + .service-card { border-color: var(--accent); background: #f0f7ff; color: var(--accent); transform: translateY(-2px); }

.legal-document { max-width: 900px; margin: 0 auto; text-align: left; }
.update-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(16, 185, 129, 0.1); color: #10b981; padding: 12px 25px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; margin-bottom: 40px; border: 2px solid rgba(16, 185, 129, 0.2); justify-content: center; width: 100%; }
.legal-card { background: var(--bg-white); border: 2px solid var(--border-color); border-radius: 24px; padding: 40px; margin-bottom: 30px; box-shadow: var(--shadow-soft); transition: 0.4s; }
.legal-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.legal-card h2 { font-family: var(--font-head); font-size: 1.4rem; color: var(--text-dark); border-bottom: 2px dashed var(--border-color); padding-bottom: 20px; margin-top: 0; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.legal-card h2 i { color: var(--accent); font-size: 1.4rem; background: var(--bg-light); width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
.legal-card p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; color: var(--text-dark); font-weight: 500; }
.legal-clause { background: #f8fafc; border-left: 4px solid var(--accent); padding: 20px 25px; border-radius: 0 8px 8px 0; margin: 25px 0; }
.legal-clause p { margin-bottom: 0; color: var(--text-dark); font-weight: 400; font-size: 1.05rem; line-height: 1.7; }
.legal-list { list-style: none; padding: 0; margin: 0 0 25px 0; }
.legal-list li { position: relative; padding-left: 30px; margin-bottom: 15px; line-height: 1.7; font-size: 1.05rem; color: var(--text-dark); font-weight: 500; }
.legal-list li::before { content: '\f0da'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--accent); }
.text-accent { color: var(--accent); }

.footer-complex { background-color: var(--footer-bg); color: var(--footer-text); padding: 100px 5% 40px; font-family: var(--font-body); text-align: left; }
.footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px; margin-bottom: 60px; }
.footer-links li { margin-bottom: 20px; }
.footer-links a { transition: 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--accent) !important; margin-left: 5px; }
.footer-info-block { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.footer-info-block i { color: var(--accent); font-size: 1.2rem; margin-top: 4px; }
.footer-info-block span.title { font-weight: 700; color: white; display: block; font-family: var(--font-head); }
.footer-info-block div span:not(.title) { white-space: nowrap; }

.cookie-banner { position: fixed; bottom: 30px; left: 50%; width: 90%; max-width: 650px; background: var(--glass-bg); backdrop-filter: blur(25px); border: 2px solid var(--border-color); border-radius: 24px; padding: 25px; box-shadow: 0 20px 50px rgba(15,23,42,0.15); z-index: 9999; display: flex; flex-direction: column; gap: 20px; transform: translate(-50%, 150%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); visibility: hidden; }
.cookie-banner.show { transform: translate(-50%, 0); visibility: visible; }

.cookie-content { display: flex; gap: 20px; align-items: flex-start; }
.cookie-icon { font-size: 2.2rem; color: var(--accent); background: rgba(0, 102, 204, 0.1); padding: 15px; border-radius: 50%; }
.cookie-text h4 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 8px; color: var(--text-dark); padding-bottom: 0.2em; line-height: 1.5; }
.cookie-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.cookie-text a { color: var(--accent); font-weight: 700; transition: 0.3s; }
.cookie-text a:hover { color: var(--accent-hover); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; width: 100%; justify-content: flex-end; align-items: center; margin-top: 5px; }
.btn-cookie-accept { background: var(--accent); color: white; border: none; font-family: var(--font-head); font-weight: 700; border-radius: 12px; padding: 12px 24px; cursor: pointer; transition: 0.3s ease; font-size: 0.95rem; }
.btn-cookie-accept:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(15, 23, 42, 0.1); }

.btn-cookie-reject { 
    background: var(--text-dark); 
    color: white; 
    border: 2px solid var(--text-dark); 
    font-family: var(--font-head); 
    font-weight: 700; 
    border-radius: 12px; 
    padding: 10px 22px; 
    cursor: pointer; 
    transition: 0.3s ease; 
    font-size: 0.95rem; 
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.btn-cookie-reject:hover, .btn-cookie-reject:active, .btn-cookie-reject:focus { 
    background: var(--accent); 
    color: white; 
    border-color: var(--accent); 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.2); 
    outline: none;
}

.btn-legal-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white !important;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0;
    box-shadow: none !important;
    outline: none !important;
    position: relative;
    cursor: pointer;
}

.btn-legal-footer i { 
    color: var(--accent); 
    font-size: 1.15rem; 
    display: flex;
    align-items: center;
}

.legal-text-anim {
    display: inline-block;
    position: relative;
    color: white;
    transition: color 0.3s ease;
}

.btn-legal-footer:hover .legal-text-anim {
    color: var(--accent); 
}

.btn-back-mobile { display: none; }

@media (min-width: 1025px) {
    .footer-col-header { cursor: default; }
    .footer-col-header i { display: none; } 
    .footer-col-header h3 { margin-bottom: 35px !important; } 
    .footer-content { max-height: none !important; opacity: 1 !important; margin-top: 0 !important; display: block; }
    .hero-visual {
        transform: translateY(30px);
    }
}

@media (max-width: 1024px) {
    .nav-pill { 
        width: 92%; max-width: 100%; justify-content: space-between; border-radius: 100px; padding: 10px 15px; top: 15px; flex-wrap: nowrap; box-sizing: border-box; background: rgba(255, 255, 255, 0.95); box-shadow: 0 15px 35px rgba(0,0,0,0.1); gap: 10px;
    }
    .nav-links { display: none; }
    .nav-logo { font-size: 1.15rem; gap: 8px; flex-shrink: 0; overflow: visible; white-space: nowrap; min-width: auto; }
    .nav-logo .main-logo { width: 30px; height: 30px; flex-shrink: 0; }
    
    .nav-actions { gap: 10px; flex-shrink: 0; display: flex; flex-wrap: nowrap; align-items: center; }
    .btn-cart-nav { background: #0f172a; padding: 8px 14px; font-size: 0.85rem; border-radius: 50px; white-space: nowrap; margin: 0; flex-shrink: 0; display: flex; gap: 6px; }
    .hamburger { display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.2rem; width: 40px; height: 40px; background: transparent; border-radius: 50%; padding: 0; margin: 0; border: 2px solid var(--accent); flex-shrink: 0; transition: 0.3s ease; box-shadow: 0 4px 10px rgba(0, 102, 204, 0.1); }
    .hamburger:active { transform: scale(0.9); }

    .section-title, .hero-text-area h1 { font-size: clamp(1.4rem, 6vw, 2.3rem) !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding-bottom: 0.25em !important; padding-top: 0.1em !important; line-height: 1.4 !important; }
    
    .multiline-title { white-space: normal !important; line-height: 1.3 !important; padding-bottom: 0.1em !important; }

    .hero-complex { grid-template-columns: 1fr; text-align: center; padding-top: 140px; }
    .hero-text-area { align-items: center; text-align: center; }
    .hero-text-area h1 { text-align: center !important; }
    .hero-text-area .section-subtitle-accent { text-align: center !important; }
    .hero-desc-box p { text-align: center; }
    .hero-buttons { justify-content: center; }
    
    .steps-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

    .contact-wrapper, .footer-grid { grid-template-columns: 1fr; }
    
    .footer-complex { padding-top: 60px; padding-bottom: 30px; }
    .footer-grid { gap: 0; }
    
    .footer-brand { text-align: center; margin-bottom: 40px; }
    .footer-brand .nav-logo { justify-content: center; margin-bottom: 15px !important;}
    .footer-brand p { margin: 0 auto; text-align: center; }

    .footer-col { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 5px 0; }
    .footer-col-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 20px 0; }
    .footer-col-header h3 { margin-bottom: 0 !important; font-size: 1.2rem !important; }
    .footer-col-header i { transition: 0.4s ease; color: white; font-size: 1rem; }
    
    .footer-content { max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease; padding-bottom: 0; }
    
    .footer-col.open .footer-content { max-height: 500px; opacity: 1; padding-bottom: 20px; padding-top: 15px; }
    .footer-col.open .footer-col-header i { transform: rotate(180deg); color: var(--accent); }

    .footer-info-block { flex-direction: row; align-items: flex-start; text-align: left; }
    .footer-links a { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .section { padding: 100px 5% 60px 5% !important; }
    .hero-complex { padding-top: 140px; }
    
    .cart-sidebar { width: 100%; right: -100%; height: 100dvh; display: flex; flex-direction: column; }
    .cart-header { padding: 20px 25px; border-bottom: 1px solid var(--border-color); }
    .cart-body { padding: 20px; overflow-x: hidden; display: flex; flex-direction: column; gap: 15px; }
    .cart-item { padding: 15px; gap: 12px; display: flex; align-items: center; background: var(--bg-white); border-radius: 16px; margin-bottom: 0; border: 1px solid var(--border-color); box-shadow: 0 4px 10px rgba(0,0,0,0.03); position: relative; }
    .cart-item-img { width: 70px; height: 70px; border-radius: 12px; flex-shrink: 0; }
    .cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; padding-right: 35px; }
    .cart-item-title { font-size: 0.95rem; line-height: 1.3; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .cart-item-price-qty { display: flex; justify-content: flex-start; gap: 15px; align-items: center; width: 100%; }
    .cart-item-price { font-size: 1.1rem; white-space: nowrap !important; display: inline-block; letter-spacing: -0.5px; }
    .cart-qty-controls { padding: 4px 10px; background: var(--bg-light); border-radius: 10px; gap: 10px; border: 1px solid var(--border-color); }
    .cart-qty-controls button { font-size: 1.2rem; }
    .cart-item-remove { position: absolute; right: 12px; top: 12px; width: 32px; height: 32px; border-radius: 10px; background: #fef2f2; color: #ef4444; display: flex; align-items: center; justify-content: center; box-shadow: none; margin: 0; }
    .cart-footer { padding: 25px; background: var(--bg-white); border-top: 1px solid var(--border-color); box-shadow: 0 -10px 20px rgba(0,0,0,0.03); border-radius: 30px 30px 0 0; margin-top: auto; }
    .cart-summary-row { margin-bottom: 12px; font-size: 1rem; }
    .cart-total-row { margin-top: 15px; padding-top: 15px; font-size: 1.3rem; margin-bottom: 20px; }
    .cart-total-row span:last-child { font-size: 1.6rem; }
    .btn-checkout { padding: 18px; border-radius: 16px; font-size: 1.05rem; }
    
    .contact-info-panel > div > div { padding: 20px 15px !important; gap: 15px !important; align-items: center !important; }
    .contact-info-panel > div > div > div:first-child { width: 50px !important; height: 50px !important; font-size: 1.4rem !important; flex-shrink: 0; }
    .contact-info-panel > div > div > div:last-child { min-width: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
    .contact-info-panel h3 { font-size: 1.1rem !important; margin-bottom: 4px !important; }
    .contact-info-panel p { word-break: normal !important; white-space: nowrap !important; font-size: clamp(0.9rem, 4vw, 1.15rem) !important; letter-spacing: 0; overflow: hidden; text-overflow: ellipsis; display: block; max-width: 100%; font-weight: 700 !important; }

    .chat-window {
        position: fixed !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        border-radius: 0 !important;
        z-index: 100000 !important;
        transform: translateY(100%) !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: flex !important;
        flex-direction: column !important;
        border: none !important;
        box-shadow: none !important;
    }
    .chat-window.open {
        transform: translateY(0) !important;
    }
    .chat-header {
        border-radius: 0 !important;
        padding: max(20px, env(safe-area-inset-top)) 25px 20px 25px !important;
    }
    .chat-input-area {
        padding-bottom: max(15px, env(safe-area-inset-bottom)) !important;
    }
    #chat-toggle-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        z-index: 9999;
    }

    .modal-content { padding: 30px 20px 20px 20px; border-radius: 20px; max-height: 90vh; }

    .steps-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 30px; }
    .step-card { padding: 40px 25px; }
    .step-number-corner { top: 20px; right: 20px; font-size: 1rem; }
    .step-icon { width: 70px; height: 70px; font-size: 1.8rem; margin-bottom: 20px; }
    .step-card h3 { font-size: 1.25rem; }

    .products-grid { flex-direction: column; align-items: center; }
    .lightbox-content { flex-direction: column; }
    .lightbox-arrow { display: none !important; }
    
    .category-filter-wrapper { margin-bottom: 35px; padding: 0 10px; }
    .category-filter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }
    .filter-btn {
        width: 100%;
        justify-content: center;
        background: var(--bg-white);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04) !important;
        padding: 16px 10px;
        font-size: 0.85rem;
        border-radius: 18px;
        margin: 0;
    }
    .filter-btn.active {
        background: linear-gradient(135deg, var(--accent), #00bfff);
        box-shadow: 0 10px 25px rgba(0, 102, 204, 0.25) !important;
        transform: translateY(-2px);
    }

    .color-badge-simple {
        width: 100%;
        padding: 16px 20px;
        border-radius: 20px;
        font-size: 0.95rem;
        box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
        margin-top: 25px;
    }

    .legal-document { padding: 10px 0; text-align: left; }
    .update-badge { font-size: 0.85rem; padding: 15px; margin-bottom: 25px; border-radius: 20px; text-align: center; line-height: 1.5; flex-direction: column; gap: 8px; }
    .legal-card { padding: 25px 20px; border-radius: 20px; margin-bottom: 20px; }
    .legal-card h2 { font-size: 1.15rem; gap: 12px; margin-bottom: 15px; padding-bottom: 15px; line-height: 1.4; align-items: flex-start; }
    .legal-card h2 i { width: 40px; height: 40px; font-size: 1.1rem; flex-shrink: 0; }
    .legal-card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px; }
    .legal-clause { padding: 15px 18px; margin: 20px 0; border-left-width: 4px; border-radius: 0 16px 16px 0; }
    .legal-clause p { font-size: 0.95rem; line-height: 1.6; }
    .legal-list { margin: 0 0 15px 0; }
    .legal-list li { font-size: 0.95rem; line-height: 1.6; margin-bottom: 12px; padding-left: 22px; }
    .legal-list li::before { font-size: 0.9rem; top: 2px; }

    .testimonial-card { min-width: 280px; }
    
    .cookie-content { flex-direction: column; align-items: center; text-align: center; } 
    .cookie-actions { justify-content: center; flex-direction: column; gap: 10px; } 
    .btn-cookie-accept { width: 100%; padding: 14px; }
    .btn-cookie-reject { width: 100%; padding: 14px; }

    .contact-info-panel, .contact-form-panel { padding: 30px 15px; }
    .service-selector { grid-template-columns: 1fr; } 

    .btn-primary, .btn-secondary, .custom-alert-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .web-card { max-width: 100%; border-radius: 24px; padding: 20px; margin-bottom: 20px; }
    .web-card .product-img { aspect-ratio: 16/9; border-radius: 16px; margin-bottom: 15px; height: auto; }
    .web-card .single-line-title { min-height: auto; margin-bottom: 10px; }
    .web-card .product-info p { padding: 0; font-size: 1.05rem; }

    #verification-step, [id^="reply-verify-"] {
        padding: 25px 15px !important;
    }
    #verify-code-input, [id^="reply-code-"] {
        font-size: 1.25rem !important;
        letter-spacing: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 14px !important;
    }
    #verification-step > div:last-child, [id^="reply-verify-"] > div:last-child {
        flex-direction: column !important;
        gap: 10px !important;
    }
    #verification-step > div:last-child button, [id^="reply-verify-"] > div:last-child button {
        width: 100% !important;
        min-width: 100% !important;
        flex: none !important;
    }
}

@media (max-width: 480px) {
    .review-form-container { padding: 30px 20px; }
    .recaptcha-wrapper { margin: 15px 0; height: 68px; }
    .recaptcha-wrapper > div { transform: scale(0.88); transform-origin: center; }
}

@media (max-width: 360px) {
    .nav-pill { padding: 8px 10px; gap: 4px; width: 98%; }
    .nav-logo { font-size: 1rem; gap: 5px; }
    .nav-logo .main-logo { width: 26px; height: 26px; }
    
    .btn-cart-nav { font-size: 0; padding: 6px 10px; gap: 0; justify-content: center; }
    .btn-cart-nav i { font-size: 1rem; margin-right: 6px; }
    .btn-cart-nav .cart-badge { font-size: 0.8rem; }
    
    .hamburger { width: 36px; height: 36px; font-size: 1.1rem; }
}

@media (max-height: 600px) and (orientation: landscape) {
    .mobile-menu {
        overflow-y: auto;
        padding: 80px 20px 40px;
        justify-content: flex-start;
    }
    .mobile-menu-container { gap: 15px; }
    .mobile-socials { margin-top: 20px; }
    
    .lightbox-content { height: 60%; }
    .lightbox-thumbnails {
        max-height: 30%;
        padding: 10px;
        margin-top: 10px;
    }
    .lightbox-thumb {
        width: 50px;
        height: 50px;
    }
}

.custom-alert-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(10px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.custom-alert-overlay.show { opacity: 1; pointer-events: all; }
.custom-alert-box { background: var(--bg-white); border-radius: 30px; padding: 40px; text-align: center; max-width: 400px; width: 90%; box-shadow: 0 25px 50px rgba(15,23,42,0.2); transform: scale(0.8) translateY(30px); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 2px solid var(--border-color); }
.custom-alert-overlay.show .custom-alert-box { transform: scale(1) translateY(0); }
.custom-icon-anim { width: 90px; height: 90px; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.custom-icon-anim.success { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.custom-icon-anim.error { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.custom-icon-anim i { opacity: 0; transform: scale(0.3) rotate(-45deg); transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s; }
.custom-alert-overlay.show .custom-icon-anim i { opacity: 1; transform: scale(1) rotate(0deg); }
.custom-alert-title { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.custom-alert-text { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 30px; }
.custom-alert-btn { background: linear-gradient(135deg, var(--accent), #0059b3); color: white; border: none; padding: 16px 35px; border-radius: 50px; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; cursor: pointer; width: 100%; transition: 0.3s; white-space: nowrap; }
.custom-alert-btn:hover { transform: translateY(-3px); }

#live-chat-widget { position: fixed; bottom: 25px; right: 25px; z-index: 9999; font-family: var(--font-body); }
#chat-toggle-btn { background: linear-gradient(135deg, var(--accent), #0059b3); color: white; border: none; width: 65px; height: 65px; border-radius: 50%; font-size: 1.8rem; cursor: pointer; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); display: flex; align-items: center; justify-content: center; }
#chat-toggle-btn:hover { transform: scale(1.1) translateY(-5px); }

.chat-window { position: absolute; bottom: 85px; right: 0; width: 350px; height: 450px; background: var(--bg-white); border-radius: 20px; box-shadow: 0 20px 50px rgba(15,23,42,0.15); border: none; display: flex; flex-direction: column; overflow: hidden; opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.95); transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.chat-window.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }

.chat-header { background: linear-gradient(135deg, var(--accent), #0059b3); color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-messages { flex: 1; padding: 15px; overflow-y: auto; background: var(--bg-light); display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 80%; padding: 12px 16px; border-radius: 18px; font-size: 0.95rem; line-height: 1.4; word-break: break-word; }

.chat-msg.user { background: var(--accent); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg.admin { background: #e2e8f0; color: var(--text-dark); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.system { background: transparent; color: var(--text-muted); align-self: center; font-size: 0.85rem; font-weight: 700; margin: 10px 0; text-align: center; }

.chat-input-area { padding: 15px; background: var(--bg-white); border-top: 1px solid var(--border-color); display: flex; gap: 10px; }
.chat-input-area input { flex: 1; padding: 12px 15px; border-radius: 50px; border: 2px solid var(--border-color); outline: none; font-family: var(--font-body); }
.chat-input-area input:focus { border-color: var(--accent); }
.chat-input-area button { background: var(--accent); color: white; border: none; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; transition: 0.2s; }
.chat-input-area button:hover { transform: scale(1.05); }

.admin-body { background: #f8fafc; margin: 0; height: 100vh; overflow: hidden !important; font-family: var(--font-body); }
.admin-login-wrapper { display: flex; height: 100vh; align-items: center; justify-content: center; background: radial-gradient(circle at top right, #e0f2fe, #f8fafc); }
.admin-login-card { background: white; padding: 50px 40px; border-radius: 30px; text-align: center; max-width: 420px; width: 90%; box-shadow: 0 25px 50px rgba(15, 23, 42, 0.05); border: 2px solid var(--border-color); }
.admin-login-icon { width: 70px; height: 70px; background: rgba(0, 102, 204, 0.1); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.admin-login-card h1 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; color: var(--text-dark); }
.admin-login-card p { color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; }
.admin-input { background: #f8fafc; border: 2px solid var(--border-color); border-radius: 16px; padding: 16px 20px; font-size: 1.05rem; }
.admin-input:focus { background: white; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05); }

.admin-error-box { background: #fef2f2; border: 2.5px solid #ef4444; color: #ef4444; padding: 12px; border-radius: 12px; margin-top: 15px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 0.95rem; animation: shakeError 0.4s ease; }
.admin-back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 25px; color: var(--text-muted); font-size: 0.95rem; font-weight: 600; transition: 0.2s; }
.admin-back-link:hover { color: var(--text-dark); }

.admin-dashboard-wrapper { display: flex; height: 100vh; background: #f4f6f9; overflow: hidden; }
.admin-sidebar { width: 350px; background: white; border-right: 1px solid var(--border-color); display: flex; flex-direction: column; z-index: 10; box-shadow: 2px 0 15px rgba(0,0,0,0.03); flex-shrink: 0; overflow: hidden; }
.admin-logo { padding: 25px 30px; display: flex; align-items: center; gap: 15px; font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; color: var(--text-dark); }
.admin-sidebar-title { padding: 10px 30px; font-size: 0.75rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.admin-chat-list { flex: 1; overflow-y: auto; padding: 10px 15px; display: flex; flex-direction: column; gap: 8px; }
.admin-chat-list::-webkit-scrollbar { width: 6px; }
.admin-chat-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }

.admin-user-card { padding: 16px 20px; border-radius: 16px; cursor: pointer; transition: 0.2s; border: 2px solid var(--border-color); display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 15px; }
.admin-user-card:hover { background: #f8fafc; border-color: var(--text-muted); }
.admin-user-card.active { background: var(--accent); border-color: var(--accent); }
.admin-user-card .header { font-family: var(--font-head); font-weight: 800; color: var(--text-dark); white-space: nowrap; flex-shrink: 0; }
.admin-user-card.active .header { color: white; }
.admin-user-card .preview { color: var(--text-muted); font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: right; flex-grow: 1; }
.admin-user-card.active .preview { color: rgba(255,255,255,0.8); }

.admin-sidebar-footer { padding: 20px; border-top: 2px solid var(--border-color); display: flex; gap: 10px; background: white; }
.admin-btn-outline { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border: 2px solid var(--border-color); border-radius: 12px; font-weight: 700; color: var(--text-dark); transition: 0.2s; }
.admin-btn-outline:hover { background: #f8fafc; border-color: var(--text-muted); }
.admin-btn-logout { background: #fff1f2; color: #e11d48; border: none; padding: 12px 20px; border-radius: 12px; cursor: pointer; font-size: 1.1rem; transition: 0.2s; }
.admin-btn-logout:hover { background: #ffe4e6; }

.admin-main-content { flex: 1; display: flex; flex-direction: column; background: #eef2f6; position: relative; min-width: 0; overflow: hidden; }
.admin-header { padding: 20px 30px; background: white; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.02); z-index: 5; flex-shrink: 0; }
.admin-header-info { display: flex; align-items: center; gap: 15px; }
.admin-header h2 { font-family: var(--font-head); margin: 0; font-size: 1.4rem; color: var(--text-dark); }
.admin-status-badge { background: #dcfce7; color: #166534; padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: 800; display: flex; align-items: center; gap: 6px; }
.admin-status-badge::before { content: ''; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3); }

.btn-clear-chat { background: white; color: #ef4444; border: 2px solid var(--border-color); padding: 10px 20px; border-radius: 50px; font-weight: 700; font-family: var(--font-body); cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 8px; }
.btn-clear-chat:hover { background: #ef4444; color: white; border-color: #ef4444; }

.admin-chat-container { flex: 1; display: flex; flex-direction: column; gap: 0; padding: 0; overflow: hidden; }
.admin-chat-box { flex: 1; padding: 30px 40px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; background: transparent; border: none; border-radius: 0; box-shadow: none; }

.admin-chat-input-area { 
    padding: 20px 40px; 
    background: white; 
    border: none; 
    border-top: 1px solid var(--border-color); 
    border-radius: 0; 
    display: flex; 
    gap: 20px; 
    align-items: center; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.02); 
    z-index: 5; 
    flex-shrink: 0; 
}
.admin-chat-input-area textarea { 
    flex: 1; 
    padding: 14px 20px; 
    border-radius: 28px; 
    border: 2px solid var(--border-color); 
    outline: none; 
    font-family: var(--font-body); 
    font-size: 1.05rem; 
    transition: 0.2s; 
    resize: none; 
    height: 56px; 
    min-height: 56px; 
    max-height: 56px; 
    line-height: 24px; 
    background: #f8fafc; 
    margin: 0; 
    overflow: hidden; 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.admin-chat-input-area textarea::-webkit-scrollbar { display: none; }
.admin-chat-input-area textarea:focus { border-color: var(--accent); background: white; box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05); }

.admin-empty-state { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); opacity: 1; text-align: center; padding: 20px; }
.admin-empty-state i { font-size: 3rem; margin-bottom: 20px; color: var(--accent); background: rgba(0, 102, 204, 0.1); width: 85px; height: 85px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: inset 0 2px 10px rgba(0,0,0,0.05); }
.admin-empty-state p { font-size: 1.15rem; font-weight: 800; font-family: var(--font-head); line-height: 1.5; max-width: 280px; margin: 0 auto; color: var(--text-dark); }

.btn-send-msg { background: linear-gradient(135deg, var(--accent), #0059b3); color: white; border: none; width: 56px; height: 56px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: 0.2s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 20px rgba(0,102,204,0.2); margin: 0; }
.btn-send-msg:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 25px rgba(0,102,204,0.3); }

.admin-chat-box .chat-msg { max-width: 65%; padding: 12px 18px; font-size: 1.05rem; border-radius: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.admin-chat-box .chat-msg.admin { background: linear-gradient(135deg, var(--accent), #0059b3); color: white; align-self: flex-end; border-bottom-right-radius: 6px; }
.admin-chat-box .chat-msg.user { background: white; color: var(--text-dark); align-self: flex-start; border-bottom-left-radius: 6px; border: 2px solid var(--border-color); }

@media (max-width: 768px) {
    .admin-dashboard-wrapper { display: flex; flex-direction: column; height: 100vh; height: 100dvh; overflow: hidden; background: white; }
    
    .admin-sidebar { width: 100%; height: 100%; flex: 1; border: none; display: flex; flex-direction: column; flex-shrink: 1; overflow: hidden; }
    .admin-main-content { display: none; width: 100%; height: 100%; flex: 1; flex-direction: column; overflow: hidden; }
    
    .admin-dashboard-wrapper.chat-active .admin-sidebar { display: none !important; }
    .admin-dashboard-wrapper.chat-active .admin-main-content { display: flex !important; }
    
    .btn-back-mobile { display: flex; background: rgba(0, 102, 204, 0.1); color: var(--accent); border: none; width: 40px; height: 40px; border-radius: 12px; font-size: 1.2rem; align-items: center; justify-content: center; margin-right: 12px; cursor: pointer; flex-shrink: 0; }
    .hide-on-mobile { display: none !important; }
    
    .admin-header { padding: 10px 15px; flex-wrap: nowrap; gap: 10px; align-items: center; border-bottom: 1px solid var(--border-color); min-height: 65px; flex-shrink: 0; }
    .admin-header-info { display: flex; align-items: center; min-width: 0; flex: 1; }
    .admin-header h2 { font-size: 1.1rem; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; display: flex; align-items: center; }
    
    .btn-clear-chat { padding: 0; width: 40px; height: 40px; justify-content: center; border-radius: 12px; flex-shrink: 0; }
    .btn-clear-chat i { margin: 0; }
    
    .admin-chat-container { padding: 0; gap: 0; flex: 1; display: flex; flex-direction: column; overflow: hidden; }
    .admin-chat-box { padding: 15px; flex: 1; overflow-y: auto; }
    .admin-chat-box .chat-msg { max-width: 85%; font-size: 1rem; padding: 10px 15px; margin-bottom: 5px; }
    
    .admin-chat-input-area { padding: 10px 15px; gap: 10px; align-items: center; border-top: 1px solid var(--border-color); flex-shrink: 0; background: white; padding-bottom: max(10px, env(safe-area-inset-bottom)); }
    .admin-chat-input-area textarea { padding: 12px 15px; font-size: 16px; height: 48px; min-height: 48px; max-height: 48px; border-radius: 24px; line-height: 20px; margin: 0; overflow: hidden; }
    .btn-send-msg { width: 48px; height: 48px; font-size: 1.1rem; border-radius: 50%; flex-shrink: 0; box-shadow: none; margin: 0; }

    .admin-logo { padding: 15px 20px; font-size: 1.2rem; border-bottom: 1px solid var(--border-color); }
    .admin-sidebar-title { padding: 15px 20px 5px; }
    .admin-chat-list { padding: 10px 15px; flex: 1; overflow-y: auto; }
    .admin-sidebar-footer { padding: 15px; border-top: 1px solid var(--border-color); flex-shrink: 0; }
}