/* ==========================================================================
   FRESHTOUCH RESTAURANT — STYLESHEET
   Built by Amen Creative (amencreativedesigns.com)
   File: styles.css
   ========================================================================== */

:root {
  --green:#1a4a35;--green-mid:#2d6e52;--green-light:#3d8a67;
  --cream:#f7f3ec;--warm-white:#fdfaf5;--gold:#c8a84b;
  --text-dark:#1a1a14;--text-mid:#5a5a4a;
  --card-bg:#ffffff;--border:rgba(26,74,53,0.1);
  --footer-nav-h: 68px;
  --banner-h: 0px; /* set dynamically by JS when a banner is active */
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{background:var(--warm-white);color:var(--text-dark);font-family:'DM Sans',sans-serif;overflow-x:hidden;padding-bottom:var(--footer-nav-h)}

/* ==========================================================================
   TOP ANNOUNCEMENT BANNER (events / specials / wedding weeks)
   Controlled entirely from data.js — ANNOUNCEMENTS array
   ========================================================================== */
#announcement-bar{
  display:none; /* JS sets to flex when there's an active announcement */
  position:sticky;top:0;z-index:120;
  width:100%;overflow:hidden;
}
#announcement-bar.visible{display:flex}
.announce-track{
  display:flex;align-items:center;gap:14px;
  width:100%;padding:10px 18px;
  font-size:12.5px;font-weight:500;letter-spacing:.3px;
  color:var(--green);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.announce-icon{flex-shrink:0;width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.announce-text{flex:1;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.announce-text b{font-weight:700}
.announce-close{
  flex-shrink:0;background:rgba(0,0,0,.08);border:none;border-radius:50%;
  width:22px;height:22px;display:flex;align-items:center;justify-content:center;
  cursor:pointer;color:inherit;opacity:.6;transition:opacity .15s
}
.announce-close:hover{opacity:1}
.announce-close svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2.4;stroke-linecap:round}

/* theme variants — set via data-type on #announcement-bar */
#announcement-bar[data-type="event"]{background:var(--gold)}
#announcement-bar[data-type="offer"]{background:#e9c873}
#announcement-bar[data-type="wedding"]{background:linear-gradient(90deg,#f3d9e0,#e9c873)}

/* HERO */
.hero{
  min-height:100vh;
  background:
    linear-gradient(rgba(26,74,53,.78), rgba(26,74,53,.78)),
    url('images/logo/logo.png') center/cover no-repeat,
    var(--green);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  position:relative;overflow:hidden;padding:60px 20px;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 85%,rgba(200,168,75,.1) 0%,transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 15%,rgba(61,138,103,.18) 0%,transparent 55%);
  pointer-events:none;
}
.hero-rings{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center}
.hero-ring{position:absolute;border-radius:50%;border:1px solid rgba(200,168,75,.2)}
.hero-ring-1{width:360px;height:360px;animation:spin-slow 30s linear infinite}
.hero-ring-2{width:420px;height:420px;animation:spin-slow 45s linear infinite reverse;border-color:rgba(200,168,75,.1)}
.hero-ring-3{width:480px;height:480px;border-color:rgba(200,168,75,.05)}
@keyframes spin-slow{to{transform:rotate(360deg)}}
.hero-badge{
  width:320px;height:320px;border-radius:50%;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(200,168,75,.35);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  position:relative;z-index:1;overflow:hidden;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03), 0 18px 45px rgba(0,0,0,.18);
}

/* Logo image (client will drop their own file in images/logo/logo.png) */
.hero-logo-img{width:76%;height:76%;object-fit:contain;display:none}
.hero-logo-img.loaded{display:block}
.hero-ft{font-family:'Playfair Display',serif;font-size:80px;font-weight:900;color:var(--cream);line-height:1}
.hero-name{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:300;color:var(--gold);letter-spacing:8px;text-transform:uppercase;margin-top:4px}
.hero-tag{font-size:11px;color:rgba(247,243,236,.4);letter-spacing:3px;text-transform:uppercase;margin-top:8px}
.hero-scroll{position:absolute;bottom:40px;display:flex;flex-direction:column;align-items:center;gap:8px}
.hero-scroll span{font-size:10px;letter-spacing:3px;text-transform:uppercase;color:rgba(247,243,236,.3)}
.hero-scroll-line{width:1px;height:40px;background:linear-gradient(to bottom,rgba(200,168,75,.5),transparent);animation:scroll-pulse 2s ease-in-out infinite}
@keyframes scroll-pulse{0%,100%{opacity:.3}50%{opacity:1}}

/* HERO SOCIAL ICONS */
.hero-socials{position:relative;z-index:2;display:flex;gap:14px;margin-top:28px}
.hero-socials a{
  width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.06);border:1px solid rgba(200,168,75,.3);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);transition:background .2s,transform .2s,border-color .2s;
}
.hero-socials a:hover{background:rgba(200,168,75,.18);transform:translateY(-2px);border-color:var(--gold)}
.hero-socials svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.hero-socials a.tiktok svg,.hero-socials a.youtube svg{fill:currentColor;stroke:none}

/* TOP NAV */
.nav{position:sticky;top:var(--banner-h, 0px);z-index:100;background:var(--green);border-bottom:1px solid rgba(200,168,75,.18);display:flex;overflow-x:auto;scrollbar-width:none}
.nav::-webkit-scrollbar{display:none}
.nav a{display:inline-flex;align-items:center;gap:6px;padding:16px 20px;font-size:11px;font-weight:500;letter-spacing:2px;text-transform:uppercase;color:rgba(247,243,236,.45);text-decoration:none;white-space:nowrap;border-bottom:2px solid transparent;transition:color .2s,border-color .2s}
.nav a:hover,.nav a.active{color:var(--gold);border-bottom-color:var(--gold)}
.nav a .dot{width:5px;height:5px;border-radius:50%;background:currentColor;flex-shrink:0}

/* SECTION */
.section{max-width:1100px;margin:0 auto;padding:80px 24px 70px}
.section-alt{background:var(--cream)}
.section-header{text-align:center;margin-bottom:60px;position:relative}
.section-header::after{content:'';display:block;width:60px;height:2px;background:var(--gold);margin:20px auto 0}
.section-eyebrow{font-size:11px;letter-spacing:4px;text-transform:uppercase;color:var(--gold);font-weight:500;margin-bottom:10px}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(38px,6vw,56px);font-weight:900;color:var(--green);line-height:1;letter-spacing:-1px}
.section-title em{font-style:italic;color:var(--green-mid)}

/* FEATURED STRIP (events / wedding packages shown in first section of page) */
.featured-strip{max-width:1100px;margin:0 auto;padding:50px 24px 10px}
.featured-strip-inner{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:18px}
.feature-banner-card{
  border-radius:18px;overflow:hidden;position:relative;
  background:linear-gradient(135deg,var(--green),var(--green-mid));
  padding:26px 24px;min-height:160px;display:flex;flex-direction:column;justify-content:flex-end;
  border:1px solid rgba(200,168,75,.25);
}
.feature-banner-card.offer{background:linear-gradient(135deg,#2d6e52,#1a4a35)}
.feature-banner-card.wedding{background:linear-gradient(135deg,#4a2d3d,#6b3f52)}
.feature-banner-card .fb-tag{
  display:inline-flex;align-self:flex-start;font-size:10px;letter-spacing:1.5px;text-transform:uppercase;
  background:var(--gold);color:var(--green);padding:4px 10px;border-radius:20px;margin-bottom:12px;font-weight:600
}
.feature-banner-card .fb-title{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:var(--cream);line-height:1.25}
.feature-banner-card .fb-sub{font-size:12.5px;color:rgba(247,243,236,.65);margin-top:6px;line-height:1.5}
.feature-banner-card img.fb-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.22;z-index:0}
.feature-banner-card>*{position:relative;z-index:1}

/* GRID */
.cards-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:20px}
.cards-grid.two-col{grid-template-columns:repeat(auto-fill,minmax(340px,1fr))}

/* FOOD CARD */
.food-card{background:var(--card-bg);border-radius:16px;overflow:hidden;border:1px solid var(--border);transition:transform .25s ease,box-shadow .25s ease,border-color .2s;position:relative}
.food-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px rgba(26,74,53,.12)}
.food-card.featured{border-color:var(--gold)}
.food-card.in-order{border-color:var(--green-light) !important;box-shadow:0 0 0 2px rgba(61,138,103,.2)}

.card-image{width:100%;height:200px;overflow:hidden;position:relative;background:linear-gradient(135deg,#e8f0eb,#d4e6da);flex-shrink:0}
.card-image img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;display:block}
.food-card:hover .card-image img{transform:scale(1.05)}
.img-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column;gap:8px;color:var(--green-mid);font-size:12px;letter-spacing:1px}
.img-placeholder svg{width:40px;height:40px;opacity:.5}
.special-tag{position:absolute;top:12px;left:12px;background:var(--gold);color:var(--green);font-size:10px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;padding:4px 10px;border-radius:20px;z-index:2}

.card-body{padding:18px 20px 20px}
.card-name{font-family:'Playfair Display',serif;font-size:17px;font-weight:700;color:var(--text-dark);line-height:1.3;margin-bottom:4px}
.card-amharic{font-size:13px;color:var(--green-mid);margin-bottom:6px}
.card-desc{font-size:12px;color:var(--text-mid);line-height:1.6;margin-bottom:12px;font-style:italic}

.card-footer{display:flex;align-items:center;justify-content:space-between;padding-top:14px;border-top:1px solid var(--border);gap:10px}
.card-price-wrap{flex-shrink:0}
.card-price{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:600;color:var(--green)}
.card-birr{font-size:11px;font-family:'DM Sans',sans-serif;color:var(--text-mid);margin-left:3px}
.card-label{display:flex;align-items:center;gap:5px;font-size:10px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-mid);margin-top:4px}
.card-label svg{width:13px;height:13px;stroke:var(--gold);fill:none;stroke-width:1.5;flex-shrink:0}
.food-card.featured .card-label{color:var(--gold)}

/* ADD TO ORDER */
.card-order-ctrl{flex-shrink:0}
.add-btn{
  display:flex;align-items:center;gap:6px;
  background:var(--green);color:var(--cream);
  border:none;border-radius:22px;
  padding:8px 15px;font-size:11px;font-weight:500;letter-spacing:1px;text-transform:uppercase;
  cursor:pointer;transition:background .2s,transform .15s;font-family:'DM Sans',sans-serif;
  white-space:nowrap;
}
.add-btn:hover{background:var(--green-mid);transform:scale(1.05)}
.add-btn svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.2;stroke-linecap:round}
.qty-ctrl{display:none;align-items:center;background:var(--green);border-radius:22px;overflow:hidden}
.card-order-ctrl.has-qty .add-btn{display:none}
.card-order-ctrl.has-qty .qty-ctrl{display:flex}
.qty-btn{background:none;border:none;color:var(--cream);width:32px;height:32px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:17px;font-weight:700;transition:background .15s;font-family:'DM Sans',sans-serif}
.qty-btn:hover{background:rgba(255,255,255,.15)}
.qty-num{color:var(--gold);font-weight:700;font-size:15px;min-width:24px;text-align:center;font-family:'Cormorant Garamond',serif}

/* DIVIDER */
.divider{max-width:1100px;margin:0 auto;padding:0 24px}
.divider-line{height:1px;background:linear-gradient(to right,transparent,rgba(26,74,53,.15),transparent)}

/* PAGE FOOTER */
footer.page-footer{background:var(--green);padding:60px 24px;text-align:center}
footer.page-footer .ft{font-family:'Playfair Display',serif;font-size:42px;font-weight:900;color:var(--cream)}
footer.page-footer .sub{font-family:'Cormorant Garamond',serif;font-size:16px;color:var(--gold);letter-spacing:5px;text-transform:uppercase;margin-top:6px}
footer.page-footer .vat{margin-top:28px;font-size:11px;color:rgba(247,243,236,.3);letter-spacing:2px;text-transform:uppercase}

/* FOOTER SOCIAL ICONS */
.footer-socials{display:flex;justify-content:center;gap:16px;margin-top:30px}
.footer-socials a{
  width:40px;height:40px;border-radius:50%;
  background:rgba(255,255,255,.06);border:1px solid rgba(200,168,75,.3);
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);transition:background .2s,transform .2s,border-color .2s;
}
.footer-socials a:hover{background:rgba(200,168,75,.18);transform:translateY(-2px);border-color:var(--gold)}
.footer-socials svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.footer-socials a.tiktok svg,.footer-socials a.youtube svg{fill:currentColor;stroke:none}

/* BOTTOM NAV */
.bottom-nav{
  position:fixed;bottom:0;left:0;right:0;
  height:var(--footer-nav-h);
  background:var(--green);
  border-top:1px solid rgba(200,168,75,.22);
  display:flex;align-items:stretch;z-index:200;
  box-shadow:0 -4px 24px rgba(0,0,0,.18);
}
.bottom-nav a{
  flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:5px;text-decoration:none;color:rgba(247,243,236,.4);
  font-size:9.5px;font-weight:500;letter-spacing:1.5px;text-transform:uppercase;
  transition:color .2s,transform .15s;padding:10px 4px 8px;position:relative;
}
.bottom-nav a::before{
  content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:0;height:2px;background:var(--gold);border-radius:0 0 2px 2px;transition:width .25s ease;
}
.bottom-nav a:hover,.bottom-nav a.active{color:var(--gold)}
.bottom-nav a:hover::before,.bottom-nav a.active::before{width:36px}
.bottom-nav a svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.nav-icon-wrap{position:relative;display:inline-flex}
.order-badge{
  position:absolute;top:-7px;right:-9px;
  background:var(--gold);color:var(--green);
  font-size:9px;font-weight:800;line-height:1;
  padding:3px 5px;border-radius:10px;
  display:none;font-family:'DM Sans',sans-serif;min-width:18px;text-align:center;
}
.order-badge.visible{display:block}

@media(max-width:600px){
  .cards-grid{grid-template-columns:1fr}
  .hero-ring-1{width:280px;height:280px}
  .hero-ring-2{width:330px;height:330px}
  .hero-ring-3{width:380px;height:380px}
  .bottom-nav a span{display:none}
  .bottom-nav a{gap:0}
  .bottom-nav a svg{width:24px;height:24px}
  .announce-text{font-size:11.5px}
}

/* ORDER OVERLAY */
#order-overlay{display:none;position:fixed;inset:0;z-index:300;background:rgba(26,74,53,.97);overflow-y:auto;padding-bottom:calc(var(--footer-nav-h) + 24px)}
.order-header{position:sticky;top:0;background:rgba(26,74,53,.98);backdrop-filter:blur(8px);border-bottom:1px solid rgba(200,168,75,.2);padding:20px 24px;display:flex;align-items:center;justify-content:space-between;z-index:1}
.order-header-title{font-family:'Playfair Display',serif;font-size:24px;font-weight:900;color:var(--cream)}
.order-header-sub{font-size:10px;color:rgba(247,243,236,.35);letter-spacing:2px;text-transform:uppercase;margin-top:3px}
.icon-btn{background:rgba(255,255,255,.07);border:1px solid rgba(200,168,75,.2);border-radius:10px;padding:12px;cursor:pointer;color:rgba(247,243,236,.6);display:flex;align-items:center;transition:background .2s}
.icon-btn:hover{background:rgba(255,255,255,.12)}
.order-body{max-width:640px;margin:0 auto;padding:24px}

#order-empty-state{text-align:center;padding:80px 0;color:rgba(247,243,236,.25)}
#order-empty-state svg{width:48px;height:48px;stroke:currentColor;fill:none;stroke-width:1.2;margin-bottom:16px;opacity:.35;display:block;margin-left:auto;margin-right:auto}
#order-empty-state p{font-size:13px;letter-spacing:2px;text-transform:uppercase;margin-bottom:6px}
#order-empty-state small{font-size:11px;color:rgba(247,243,236,.2);letter-spacing:1px}

#order-list{display:flex;flex-direction:column;gap:10px}
.order-row{display:flex;align-items:center;background:rgba(255,255,255,.05);border:1px solid rgba(200,168,75,.14);border-radius:14px;overflow:hidden;transition:background .15s}
.order-row:hover{background:rgba(255,255,255,.07)}
.order-row-img{width:70px;height:70px;flex-shrink:0;overflow:hidden;background:linear-gradient(135deg,#1e5a3e,#2d6e52)}
.order-row-img img{width:100%;height:100%;object-fit:cover;display:block}
.order-row-info{flex:1;padding:12px 10px 12px 14px;min-width:0}
.order-row-name{font-family:'Playfair Display',serif;font-size:14px;font-weight:700;color:var(--cream);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.order-row-amharic{font-size:11px;color:var(--green-light);margin-top:2px}
.order-row-ingredients{font-size:11px;color:rgba(247,243,236,.52);line-height:1.4;margin-top:4px}
.order-row-price{font-family:'Cormorant Garamond',serif;font-size:18px;color:var(--gold);margin-top:4px;font-weight:700}
.order-row-price-unit{font-size:12px;font-family:'DM Sans',sans-serif;color:rgba(247,243,236,.3)}
.order-row-ctrl{display:flex;align-items:center;background:rgba(255,255,255,.08);border-radius:22px;margin-right:14px;flex-shrink:0}
.order-row-btn{background:none;border:none;color:var(--cream);width:34px;height:34px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;transition:background .15s;border-radius:22px;font-family:'DM Sans',sans-serif}
.order-row-btn:hover{background:rgba(255,255,255,.15)}
.order-row-qty{color:var(--gold);font-weight:700;font-size:15px;min-width:26px;text-align:center;font-family:'Cormorant Garamond',serif}

/* Summary */
.order-summary-card{background:rgba(200,168,75,.08);border:1px solid rgba(200,168,75,.25);border-radius:16px;padding:20px 22px;margin-top:20px}
.section-divider-label{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(247,243,236,.3);margin-bottom:12px;display:flex;align-items:center;gap:10px}
.section-divider-label::after{content:'';flex:1;height:1px;background:rgba(200,168,75,.15)}
.ticket-line{display:flex;justify-content:space-between;align-items:center;font-size:13px;color:rgba(247,243,236,.6);padding:6px 0;border-bottom:1px dashed rgba(200,168,75,.1)}
.ticket-line:last-child{border:none}
.ticket-line .t-name{font-family:'Playfair Display',serif;font-size:13px}
.ticket-line .t-val{color:var(--gold);font-family:'Cormorant Garamond',serif;font-size:15px}
.summary-total-row{display:flex;justify-content:space-between;align-items:baseline;padding-top:14px;margin-top:4px;border-top:1px solid rgba(200,168,75,.2)}
.summary-total-label{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:rgba(247,243,236,.45)}
.summary-total-val{font-family:'Cormorant Garamond',serif;font-size:30px;font-weight:600;color:var(--gold)}
.summary-total-val small{font-size:14px;color:rgba(247,243,236,.3);font-family:'DM Sans',sans-serif}

.order-note-label{font-size:10px;letter-spacing:2px;text-transform:uppercase;color:rgba(247,243,236,.35);margin:18px 0 8px}
.order-note{width:100%;background:rgba(255,255,255,.06);border:1px solid rgba(200,168,75,.2);border-radius:10px;padding:12px 14px;color:var(--cream);font-family:'DM Sans',sans-serif;font-size:13px;resize:none;outline:none;height:76px;line-height:1.5}
.order-note::placeholder{color:rgba(247,243,236,.2)}

.clear-btn{display:flex;align-items:center;justify-content:center;gap:8px;background:rgba(220,60,60,.1);border:1px solid rgba(220,60,60,.2);color:rgba(255,150,150,.7);border-radius:10px;padding:11px 16px;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;cursor:pointer;font-family:'DM Sans',sans-serif;transition:background .2s;width:100%;margin-top:14px}
.clear-btn:hover{background:rgba(220,60,60,.2)}
.clear-btn svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round}

/* ==========================================================================
   SOCIAL PROMO POPUP (YouTube / TikTok)
   ========================================================================== */
#promo-popup-overlay{
  display:none;position:fixed;inset:0;z-index:500;
  background:rgba(15,30,22,.78);backdrop-filter:blur(4px);
  align-items:center;justify-content:center;padding:24px;
}
#promo-popup-overlay.visible{display:flex}
.promo-popup-card{
  background:var(--green);border:1px solid rgba(200,168,75,.3);border-radius:22px;
  max-width:380px;width:100%;padding:34px 28px 28px;position:relative;
  text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.4);
  animation:popup-rise .35s cubic-bezier(.2,.8,.3,1);
}
@keyframes popup-rise{from{opacity:0;transform:translateY(18px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}
.promo-popup-close{
  position:absolute;top:14px;right:14px;background:rgba(255,255,255,.08);border:none;border-radius:50%;
  width:30px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;color:rgba(247,243,236,.6);
}
.promo-popup-close:hover{background:rgba(255,255,255,.15);color:var(--cream)}
.promo-popup-close svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.2;stroke-linecap:round}
.promo-popup-icon{width:58px;height:58px;border-radius:50%;background:rgba(200,168,75,.15);display:flex;align-items:center;justify-content:center;margin:0 auto 18px;color:var(--gold)}
.promo-popup-icon svg{width:28px;height:28px;fill:currentColor;stroke:none}
.promo-popup-title{font-family:'Playfair Display',serif;font-size:22px;font-weight:700;color:var(--cream);margin-bottom:8px}
.promo-popup-text{font-size:13.5px;color:rgba(247,243,236,.65);line-height:1.6;margin-bottom:22px}
.promo-popup-actions{display:flex;flex-direction:column;gap:10px}
.promo-popup-btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 18px;border-radius:12px;text-decoration:none;
  font-size:12.5px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;
  transition:transform .15s,opacity .15s;
}
.promo-popup-btn:hover{transform:translateY(-2px)}
.promo-popup-btn svg{width:16px;height:16px;fill:currentColor;stroke:none}
.promo-popup-btn.youtube{background:#ff0000;color:#fff}
.promo-popup-btn.tiktok{background:#fff;color:#000}
.promo-popup-dismiss{
  margin-top:14px;background:none;border:none;color:rgba(247,243,236,.35);
  font-size:11px;letter-spacing:1px;text-transform:uppercase;cursor:pointer;
}
.promo-popup-dismiss:hover{color:rgba(247,243,236,.6)}
