/* ============================================================
   Ultra Deal Finder — Main Stylesheet
   Inspired by clean affiliate deal sites
   Walmart Blue #0071DC · Walmart Yellow #FFC220
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #0071DC;
  --blue-dark:   #004f9a;
  --blue-light:  #e8f3ff;
  --yellow:      #FFC220;
  --yellow-dark: #e6a800;
  --white:       #ffffff;
  --gray-50:     #f8f9fb;
  --gray-100:    #f0f2f5;
  --gray-200:    #e2e6ea;
  --gray-400:    #9aa5b4;
  --gray-600:    #5a6474;
  --gray-800:    #1f2937;
  --text:        #1a1e2e;
  --text-muted:  #6b7280;
  --card-shadow: 0 2px 12px rgba(0,0,0,.08);
  --card-shadow-hover: 0 8px 32px rgba(0,113,220,.18);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  .22s cubic-bezier(.4,0,.2,1);
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ───────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ── Site Header ──────────────────────────────────────────── */
.site-header {
  background: var(--blue);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  height: 64px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo-block { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.site-logo-image {
  width: 150px;
  height: 54px;
 
  object-fit: contain;
  object-position: left center;
  display: block;
}
.logo-spark, .logo-text { display: none; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { background: rgba(255,255,255,.15); color: #fff; }
.site-nav .btn-nav-cta {
  background: var(--yellow);
  color: var(--blue-dark) !important;
  font-weight: 700;
  padding: 7px 16px;
}
.site-nav .btn-nav-cta:hover { background: var(--yellow-dark); }
.admin-top-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 34px;
  padding: 0 11px !important;
  border: 1.5px solid var(--yellow);
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--yellow) !important;
  font-size: .78rem !important;
  font-weight: 700 !important;
  line-height: 1;
  white-space: nowrap;
}
.admin-top-link:hover {
  background: var(--yellow) !important;
  color: var(--blue-dark) !important;
}
.admin-lock {
  font-size: .78rem;
  line-height: 1;
}

/* Hamburger (mobile) */
.hamburger { display: none; background: none; border: none; padding: 8px; color: #fff; }
.hamburger svg { display: block; }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--blue-dark);
  padding: 12px 20px 16px;
}
.mobile-nav a {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  font-weight: 600;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ── Hero Banner (homepage) ───────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 52px 20px 44px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero h1 span { color: var(--yellow); }
.hero p {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  opacity: .85;
  max-width: 480px;
  margin: 0 auto 24px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 11px 28px;
  font-size: .82rem;
  font-weight: 600;
}
.hero-social-box {
  min-width: 270px;
}
.hero-social-title {
  color: rgba(255,255,255,.95);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.hero-facebook-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  background: transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.hero-facebook-btn span {
  font-family: Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(1px);
}
.hero-facebook-btn:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

/* ── Section headings ─────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}
.section-head h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.4px;
}
.section-head h2 span { color: var(--blue); }
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--yellow);
  border-radius: 4px;
  flex-shrink: 0;
}

/* ── Date Cards (Homepage) ────────────────────────────────── */
.deals-section { padding: 40px 0 60px; }
.date-cards { display: flex; flex-direction: column; gap: 14px; }

.date-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border: 1.5px solid var(--gray-200);
  position: relative;
}
.date-card:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue);
}
.date-card:active { transform: scale(.99); }

/* Left accent stripe */
.date-card-stripe {
  width: 6px;
  align-self: stretch;
  background: linear-gradient(180deg, var(--yellow) 0%, var(--blue) 100%);
  flex-shrink: 0;
}
.date-card.today .date-card-stripe {
  background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-dark) 100%);
}

/* Walmart mark */
.date-card-brand {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
}
.walmart-spark {
  width: 46px;
  height: 46px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,113,220,.3);
}
.walmart-spark svg, .walmart-spark img { width: 28px; height: 28px; display: block; }
.brand-name {
  font-size: .62rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .8px;
  text-transform: uppercase;
}
.walmart-logo-wrap {
  width: 118px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.walmart-logo {
  width: 112px;
  height: auto;
  display: block;
}

/* Card body */
.date-card-body {
  flex: 1;
  padding: 20px 16px;
  min-width: 0;
}
.date-card-today-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.date-card-date {
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 5px;
}
.date-card.today .date-card-date { color: var(--blue); }
.date-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  color: var(--text-muted);
}
.date-card-count {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 12px;
}
.date-card-open {
  font-size: .78rem;
  color: var(--blue);
  font-weight: 600;
}

/* Arrow */
.date-card-arrow {
  padding: 22px 22px 22px 12px;
  display: flex;
  align-items: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.date-card:hover .date-card-arrow { transform: translateX(5px); }
.date-card-arrow svg { width: 22px; height: 22px; }

/* ── Empty / Coming Soon ──────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state .empty-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: .6;
}
.empty-state h3 { font-size: 1.3rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: .95rem; margin-bottom: 20px; }

/* ── Deals Page Header ────────────────────────────────────── */
.deals-page-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 32px 20px 28px;
}
.deals-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 16px;
  transition: color var(--transition);
  padding: 6px 0;
}
.deals-back:hover { color: #fff; }
.deals-back svg { width: 16px; height: 16px; }
.deals-page-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.deals-page-subtitle { font-size: .9rem; opacity: .8; }
.deals-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.12);
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 12px;
}

/* ── Product Grid ─────────────────────────────────────────── */
.products-section { padding: 36px 0 60px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px;
}

/* ── Product Card ─────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--blue);
}

.product-image-wrap {
  aspect-ratio: 1;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform .3s ease;
}
.product-card:hover .product-image-wrap img { transform: scale(1.04); }

.product-discount-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: .3px;
}

.product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px;
  gap: 8px;
}

.product-title {
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
}
.stars {
  color: var(--yellow-dark);
  display: flex;
  gap: 1px;
  font-size: .85rem;
}
.star-full { color: #f59e0b; }
.star-half { color: #f59e0b; opacity: .6; }
.star-empty { color: var(--gray-200); }
.rating-num { font-weight: 700; color: var(--text); }
.rating-count { color: var(--text-muted); }

.product-pricing { display: flex; flex-direction: column; gap: 2px; }
.product-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -.5px;
}
.product-was {
  font-size: .78rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-savings {
  font-size: .75rem;
  color: #16a34a;
  font-weight: 700;
}

.product-card-footer { padding: 0 14px 14px; margin-top: auto; }
.btn-shop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: none;
  letter-spacing: .3px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-shop:hover { background: var(--blue-dark); }
.btn-shop:active { transform: scale(.97); }
.btn-shop svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: #ffffff ;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--white); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--gray-400); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 32px 20px;
  font-size: .82rem;
  line-height: 1.8;
}
.site-footer a { color: rgba(255,255,255,.85); text-decoration: underline; }
.site-footer strong { color: #fff; }
.footer-disclaimer {
  max-width: 680px;
  margin: 0 auto;
  font-size: .75rem;
  opacity: .7;
  margin-top: 10px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-yellow { background: var(--yellow); color: var(--blue-dark); }
.btn-yellow:hover { background: var(--yellow-dark); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); }
.btn-sm { padding: 7px 14px; font-size: .8rem; }

/* ── Today page ───────────────────────────────────────────── */
.today-empty {
  text-align: center;
  padding: 60px 20px;
}
.today-empty h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; color: var(--text); }
.today-empty p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Pagination / nav ─────────────────────────────────────── */
.date-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 0 0;
  flex-wrap: wrap;
}
.date-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--blue);
  font-size: .85rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.date-nav a:hover { border-color: var(--blue); box-shadow: 0 2px 8px rgba(0,113,220,.1); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(16px); }
  to   { opacity:1; transform: none; }
}
.animate-in {
  animation: fadeInUp .4s ease both;
}
.animate-in:nth-child(2) { animation-delay: .05s; }
.animate-in:nth-child(3) { animation-delay: .10s; }
.animate-in:nth-child(4) { animation-delay: .15s; }
.animate-in:nth-child(5) { animation-delay: .20s; }
.animate-in:nth-child(6) { animation-delay: .25s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-logo-image { width: 165px; height: 48px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 36px 16px 30px; }
  .hero-stats { gap: 7px; padding: 10px 18px; }
  .hero-social-box { min-width: 250px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .date-card-date { font-size: 1.1rem; }
  .date-card-brand { padding: 18px 14px; }
  .walmart-logo-wrap { width: 92px; min-height: 44px; }
  .walmart-logo { width: 88px; }
}
@media (max-width: 480px) {
  .site-logo-image { width: 145px; height: 44px; }
  .product-grid { grid-template-columns: 1fr; }
  .date-card-date { font-size: 1rem; }
  .header-inner { padding: 0 14px; }
  .date-card-arrow { padding: 16px 14px 16px 8px; }
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}


/* ── Modern homepage additions ───────────────────────────── */
.hero-modern { padding: 64px 20px 50px; }
.hero-modern .hero-content { max-width: 900px; }
.hero-actions { display:flex; justify-content:center; gap:10px; flex-wrap:wrap; margin: 0 0 26px; }
.btn-hero-outline {
  background: rgba(255,255,255,.1);
  color:#fff;
  border:1px solid rgba(255,255,255,.35);
}
.btn-hero-outline:hover { background:rgba(255,255,255,.18); color:#fff; }
.home-products { padding-top: 42px; }
.archive-section { background: #fff; padding: 42px 0 70px; border-top: 1px solid var(--gray-200); }
.archive-section .date-card { background: var(--gray-50); }
.archive-note { color:var(--text-muted); font-size:.82rem; font-weight:600; }
.product-day-label {
  font-size:.68rem;
  font-weight:800;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.6px;
}
.product-image-placeholder {
  display:flex; align-items:center; justify-content:center;
  width:100%; height:100%; font-size:2.5rem; color:var(--gray-400);
}
.product-image-wrap { text-decoration:none; }
.product-image-wrap:hover img { transform:scale(1.04); }

@media (max-width: 720px) {
  .site-nav { display:none; }
  .hamburger { display:block; }
  .hero-modern { padding: 48px 16px 38px; }
  .hero-stats { gap: 7px; padding: 9px 16px; font-size:.75rem; }
  .hero-social-box { min-width: 230px; }
  .hero-social-title { font-size: .76rem; }
  .hero-facebook-btn { width: 30px; height: 30px; min-width: 30px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px; }
  .product-body { padding:11px; gap:6px; }
  .product-title { font-size:.78rem; -webkit-line-clamp:3; }
  .product-price { font-size:1.05rem; }
  .product-card-footer { padding:0 11px 11px; }
  .btn-shop { padding:10px 8px; font-size:.78rem; }
  .date-card-brand { padding:16px 12px; }
  .date-card-body { padding:16px 10px; }
  .date-card-arrow { padding-right:12px; }
}
@media (max-width: 390px) {
  .product-grid { grid-template-columns: 1fr; }
}


/* ── Facebook follow CTA ─────────────────────────────────── */
.facebook-follow-cta {
  max-width: 900px;
  margin: 0 auto 26px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}
.facebook-follow-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1877F2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.facebook-follow-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}
.facebook-follow-copy strong { font-size: .98rem; color: #fff; }
.facebook-follow-copy span { font-size: .76rem; color: rgba(255,255,255,.7); }
.facebook-follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none !important;
  background: #1877F2;
  color: #fff !important;
  border-radius: 9px;
  padding: 9px 14px;
  font-size: .78rem;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition);
}
.facebook-follow-btn:hover { background: #0d65d9; transform: translateY(-1px); }
@media (max-width: 650px) {
  .facebook-follow-cta { flex-wrap: wrap; text-align: center; gap: 10px; }
  .facebook-follow-copy { flex: 1 1 calc(100% - 64px); }
  .facebook-follow-btn { width: 100%; }
}
