/* =========================================================
   DUNIAMAINAN.ONLINE — Design Tokens
   ========================================================= */
:root{
  /* Brand palette — playful toy-box colors on a clean white canvas */
  --color-primary: #FF5A36;      /* coral-orange: primary CTA */
  --color-primary-dark: #E1441F;
  --color-primary-light: #FFE7E0;
  --color-secondary: #2F6FED;    /* bright toy-blue */
  --color-secondary-light:#E7EEFF;
  --color-yellow: #FFC53D;       /* sunny yellow accent */
  --color-yellow-light:#FFF4DA;
  --color-green: #2BB673;        /* success / stock ready */
  --color-green-light:#E3F7ED;
  --color-pink: #FF6FA1;         /* boneka / soft accent */
  --color-pink-light:#FFE9F1;
  --color-purple:#8B5CF6;

  --color-bg: #FFFFFF;
  --color-bg-soft: #F6F7FB;
  --color-bg-dark: #14162B;

  --color-text: #1A1D29;
  --color-text-muted: #666B80;
  --color-text-soft: #9AA0B4;
  --color-border: #E9EAF3;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 4px 14px rgba(20,22,43,.06);
  --shadow-md: 0 10px 30px rgba(20,22,43,.08);
  --shadow-lg: 0 20px 50px rgba(20,22,43,.12);

  --container-w: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--font-display); margin:0; color:var(--color-text); }
p{ margin:0; }

:focus-visible{
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container{
  width:100%;
  max-width: var(--container-w);
  margin:0 auto;
  padding: 0 20px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(.97); }
.btn-primary{
  background: var(--color-primary);
  color:#fff;
  box-shadow: 0 8px 20px rgba(255,90,54,.35);
}
.btn-primary:hover{ background: var(--color-primary-dark); }
.btn-outline{
  background: #fff;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}
.btn-outline:hover{ border-color: var(--color-primary); color: var(--color-primary); }
.btn-light{
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.btn-lg{ padding: 16px 28px; font-size:16px; }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; pointer-events:none; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 12px 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink:0;
}
.brand-mark{
  font-size: 26px;
  background: var(--color-primary-light);
  width:42px; height:42px;
  border-radius: var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; font-family: var(--font-display); }
.brand-text strong{ font-size:16px; color:var(--color-text); }
.brand-text small{ font-size:11px; color:var(--color-text-muted); font-weight:500; }

.header-search{
  flex:1;
  display:flex;
  align-items:center;
  background: var(--color-bg-soft);
  border-radius: var(--radius-full);
  padding: 4px 6px 4px 18px;
  max-width: 480px;
  margin: 0 auto;
}
.header-search input{
  flex:1;
  border:none;
  background:transparent;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 9px 0;
  outline:none;
  color: var(--color-text);
}
.header-search button{
  background: var(--color-primary);
  color:#fff;
  border:none;
  width:36px; height:36px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  font-size:14px;
  flex-shrink:0;
}

.header-actions{ display:flex; align-items:center; gap:6px; flex-shrink:0; }
.icon-link{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  padding:6px 12px;
  border-radius: var(--radius-sm);
  font-size:11px;
  color: var(--color-text-muted);
  font-weight:600;
}
.icon-link:hover{ background: var(--color-bg-soft); color: var(--color-text); }
.icon-emoji{ font-size:20px; }
.cart-badge{
  position:absolute;
  top:0; right:4px;
  background: var(--color-primary);
  color:#fff;
  font-size:10px;
  font-weight:700;
  min-width:17px; height:17px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  padding: 0 2px;
}

@media (max-width: 720px){
  .header-search{ display:none; }
  .icon-label{ display:none; }
  .header-inner{ padding:10px 16px; }
}

/* =========================================================
   VIEWS
   ========================================================= */
.view{ display:none; animation: fadeIn .25s ease; }
.view.is-active{ display:block; }
@keyframes fadeIn{ from{ opacity:0; transform: translateY(6px);} to{ opacity:1; transform:none; } }

.section{ padding: 48px 20px; }
.section-head{ margin-bottom:24px; text-align:left; }
.section-head h2{ font-size: clamp(22px,4vw,28px); font-weight:700; }
.section-head p{ color: var(--color-text-muted); margin-top:4px; font-size:15px; }

.page-head{ padding: 32px 0 16px; }
.page-head h1{ font-size: clamp(24px,5vw,32px); font-weight:700; }
.page-head p{ color: var(--color-text-muted); margin-top:6px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, #fff 100%);
  padding: 40px 20px 20px;
  overflow: hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items:center;
  padding-bottom: 30px;
}
.eyebrow{
  display:inline-block;
  background: #fff;
  border:1px solid var(--color-border);
  color: var(--color-secondary);
  font-size:13px;
  font-weight:600;
  padding:7px 14px;
  border-radius: var(--radius-full);
  margin-bottom:18px;
  box-shadow: var(--shadow-sm);
}
.hero h1{
  font-size: clamp(30px, 4.5vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing:-0.5px;
}
.hero h1 .hl{
  color: var(--color-primary);
  position:relative;
}
.hero-sub{
  margin-top:18px;
  font-size:16px;
  color: var(--color-text-muted);
  max-width: 480px;
  line-height:1.6;
}
.hero-cta{ display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }
.hero-trust{
  display:flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.trust-item{ display:flex; flex-direction:column; }
.trust-item strong{ font-family: var(--font-display); font-size:19px; color: var(--color-text); }
.trust-item span{ font-size:12.5px; color: var(--color-text-muted); }

.hero-visual{ position:relative; height: 380px; }
.toy-stack{ position:relative; width:100%; height:100%; }
.toy-block{
  position:absolute;
  width: 110px; height:110px;
  border-radius: var(--radius-lg);
  display:flex; align-items:center; justify-content:center;
  font-size: 46px;
  box-shadow: var(--shadow-lg);
  animation: floatY 5s ease-in-out infinite;
}
.block-a{ background: var(--color-primary-light); top: 10%; left: 8%; animation-delay: 0s; transform: rotate(-8deg);}
.block-b{ background: var(--color-secondary-light); top: 40%; left: 42%; width:130px; height:130px; font-size:54px; animation-delay: .6s; transform: rotate(6deg);}
.block-c{ background: var(--color-yellow-light); top: 4%; left: 55%; animation-delay: 1.1s; transform: rotate(10deg);}
.block-d{ background: var(--color-green-light); top: 62%; left: 6%; animation-delay: 1.6s; transform: rotate(-6deg);}
.block-e{ background: var(--color-pink-light); top: 66%; left: 66%; animation-delay: 2.1s; transform: rotate(4deg);}
@keyframes floatY{
  0%,100%{ transform: translateY(0) rotate(var(--r,0deg)); }
  50%{ transform: translateY(-14px); }
}

@media (max-width: 860px){
  .hero-inner{ grid-template-columns: 1fr; gap:12px; }
  .hero-visual{ height: 260px; order:-1; }
  .toy-block{ width: 78px; height:78px; font-size:32px; }
  .block-b{ width:92px; height:92px; font-size:38px; }
}

/* =========================================================
   CATEGORY GRID
   ========================================================= */
.category-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card{
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  text-align:center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 2px solid transparent;
}
.category-card:hover{
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: var(--shadow-md);
  border-color: var(--cat-color, var(--color-primary));
  background:#fff;
}
.category-icon{
  width:56px; height:56px;
  border-radius: var(--radius-md);
  display:flex; align-items:center; justify-content:center;
  font-size:28px;
  margin: 0 auto 12px;
  background: var(--cat-bg, var(--color-primary-light));
}
.category-card h4{ font-size:14px; font-weight:600; }
.category-card span{ font-size:12px; color: var(--color-text-muted); }

@media (max-width:720px){
  .category-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   FLASH BANNER
   ========================================================= */
.flash-banner{
  background: linear-gradient(120deg, var(--color-primary) 0%, #FF8259 100%);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  color:#fff;
  box-shadow: 0 16px 34px rgba(255,90,54,.28);
}
.flash-badge{
  display:inline-block;
  background: rgba(255,255,255,.22);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size:12.5px;
  font-weight:700;
  margin-bottom:10px;
}
.flash-text h3{ font-size: clamp(18px,3vw,22px); font-weight:700; max-width: 420px; }
.flash-text p{ margin-top:6px; opacity:.9; font-size:14px; }

/* =========================================================
   PRODUCT GRID / CARD
   ========================================================= */
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card{
  background:#fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition: transform .18s ease, box-shadow .18s ease;
  cursor:pointer;
  position:relative;
}
.product-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-thumb{
  aspect-ratio: 1/1;
  display:flex; align-items:center; justify-content:center;
  font-size: 52px;
  background: var(--thumb-bg, var(--color-bg-soft));
  position:relative;
}
.product-thumb.has-photo,
.detail-thumb.has-photo,
.cart-item-thumb.has-photo{ padding:0; }
.product-thumb.has-photo img,
.detail-thumb.has-photo img,
.cart-item-thumb.has-photo img{
  width:100%; height:100%;
  object-fit: cover;
  border-radius: inherit;
}
.product-badge{
  position:absolute; top:10px; left:10px;
  background:#fff;
  font-size:11px;
  font-weight:700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.product-badge.sold-out{ color:#fff; background: #A0A4B8; }
.product-body{ padding: 14px 14px 16px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-cat{ font-size:11px; color: var(--color-text-soft); font-weight:600; text-transform:uppercase; letter-spacing:.4px; }
.product-name{ font-size:14.5px; font-weight:600; line-height:1.35; min-height:38px; }
.product-price{ font-family: var(--font-display); font-weight:700; color: var(--color-primary); font-size:16px; margin-top:2px; }
.product-add{
  margin-top:8px;
  border:none;
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-weight:600;
  font-size:13px;
  padding: 10px;
  border-radius: var(--radius-full);
  display:flex; align-items:center; justify-content:center; gap:6px;
  transition: background .15s ease, color .15s ease;
}
.product-add:hover:not([disabled]){ background: var(--color-primary); color:#fff; }

@media (max-width: 960px){
  .product-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px){
  .product-grid{ grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-name{ font-size:13px; min-height:34px; }
}

/* =========================================================
   TESTIMONI
   ========================================================= */
.testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.testi-card{
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.testi-card p{ font-size:14.5px; line-height:1.6; color: var(--color-text); }
.testi-author{ margin-top:14px; display:flex; flex-direction:column; }
.testi-author strong{ font-size:14px; }
.testi-author span{ font-size:12px; color: var(--color-text-muted); }

@media (max-width:860px){ .testi-grid{ grid-template-columns:1fr; } }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final{
  text-align:center;
  background: var(--color-bg-dark);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 44px 24px;
}
.cta-final h3{ font-size: clamp(20px,3.4vw,26px); color:#fff; }
.cta-final p{ color: rgba(255,255,255,.7); margin-top:8px; }
.cta-final .btn{ margin-top:22px; }

/* =========================================================
   TOOLBAR / CHIPS (Products view)
   ========================================================= */
.products-toolbar{
  display:flex;
  gap:12px;
  margin-bottom:16px;
  flex-wrap:wrap;
}
.toolbar-search{ flex:1; min-width:200px; }
.toolbar-search input{
  width:100%;
  padding: 13px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-bg-soft);
  font-family: var(--font-body);
  font-size:14px;
  outline:none;
}
.toolbar-search input:focus{ border-color: var(--color-secondary); background:#fff; }
#sortSelect{
  padding: 13px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-body);
  font-size:14px;
  color: var(--color-text);
}

.chip-row{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.chip{
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background:#fff;
  font-size:13px;
  font-weight:600;
  color: var(--color-text-muted);
  transition: all .15s ease;
}
.chip.is-active{
  background: var(--color-text);
  color:#fff;
  border-color: var(--color-text);
}

/* =========================================================
   EMPTY STATES
   ========================================================= */
.empty-state{
  text-align:center;
  padding: 60px 20px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  margin: 20px 0 40px;
}
.empty-emoji{ font-size:44px; display:block; margin-bottom:12px; }
.empty-state h3{ font-size:18px; margin-bottom:6px; }
.empty-state p{ color: var(--color-text-muted); margin-bottom:18px; font-size:14px; }

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */
.back-link{
  background:none; border:none;
  color: var(--color-text-muted);
  font-weight:600;
  font-size:14px;
  padding: 20px 0 8px;
}
.back-link:hover{ color: var(--color-primary); }

.detail-layout{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  align-items:flex-start;
}
.detail-thumb{
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: var(--thumb-bg, var(--color-bg-soft));
  display:flex; align-items:center; justify-content:center;
  font-size: 130px;
}
.detail-info .product-cat{ font-size:12px; }
.detail-info h1{ font-size: clamp(22px,3.4vw,28px); margin: 8px 0 12px; }
.detail-price{ font-family: var(--font-display); font-size: 26px; font-weight:700; color: var(--color-primary); margin-bottom:16px; }
.detail-stock{
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  margin-bottom:18px;
}
.stock-ready{ background: var(--color-green-light); color: var(--color-green); }
.stock-out{ background: #F2F2F5; color: var(--color-text-soft); }
.detail-desc{ color: var(--color-text-muted); line-height:1.7; font-size:14.5px; margin-bottom: 22px; }

.variant-block{ margin-bottom:22px; }
.variant-block h4{ font-size:13px; font-weight:600; margin-bottom:10px; }
.variant-options{ display:flex; gap:8px; flex-wrap:wrap; }
.variant-chip{
  padding: 9px 16px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  background:#fff;
  font-size:13px;
  font-weight:600;
}
.variant-chip.is-selected{ border-color: var(--color-primary); background: var(--color-primary-light); color: var(--color-primary-dark); }

.qty-row{ display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.qty-stepper{ display:flex; align-items:center; border: 1.5px solid var(--color-border); border-radius: var(--radius-full); overflow:hidden; }
.qty-stepper button{ width:38px; height:38px; border:none; background:#fff; font-size:16px; font-weight:700; }
.qty-stepper button:hover{ background: var(--color-bg-soft); }
.qty-stepper span{ width:36px; text-align:center; font-weight:700; font-size:14px; }

.detail-related-head{ margin-top: 10px; }

@media (max-width: 860px){
  .detail-layout{ grid-template-columns: 1fr; gap:20px; }
  .detail-thumb{ font-size: 90px; }
}

/* =========================================================
   CART
   ========================================================= */
.cart-layout{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  padding-bottom: 50px;
  align-items:flex-start;
}
.cart-list{ display:flex; flex-direction:column; gap:14px; }
.cart-item{
  display:flex;
  gap:14px;
  align-items:center;
  background:#fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px;
}
.cart-item-thumb{
  width:64px; height:64px;
  border-radius: var(--radius-sm);
  background: var(--thumb-bg, var(--color-bg-soft));
  display:flex; align-items:center; justify-content:center;
  font-size:30px;
  flex-shrink:0;
}
.cart-item-body{ flex:1; min-width:0; }
.cart-item-name{ font-weight:600; font-size:14.5px; }
.cart-item-variant{ font-size:12px; color: var(--color-text-muted); margin-top:2px; }
.cart-item-price{ font-family: var(--font-display); font-weight:700; color: var(--color-primary); font-size:14px; margin-top:6px; }
.cart-item-controls{ display:flex; align-items:center; gap:10px; }
.cart-remove{
  background:none; border:none; color: var(--color-text-soft); font-size:18px; padding:6px;
}
.cart-remove:hover{ color: var(--color-primary); }

.cart-summary{
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  position:sticky;
  top: 90px;
}
.cart-summary h3{ font-size:17px; margin-bottom:16px; }
.summary-row{ display:flex; justify-content:space-between; font-size:14px; color: var(--color-text-muted); padding: 8px 0; }
.summary-total{ font-weight:700; color: var(--color-text); font-size:16px; border-top: 1px solid var(--color-border); margin-top:6px; padding-top:14px; }
.summary-note{ font-size:12px; color: var(--color-text-soft); margin-top:12px; line-height:1.5; text-align:center; }

@media (max-width: 860px){
  .cart-layout{ grid-template-columns: 1fr; }
  .cart-summary{ position:static; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-layout{ display:grid; grid-template-columns: 1fr 1.2fr; gap: 30px; padding-bottom: 50px; align-items:flex-start; }
.about-info{ display:flex; flex-direction:column; gap:14px; }
.info-card{
  display:flex; gap:14px; align-items:flex-start;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.info-icon{ font-size:24px; }
.info-card h4{ font-size:14px; margin-bottom:4px; }
.info-card p{ font-size:13.5px; color: var(--color-text-muted); line-height:1.5; }
.about-map{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); min-height:340px; }
.about-map iframe{ width:100%; height:100%; min-height:340px; border:none; }

@media (max-width:860px){ .about-layout{ grid-template-columns:1fr; } }

/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */
.wa-float{
  position: fixed;
  bottom: 22px;
  right: 20px;
  width: 58px; height:58px;
  background: var(--color-green);
  color:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:26px;
  box-shadow: 0 12px 28px rgba(43,182,115,.45);
  z-index: 90;
  transition: transform .15s ease;
}
.wa-float:hover{ transform: scale(1.08); }

/* =========================================================
   TOAST
   ========================================================= */
.toast{
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-text);
  color:#fff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size:13.5px;
  font-weight:600;
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  white-space:nowrap;
}
.toast.is-visible{ opacity:1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--color-bg-dark); color: rgba(255,255,255,.75); margin-top: 40px; }
.footer-inner{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 50px 20px 30px;
}
.footer-brand p{ margin-top:12px; font-size:13.5px; line-height:1.6; color: rgba(255,255,255,.6); }
.footer-col h4{ color:#fff; font-size:14px; margin-bottom:14px; }
.footer-col a, .footer-col p{ display:block; font-size:13.5px; margin-bottom:10px; color: rgba(255,255,255,.65); }
.footer-col a:hover{ color:#fff; }
.social-row{ display:flex; gap:10px; }
.social-row a{
  width:36px; height:36px;
  background: rgba(255,255,255,.08);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:16px;
  margin:0;
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 20px 26px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
  max-width: var(--container-w);
  margin:0 auto;
  font-size:12.5px;
}
.footer-bottom a{ color: rgba(255,255,255,.85); font-weight:600; text-decoration: underline; }

@media (max-width: 860px){
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; text-align:center; }
}
