/* ════════════════════════════════════════
   ShopCentral — Main Stylesheet
   Brand: Black navbar + Cyan-Blue (#00AEEF)
════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #00AEEF;
  --blue-dark:   #0090CC;
  --blue-deep:   #005F8E;
  --blue-light:  #E6F7FD;
  --blue-mid:    #B3E8FA;
  --black:       #0A0A0A;
  --dark:        #1C1C1C;
  --charcoal:    #2E2E2E;
  --gray:        #5A5A5A;
  --light-gray:  #9A9A9A;
  --border:      #E4E8EC;
  --bg:          #F2F6F9;
  --white:       #FFFFFF;
  --red:         #E53935;
  --green-dark:  #1B6B2F;
  --green-bg:    #E6F4EA;
  --font-head:   'Barlow', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.14);
  --shadow-blue: 0 4px 20px rgba(0,174,239,0.25);
  --radius:      14px;
  --radius-sm:   9px;
  --radius-xs:   5px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font-body); }

/* ── ANNOUNCEMENT BAR ── */
.sc-announcement {
  background: linear-gradient(90deg, var(--black), var(--charcoal));
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 9px 16px;
  font-size: 13px;
}
.sc-announcement strong { color: var(--blue); }
.sc-announcement a { color: var(--blue); font-weight: 600; }

/* ── NAVBAR ── */
.sc-navbar {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.sc-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.sc-logo img { height: 38px; width: auto; display: block; }
.sc-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 24px;
  color: var(--white);
  white-space: nowrap;
}
.sc-logo-text span { color: var(--blue); }

.sc-nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  flex: 1;
}
.sc-nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.sc-nav-menu a:hover,
.sc-nav-menu .current-menu-item a {
  color: white;
}
.sc-nav-menu .current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.sc-nav-actions { display: flex; gap: 10px; align-items: center; margin-left: auto; }
.sc-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.sc-nav-btn:hover { background: var(--blue); border-color: var(--blue); color: white; }
.sc-nav-btn svg { width: 17px; height: 17px; }

.sc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.sc-hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; display: block; transition: all 0.3s; }

/* ── MOBILE SEARCH ── */
.sc-mobile-search {
  display: none;
  padding: 10px 16px;
  background: white;
  border-bottom: 1px solid var(--border);
}
.sc-search-wrap {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  gap: 8px;
  transition: border-color 0.2s;
}
.sc-search-wrap:focus-within { border-color: var(--blue); }
.sc-search-wrap input {
  border: none; background: transparent;
  font-family: var(--font-body); font-size: 14px;
  flex: 1; outline: none; color: var(--dark);
}
.sc-search-wrap input::placeholder { color: var(--light-gray); }

/* ── HERO GRID ── */
.sc-hero { max-width: 1240px; margin: 24px auto 0; padding: 0 24px; }
.sc-hero-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  gap: 16px;
}

/* ── CARDS ── */
.sc-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  animation: scFadeUp 0.5s ease both;
}
.sc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.sc-card-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
}
.sc-card-img-placeholder {
  width: 100%; height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, #FFF8EE, #FFE9C0);
}
.sc-card-body { padding: 16px 18px 20px; }
.sc-card-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 800;
  line-height: 1.35; color: var(--black);
  margin-bottom: 14px;
}
.sc-card-badge { position: absolute; top: 12px; left: 12px; z-index: 1; }

/* ── DEAL COUNTDOWN CARD ── */
.sc-deal-card-inner {
  display: flex; flex-direction: column;
  align-items: center; padding: 26px 20px 22px;
  text-align: center;
}
.sc-live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,174,239,0.10);
  color: var(--blue-deep); padding: 4px 10px;
  border-radius: 4px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  border: 1px solid var(--blue-mid);
}
.sc-live-dot {
  width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  animation: scBlink 1.5s infinite;
  display: inline-block;
}
.sc-deal-emoji { font-size: 54px; margin: 14px 0 4px; }
.sc-deal-name { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--black); margin: 8px 0 4px; }
.sc-deal-discount { font-family: var(--font-head); font-size: 24px; font-weight: 900; color: var(--red); }
.sc-countdown-label { font-size: 11px; color: var(--light-gray); margin-top: 10px; letter-spacing: 1px; text-transform: uppercase; }
.sc-countdown {
  font-family: var(--font-head);
  font-size: 40px; font-weight: 900;
  color: var(--black); letter-spacing: -1px;
  line-height: 1; margin: 6px 0;
}
.sc-countdown span { color: var(--blue); }

/* ── BADGES ── */
.sc-badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.4px; text-transform: uppercase;
}
.sc-badge-blue  { background: var(--blue); color: white; }
.sc-badge-black { background: var(--black); color: white; }
.sc-badge-red   { background: #FEE8E7; color: var(--red); border: 1px solid #fcc; }
.sc-badge-green { background: var(--green-bg); color: var(--green-dark); }
.sc-badge-cyan  { background: var(--blue-light); color: var(--blue-deep); border: 1px solid var(--blue-mid); }

/* ── BUTTONS ── */
.sc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--radius-xs);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.2px; transition: all 0.2s;
  cursor: pointer;
}
.sc-btn-blue  { background: var(--blue); color: white; box-shadow: var(--shadow-blue); border: none; }
.sc-btn-blue:hover  { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,174,239,0.35); color: white; }
.sc-btn-black { background: var(--black); color: white; border: none; }
.sc-btn-black:hover { background: var(--charcoal); transform: translateY(-1px); color: white; }
.sc-btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--gray); }
.sc-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.sc-btn-sm    { padding: 7px 15px; font-size: 12px; }
.sc-btn-full  { width: 100%; justify-content: center; }

/* ── SECTION COMMON ── */
.sc-section { max-width: 1240px; margin: 0 auto; padding: 30px 24px 0; }
.sc-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sc-section-title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 900;
  color: var(--black); text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 10px;
}
.sc-section-title::before {
  content: '';
  display: inline-block;
  width: 4px; height: 22px;
  background: var(--blue); border-radius: 2px;
}
.sc-see-all { font-size: 13px; font-weight: 600; color: var(--blue); display: flex; align-items: center; gap: 3px; }
.sc-see-all:hover { text-decoration: underline; color: var(--blue-dark); }

/* ── CATEGORIES ── */
.sc-cat-row { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.sc-cat-row::-webkit-scrollbar { display: none; }
.sc-cat-item { display: flex; flex-direction: column; align-items: center; gap: 7px; min-width: 70px; cursor: pointer; text-decoration: none; }
.sc-cat-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: white; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; transition: all 0.22s; box-shadow: var(--shadow-sm);
}
.sc-cat-item:hover .sc-cat-icon,
.sc-cat-item.active .sc-cat-icon {
  border-color: var(--blue); background: var(--blue-light);
  transform: scale(1.07); box-shadow: var(--shadow-blue);
}
.sc-cat-label { font-size: 11px; font-weight: 500; color: var(--gray); text-align: center; line-height: 1.3; }
.sc-cat-item.active .sc-cat-label,
.sc-cat-item:hover .sc-cat-label { color: var(--blue); font-weight: 700; }

/* ── GUIDE CARDS ROW ── */
.sc-guide-row { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
.sc-guide-row::-webkit-scrollbar { display: none; }
.sc-guide-card {
  min-width: 220px; max-width: 220px;
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.sc-guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sc-guide-card-img {
  height: 138px;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; position: relative; overflow: hidden;
}
.sc-guide-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.sc-guide-badge { position: absolute; top: 10px; right: 10px; z-index: 1; }
.sc-guide-body { padding: 12px 14px 15px; }
.sc-guide-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; line-height: 1.35; color: var(--black); margin-bottom: 6px; }
.sc-guide-meta { font-size: 11px; color: var(--light-gray); margin-bottom: 10px; }

/* ── DEAL FEED ── */
.sc-deal-feed { max-width: 1240px; margin: 0 auto; padding: 30px 24px 44px; }
.sc-deals-list { display: flex; flex-direction: column; gap: 13px; }
.sc-deal-item {
  background: white; border-radius: var(--radius);
  padding: 16px 18px; display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.sc-deal-item::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--blue);
}
.sc-deal-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.sc-deal-thumb {
  width: 82px; height: 82px; border-radius: var(--radius-sm);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; flex-shrink: 0; position: relative; overflow: hidden;
}
.sc-deal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sc-deal-tbadge { position: absolute; top: 4px; left: 4px; font-size: 9px; padding: 2px 6px; }
.sc-deal-info { flex: 1; min-width: 0; }
.sc-deal-name { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sc-deal-desc { font-size: 13px; color: var(--gray); margin-bottom: 9px; }
.sc-deal-prices { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sc-deal-new { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: var(--black); }
.sc-deal-old { font-size: 14px; color: var(--light-gray); text-decoration: line-through; }
.sc-deal-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }

/* ── NEWSLETTER ── */
.sc-newsletter {
  background: var(--blue-light); border: 1.5px solid var(--blue-mid);
  border-radius: var(--radius); padding: 24px 28px;
  max-width: 1240px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.sc-nl-text h3 { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.sc-nl-text p { font-size: 13px; color: var(--gray); }
.sc-nl-form { display: flex; gap: 8px; flex-wrap: wrap; }
.sc-nl-form input { padding: 10px 16px; border: 1.5px solid var(--blue-mid); border-radius: var(--radius-xs); font-family: var(--font-body); font-size: 14px; outline: none; background: white; min-width: 220px; transition: border-color 0.2s; }
.sc-nl-form input:focus { border-color: var(--blue); }
.sc-nl-form input::placeholder { color: var(--light-gray); }

/* ── TRUST SECTION ── */
.sc-trust-wrap { padding: 0 24px 20px; max-width: 1240px; margin: 0 auto; }
.sc-trust {
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  border-radius: var(--radius); padding: 40px 32px;
  text-align: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.sc-trust::before {
  content: ''; position: absolute;
  top: -60px; right: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,174,239,0.15), transparent 70%);
  border-radius: 50%;
}
.sc-trust h2 { font-family: var(--font-head); font-size: 24px; font-weight: 900; color: white; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; position: relative; z-index: 1; }
.sc-trust h2 span { color: var(--blue); }
.sc-trust p { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 28px; line-height: 1.75; position: relative; z-index: 1; }
.sc-trust-stats { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.sc-tstat-num { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--blue); }
.sc-tstat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 2px; }

/* ── FOOTER ── */
.sc-footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 44px 24px 24px; margin-top: 8px; }
.sc-footer-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sc-footer-logo img { height: 30px; width: auto; margin-bottom: 12px; }
.sc-footer-logo-text { font-family: var(--font-head); font-size: 22px; font-weight: 900; color: white; margin-bottom: 12px; }
.sc-footer-logo-text span { color: var(--blue); }
.sc-footer-desc { font-size: 13px; line-height: 1.75; margin-bottom: 16px; }
.sc-footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.sc-footer-col h4 { font-family: var(--font-head); font-size: 12px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px; }
.sc-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sc-footer-col ul li a { font-size: 13px; transition: color 0.2s; color: rgba(255,255,255,0.6); }
.sc-footer-col ul li a:hover { color: var(--blue); }
.sc-footer-bottom { max-width: 1240px; margin: 20px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,0.3); }
.sc-footer-bottom a { color: rgba(255,255,255,0.3); }
.sc-footer-bottom a:hover { color: var(--blue); }

/* ── MOBILE BOTTOM NAV ── */
.sc-mobile-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.10);
  z-index: 999; padding: 8px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.sc-mob-inner { display: flex; justify-content: space-around; }
.sc-mob-item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 10px; cursor: pointer; color: rgba(255,255,255,0.4); transition: color 0.2s; font-size: 10px; font-weight: 500; text-decoration: none; }
.sc-mob-item.active,
.sc-mob-item:hover { color: var(--blue); }
.sc-mob-item svg { width: 21px; height: 21px; }

/* ── SINGLE POST / ARTICLE ── */
.sc-article-wrap { max-width: 860px; margin: 32px auto; padding: 0 24px 60px; }
.sc-article-header { margin-bottom: 28px; }
.sc-article-category { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.sc-article-title { font-family: var(--font-head); font-size: 32px; font-weight: 900; line-height: 1.25; color: var(--black); margin-bottom: 16px; }
.sc-article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--light-gray); flex-wrap: wrap; }
.sc-article-meta strong { color: var(--gray); }
.sc-article-featured-img { width: 100%; border-radius: var(--radius); margin-bottom: 28px; box-shadow: var(--shadow-md); }
.sc-article-content { font-size: 16px; line-height: 1.8; color: var(--dark); }
.sc-article-content h2 { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--black); margin: 32px 0 14px; }
.sc-article-content h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--black); margin: 24px 0 12px; }
.sc-article-content p { margin-bottom: 16px; }
.sc-article-content ul, .sc-article-content ol { padding-left: 24px; margin-bottom: 16px; }
.sc-article-content li { margin-bottom: 8px; }
.sc-article-content a { color: var(--blue); }
.sc-article-content a:hover { text-decoration: underline; }
.sc-article-content img { border-radius: var(--radius-sm); margin: 20px 0; box-shadow: var(--shadow-sm); }

/* Product box in articles */
.sc-product-box {
  background: white; border-radius: var(--radius);
  border: 2px solid var(--border); padding: 20px;
  margin: 24px 0; box-shadow: var(--shadow-sm);
}
.sc-product-box-inner { display: flex; gap: 20px; align-items: flex-start; }
.sc-product-box-img { width: 120px; height: 120px; object-fit: contain; border-radius: var(--radius-sm); background: var(--bg); flex-shrink: 0; }
.sc-product-box-info { flex: 1; }
.sc-product-box-name { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.sc-product-box-price { display: flex; align-items: center; gap: 10px; margin: 10px 0; }
.sc-product-box-new { font-family: var(--font-head); font-size: 24px; font-weight: 900; color: var(--black); }
.sc-product-box-old { font-size: 16px; color: var(--light-gray); text-decoration: line-through; }
.sc-product-box-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }

/* Pros Cons */
.sc-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.sc-pros, .sc-cons { background: var(--bg); border-radius: var(--radius-sm); padding: 16px; }
.sc-pros { border-left: 3px solid #2E7D32; }
.sc-cons { border-left: 3px solid var(--red); }
.sc-pros h4 { color: #2E7D32; font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.sc-cons h4 { color: var(--red); font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 10px; }
.sc-pros ul, .sc-cons ul { padding-left: 16px; }
.sc-pros li, .sc-cons li { font-size: 13px; margin-bottom: 5px; }

/* Comparison Table */
.sc-compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.sc-compare-table th { background: var(--black); color: white; padding: 12px 16px; text-align: left; font-family: var(--font-head); font-weight: 700; font-size: 13px; letter-spacing: 0.5px; }
.sc-compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.sc-compare-table tr:nth-child(even) td { background: var(--bg); }
.sc-compare-table tr:hover td { background: var(--blue-light); }
.sc-compare-table .sc-best { background: var(--blue-light) !important; font-weight: 600; color: var(--blue-deep); }

/* ── ANIMATIONS ── */
@keyframes scFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .sc-hero-grid { grid-template-columns: 1fr 1fr; }
  .sc-hero-grid .sc-card:last-child { display: none; }
  .sc-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .sc-nav-menu { display: none; }
  .sc-hamburger { display: flex; }
  .sc-hero-grid { grid-template-columns: 1fr; }
  .sc-card-img-placeholder { height: 200px; }
  .sc-mobile-search { display: block; }
  .sc-mobile-nav { display: block; }
  body { padding-bottom: 72px; }
  .sc-footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .sc-newsletter { flex-direction: column; align-items: flex-start; }
  .sc-trust { padding: 28px 20px; }
  .sc-article-title { font-size: 24px; }
  .sc-pros-cons { grid-template-columns: 1fr; }
  .sc-product-box-inner { flex-direction: column; }
}
@media (max-width: 480px) {
  .sc-footer-inner { grid-template-columns: 1fr; }
  .sc-footer-col:nth-child(3), .sc-footer-col:nth-child(4) { display: none; }
  .sc-deal-actions { display: none; }
}
