/* ============== VARIABLES & ROOT ============== */
:root {
    --bg-dark: #07090e;
    --bg-surface: #0f1320;
    --text-main: #f8f9fa;
    --text-muted: #8892a4;
    --accent-orange: #ff5722;
    --accent-yellow: #ffc107;
    --accent-blue: #4facfe;
    --accent-purple: #9c27b0;
    --grad-primary: linear-gradient(135deg, #ff5722 0%, #ffc107 100%);
    --grad-secondary: linear-gradient(135deg, #9c27b0 0%, #e91e63 100%);
    --glass-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ============== RESET ============== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255,87,34,0.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(156,39,176,0.07) 0%, transparent 50%);
    background-attachment: fixed;
}
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============== UTILITIES ============== */
.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.highlight { color: var(--accent-orange); font-weight: 700; }
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 15px; }

/* ============== ANIMATIONS ============== */
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
    0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,87,34,0.5); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 12px rgba(255,87,34,0); }
}
.pulse-anim { animation: pulse 2.5s infinite; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.float-anim { animation: float 5s ease-in-out infinite; }

@keyframes wobble {
    0%,100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.04) rotate(-2deg); }
    75% { transform: scale(1.04) rotate(2deg); }
}
.wobble-anim { animation: wobble 3s infinite; }

@keyframes wu-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}
.float-pulse { animation: wu-pulse 2.5s infinite; }

/* ============== ANNOUNCEMENT BAR ============== */
.announcement-bar {
    background: var(--grad-primary);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

/* ============== PRIMARY NAVBAR ============== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    background: rgba(7,9,14,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    gap: 20px;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.navbar-logo .logo-icon {
    width: 36px; height: 36px;
    background: var(--grad-primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.navbar-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
}
.navbar-logo .logo-text span { color: var(--accent-orange); }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}
.navbar-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.navbar-nav a:hover, .navbar-nav a.active-link {
    color: #fff;
    background: rgba(255,255,255,0.06);
}
.navbar-nav a.app-link {
    background: var(--grad-primary);
    color: #fff !important;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.nav-social-icon {
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: color 0.2s, transform 0.2s;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
}
.nav-social-icon:hover { color: var(--accent-orange); transform: translateY(-2px); background: rgba(255,255,255,0.08); }

.navbar-timer {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,87,34,0.1);
    border: 1px solid rgba(255,87,34,0.2);
    border-radius: 10px;
    padding: 5px 10px;
}
.navbar-timer .t-block {
    display: flex; flex-direction: column; align-items: center;
    min-width: 28px;
}
.navbar-timer .t-block span {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1;
}
.navbar-timer .t-block small {
    font-size: 0.5rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.navbar-timer .t-sep { color: var(--accent-orange); font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* ============== SECONDARY CATEGORY BAR ============== */
.category-bar {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 5px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    white-space: nowrap;
}
.category-bar::-webkit-scrollbar { display: none; }
.category-bar a {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 13px 16px;
    transition: color 0.2s, border-bottom 0.2s;
    border-bottom: 2px solid transparent;
    display: inline-block;
    white-space: nowrap;
}
.category-bar a:hover { color: #fff; }
.category-bar a.active-cat, .category-bar a:focus { color: var(--accent-orange); border-bottom-color: var(--accent-orange); }

/* ============== HERO ============== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 8%;
    max-width: 1300px;
    margin: 0 auto;
}
.hero-content { flex: 1; }
.badge {
    display: inline-block;
    padding: 7px 16px;
    background: rgba(255,87,34,0.12);
    color: var(--accent-orange);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.82rem;
    margin-bottom: 22px;
    border: 1px solid rgba(255,87,34,0.25);
    letter-spacing: 0.3px;
}
.hero h1 { font-size: 3.8rem; font-weight: 800; margin-bottom: 20px; }
.hero .subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.75; }
.pricing-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border-left: 3px solid var(--accent-orange);
}
.discount-tag {
    background: var(--accent-orange);
    color: #fff;
    padding: 5px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.cta-button {
    display: block;
    background: var(--grad-primary);
    color: #fff;
    text-align: center;
    padding: 18px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(255,87,34,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
    margin-bottom: 18px;
}
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(255,87,34,0.55); }
.cta-primary { display: block; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; letter-spacing: 0.5px; }
.cta-secondary { display: block; font-size: 0.82rem; opacity: 0.88; margin-top: 4px; }
.scarcity-text { font-size: 0.9rem; text-align: center; }
.red-text { color: #ff5252; font-weight: 700; text-shadow: 0 0 12px rgba(255,82,82,0.5); font-size: 1rem; margin-top: 12px; }
.yellow-marker { background: #ffeb3b; color: #000; padding: 1px 6px; font-weight: 900; border-radius: 3px; }
.hero-image-wrapper { flex: 1; position: relative; display: flex; justify-content: center; }
.hero-image { width: 100%; max-width: 480px; border-radius: 20px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); position: relative; z-index: 2; }
.overlay-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70%; height: 70%; background: var(--accent-purple); filter: blur(80px); opacity: 0.25; z-index: 1; border-radius: 50%; }

/* ============== TRUST BAR ============== */
.trust-bar {
    background: var(--bg-surface);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 18px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}
.trust-item i { color: var(--accent-orange); font-size: 1rem; }
.trust-item strong { color: #fff; }

/* ============== STORE SECTION ============== */
.store-section { padding: 70px 5%; max-width: 1300px; margin: 0 auto; }
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

/* ============== PRODUCT CARD ============== */
.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(255,87,34,0.35);
}
.product-img-wrapper { width: 100%; height: 220px; overflow: hidden; position: relative; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease, opacity 0.5s ease; position: relative; z-index: 1; }
.product-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0; transition: opacity 0.4s ease;
    z-index: 2; pointer-events: none;
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-card:hover .product-video { opacity: 1; }
.cat-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(7,9,14,0.85);
    color: var(--accent-orange);
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255,87,34,0.3);
    backdrop-filter: blur(8px);
    z-index: 5;
}
.sale-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: #ff1744;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 5;
}
.product-content { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #fff; line-height: 1.3; }
.product-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; flex: 1; line-height: 1.6; }
.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.25);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}
.p-old { color: var(--text-muted); text-decoration: line-through; font-size: 0.95rem; }
.p-new { color: var(--accent-blue); font-size: 1.7rem; font-weight: 800; font-family: var(--font-heading); }
.p-discount { background: rgba(255,87,34,0.15); color: var(--accent-orange); font-size: 0.75rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--grad-primary);
    color: #fff;
    text-align: center;
    padding: 13px 18px;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.buy-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,87,34,0.4); }

/* ============== FAQ ============== */
.faq-section { padding: 60px 40px; max-width: 860px; margin: 60px auto; }
.faq-accordion { margin-top: 35px; }
.faq-item { border-bottom: 1px solid var(--glass-border); }
.faq-question {
    width: 100%; background: none; border: none; color: #fff;
    font-family: var(--font-heading); font-size: 1.05rem; font-weight: 500;
    text-align: left; padding: 20px 10px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: color 0.25s;
}
.faq-question:hover { color: var(--accent-orange); }
.faq-question .icon { font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 10px; color: var(--text-muted); }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 10px 20px; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--accent-orange); }

/* ============== COMMUNITY SECTION ============== */
.community-section { padding: 70px 5%; max-width: 900px; margin: 0 auto; text-align: center; }
.community-panel {
    background: linear-gradient(145deg, rgba(255,87,34,0.08) 0%, rgba(156,39,176,0.08) 100%);
    border: 1px solid rgba(255,87,34,0.15);
    padding: 55px 40px;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}
.community-panel h2 { font-size: 2.2rem; margin-bottom: 15px; }
.community-panel p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.community-buttons { display: flex; flex-direction: column; gap: 14px; margin-top: 35px; max-width: 380px; margin-left: auto; margin-right: auto; }
.community-btn {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff; padding: 15px 22px; border-radius: 14px;
    font-size: 1rem; font-weight: 600; transition: all 0.25s;
}
.community-btn:hover { background: rgba(255,255,255,0.09); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.community-btn i { font-size: 1.3rem; }
.community-btn.instagram { border-color: rgba(225,48,108,0.3); }
.community-btn.instagram:hover { background: rgba(225,48,108,0.1); }
.community-btn.telegram { border-color: rgba(0,136,204,0.3); }
.community-btn.telegram:hover { background: rgba(0,136,204,0.1); }
.community-btn.whatsapp { border-color: rgba(37,211,102,0.3); }
.community-btn.whatsapp:hover { background: rgba(37,211,102,0.1); }
.community-btn.youtube { border-color: rgba(255,0,0,0.3); }
.community-btn.youtube:hover { background: rgba(255,0,0,0.1); }
.community-btn.facebook { border-color: rgba(24,119,242,0.3); }
.community-btn.facebook:hover { background: rgba(24,119,242,0.1); }

/* ============== FOOTER ============== */
footer { padding: 45px 5%; border-top: 1px solid var(--glass-border); margin-top: 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer-links { display: flex; justify-content: center; gap: 25px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.85rem; transition: color 0.25s; }
.footer-links a:hover { color: var(--accent-orange); }
.disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.25); max-width: 750px; text-align: center; line-height: 1.6; }

/* ============== WHATSAPP FLOAT ============== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25d366; color: #fff; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 8px 25px rgba(37,211,102,0.7); }

/* ============== SALES POPUP ============== */
.sales-popup {
    position: fixed; bottom: 28px; left: -380px;
    width: 300px;
    background: rgba(15,19,32,0.97);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--accent-orange);
    border-radius: 14px; padding: 14px 16px;
    display: flex; gap: 12px;
    z-index: 998;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    transition: left 0.5s cubic-bezier(0.68,-0.55,0.27,1.55), opacity 0.5s ease;
    opacity: 0;
}
.sales-popup.show { left: 20px; opacity: 1; }
.sp-content { flex: 1; }
.sp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.sp-name { font-weight: 700; font-size: 0.9rem; }
.sp-verified { font-size: 0.72rem; color: #25d366; font-weight: 600; }
.sp-action { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.sp-action .highlight { color: var(--accent-blue); }
.sp-time { font-size: 0.72rem; color: var(--text-muted); opacity: 0.7; }
.sp-close { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; padding: 0 4px; }
.sp-close:hover { color: #fff; }

/* ============== COUNTDOWN (standalone) ============== */
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.time-block { display: flex; flex-direction: column; align-items: center; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; padding: 5px 12px; min-width: 56px; }
.time-block span { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--accent-yellow); }
.time-block small { font-size: 0.58rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }
.time-separator { font-size: 1.3rem; font-weight: bold; color: var(--text-muted); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
    .navbar-nav { gap: 4px; }
    .navbar-nav a { padding: 6px 10px; font-size: 0.85rem; }
}

@media (max-width: 768px) {
    .navbar-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(7,9,14,0.98); border-bottom: 1px solid var(--glass-border); padding: 15px 5%; gap: 5px; }
    .navbar-nav.open { display: flex; }
    .navbar-nav a { padding: 12px 10px; border-radius: 8px; }
    .hamburger { display: flex; }
    .hero { flex-direction: column; text-align: center; padding: 50px 5%; }
    .hero h1 { font-size: 2.4rem; }
    .hero-image { max-width: 100%; }
    .trust-bar { gap: 20px; }
    .store-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .product-title { font-size: 1.05rem; }
    .p-new { font-size: 1.4rem; }
    .community-panel { padding: 35px 25px; }
}

@media (max-width: 480px) {
    .store-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2rem; }
    .trust-bar { display: none; }
    .category-bar a { padding: 12px 12px; font-size: 0.82rem; }
    .sales-popup { width: 260px; }
    .announcement-bar { font-size: 0.8rem; }
}

/* ============== FREE GIFT MODAL & FLOAT ============== */
.gift-float {
    position: fixed; bottom: 28px; right: 28px;
    height: 50px;
    padding: 0 18px;
    width: auto;
    border-radius: 50px;
    background: var(--grad-primary); color: #fff;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(255,87,34,0.5);
    z-index: 999; cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gift-float i { font-size: 1.3rem; }
.gift-float-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.gift-float:hover { transform: scale(1.06) translateY(-4px); box-shadow: 0 8px 25px rgba(255,87,34,0.7); }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    z-index: 10000; display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.modal-overlay.show { display: flex; opacity: 1; }

.gift-modal {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 40px;
    max-width: 450px; width: 90%; text-align: center;
    position: relative;
    transform: translateY(30px); transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-overlay.show .gift-modal { transform: translateY(0); }
.close-modal {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; color: var(--text-muted);
    font-size: 2rem; cursor: pointer; transition: color 0.2s;
    line-height: 1;
}
.close-modal:hover { color: #fff; }

.gift-modal h2 { font-size: 2rem; margin-bottom: 10px; }
.gift-modal p { color: var(--text-muted); margin-bottom: 25px; line-height: 1.6; font-size: 0.95rem; }

.gift-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 20px; border-radius: 12px;
    font-weight: 700; font-size: 1.05rem; color: #fff;
    margin-bottom: 15px; text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.gift-btn:hover { transform: translateY(-2px); opacity: 0.9; color: #fff; }
.btn-wa { background: #25d366; }
.btn-tg { background: #0088cc; }

@media (max-width: 768px) {
    .gift-float { bottom: 90px; right: 16px; height: 44px; padding: 0 14px; }
    .gift-float i { font-size: 1.1rem; }
    .gift-float-text { font-size: 0.85rem; }
    .gift-modal { padding: 30px 20px; }
    .gift-modal h2 { font-size: 1.8rem; }
}
