/* ==========================================================================
   SAFQA SIGNATURE HOMEPAGE ADVANCED BLOCKS CSS
   (Concept V1 Crispness, Micro-Grids, Spotlight Master & Bundle Builder)
   ========================================================================== */

/* ── 1. SHARED DESIGN TOKENS & TYPOGRAPHY ── */
:root body.theme-safqa,
:root body.ty-theme-safqa {
  --sq-font-ar: "Noto Sans Arabic", "Inter", -apple-system, BlinkMacSystemFont, Tahoma, Arial, sans-serif;
  --sq-font-num: "Outfit", sans-serif;
}

/* ── 2. SHARED SECTION HEADINGS ── */
:root body.theme-safqa .sq-curated-section,
:root body.ty-theme-safqa .sq-curated-section {
  margin: 36px 0 24px;
  font-family: var(--sq-font-ar);
}

:root body.theme-safqa .sq-curated-head,
:root body.ty-theme-safqa .sq-curated-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  border-bottom: 2px solid #eaeded;
  padding-bottom: 10px;
}

:root body.theme-safqa .sq-curated-head h2,
:root body.ty-theme-safqa .sq-curated-head h2 {
  font-size: 21px;
  font-weight: 800;
  color: #0f1111;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

:root body.theme-safqa .sq-curated-head h2 small,
:root body.ty-theme-safqa .sq-curated-head h2 small {
  font-size: 13px;
  color: #565959;
  font-weight: 400;
}

:root body.theme-safqa .sq-curated-link,
:root body.ty-theme-safqa .sq-curated-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #007185;
  text-decoration: none;
  transition: color 0.15s;
}

:root body.theme-safqa .sq-curated-link:hover,
:root body.ty-theme-safqa .sq-curated-link:hover {
  color: #c7511f;
  text-decoration: underline;
}

/* ── 3. STANDARD CURATED 5-COLUMN PRODUCT ROWS ── */
:root body.theme-safqa .sq-curated-row,
:root body.ty-theme-safqa .sq-curated-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

:root body.theme-safqa .sq-p-card,
:root body.ty-theme-safqa .sq-p-card {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.18s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

:root body.theme-safqa .sq-p-card:hover,
:root body.ty-theme-safqa .sq-p-card:hover {
  border-color: #d5d9d9;
  box-shadow: 0 4px 14px rgba(15, 17, 17, 0.09);
  transform: translateY(-2px);
}

:root body.theme-safqa .sq-p-img,
:root body.ty-theme-safqa .sq-p-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #ffffff;
}

:root body.theme-safqa .sq-p-img img,
:root body.ty-theme-safqa .sq-p-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

:root body.theme-safqa .sq-p-card:hover .sq-p-img img,
:root body.ty-theme-safqa .sq-p-card:hover .sq-p-img img {
  transform: scale(1.04);
}

:root body.theme-safqa .sq-p-body,
:root body.ty-theme-safqa .sq-p-body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

:root body.theme-safqa .sq-p-name,
:root body.ty-theme-safqa .sq-p-name {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 6px;
  color: #0f1111;
  text-decoration: none;
}

:root body.theme-safqa .sq-p-name:hover,
:root body.ty-theme-safqa .sq-p-name:hover {
  color: #c7511f;
  text-decoration: underline;
}

:root body.theme-safqa .sq-stars,
:root body.ty-theme-safqa .sq-stars {
  color: #de7921;
  font-size: 12.5px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

:root body.theme-safqa .sq-stars span,
:root body.ty-theme-safqa .sq-stars span {
  color: #007185;
  font-size: 11.5px;
  letter-spacing: 0;
  margin-inline-start: 4px;
}

:root body.theme-safqa .sq-p-price,
:root body.ty-theme-safqa .sq-p-price {
  margin-top: auto;
  font-size: 18px;
  font-weight: 800;
  color: #0f1111;
  font-family: var(--sq-font-num);
}

:root body.theme-safqa .sq-p-price sup,
:root body.ty-theme-safqa .sq-p-price sup {
  font-size: 11px;
  color: #565959;
  font-family: var(--sq-font-ar);
  font-weight: 600;
  margin-inline-start: 2px;
}

:root body.theme-safqa .sq-p-btn,
:root body.ty-theme-safqa .sq-p-btn {
  margin-top: 10px;
  background: #ffd814;
  border: 1px solid #fcd200;
  border-radius: 100px;
  height: 31px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: #0f1111;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}

:root body.theme-safqa .sq-p-btn:hover,
:root body.ty-theme-safqa .sq-p-btn:hover {
  background: #f7ca00;
  color: #0f1111;
  text-decoration: none;
}

/* ==========================================================================
   4. 🌟 CIRCULAR STORY & CATEGORY BUBBLES
   ========================================================================== */
:root body.theme-safqa .sq-story-bubbles-row,
:root body.ty-theme-safqa .sq-story-bubbles-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 18px 16px;
  margin: 20px 0 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

:root body.theme-safqa .sq-story-bubble-card,
:root body.ty-theme-safqa .sq-story-bubble-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  transition: transform 0.18s ease;
}

:root body.theme-safqa .sq-story-bubble-card:hover,
:root body.ty-theme-safqa .sq-story-bubble-card:hover {
  transform: translateY(-3px);
}

:root body.theme-safqa .sq-bubble-avatar-wrap,
:root body.ty-theme-safqa .sq-bubble-avatar-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ffa41c, #febd69);
  margin-bottom: 8px;
  position: relative;
}

:root body.theme-safqa .sq-bubble-avatar-inner,
:root body.ty-theme-safqa .sq-bubble-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #ffffff;
}

:root body.theme-safqa .sq-bubble-avatar-inner img,
:root body.ty-theme-safqa .sq-bubble-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

:root body.theme-safqa .sq-story-bubble-card:hover .sq-bubble-avatar-inner img,
:root body.ty-theme-safqa .sq-story-bubble-card:hover .sq-bubble-avatar-inner img {
  transform: scale(1.08);
}

:root body.theme-safqa .sq-bubble-tag,
:root body.ty-theme-safqa .sq-bubble-tag {
  position: absolute;
  bottom: -4px;
  background: #cc0c39;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 10px;
  line-height: 1.2;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

:root body.theme-safqa .sq-bubble-title,
:root body.ty-theme-safqa .sq-bubble-title {
  font-size: 13px;
  font-weight: 700;
  color: #0f1111;
  display: block;
}

/* ==========================================================================
   5. ⚡ HIGH-DENSITY MICRO-THUMBNAILS DISCOVERY WALL (12 ITEMS)
   ========================================================================== */
:root body.theme-safqa .sq-micro-wall-box,
:root body.ty-theme-safqa .sq-micro-wall-box {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

:root body.theme-safqa .sq-micro-grid-12,
:root body.ty-theme-safqa .sq-micro-grid-12 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

:root body.theme-safqa .sq-micro-item-card,
:root body.ty-theme-safqa .sq-micro-item-card {
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  background: #fafafa;
  transition: all 0.15s ease;
  text-decoration: none !important;
}

:root body.theme-safqa .sq-micro-item-card:hover,
:root body.ty-theme-safqa .sq-micro-item-card:hover {
  background: #ffffff;
  border-color: #d5d9d9;
  box-shadow: 0 3px 10px rgba(15, 17, 17, 0.08);
  transform: translateY(-2px);
}

:root body.theme-safqa .sq-micro-thumb,
:root body.ty-theme-safqa .sq-micro-thumb {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 4px;
  padding: 8px;
  margin-bottom: 8px;
}

:root body.theme-safqa .sq-micro-thumb img,
:root body.ty-theme-safqa .sq-micro-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.2s;
}

:root body.theme-safqa .sq-micro-item-card:hover .sq-micro-thumb img,
:root body.ty-theme-safqa .sq-micro-item-card:hover .sq-micro-thumb img {
  transform: scale(1.05);
}

:root body.theme-safqa .sq-micro-title,
:root body.ty-theme-safqa .sq-micro-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  height: 2.7em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #0f1111;
  margin-bottom: 4px;
}

:root body.theme-safqa .sq-micro-price,
:root body.ty-theme-safqa .sq-micro-price {
  font-size: 14px;
  font-weight: 800;
  color: #B12704;
  font-family: var(--sq-font-num);
  margin-top: auto;
}

:root body.theme-safqa .sq-micro-btn,
:root body.ty-theme-safqa .sq-micro-btn {
  margin-top: 6px;
  background: #ffd814;
  border: 1px solid #fcd200;
  border-radius: 4px;
  height: 25px;
  font-size: 11px;
  font-weight: 700;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none !important;
}

:root body.theme-safqa .sq-micro-btn:hover,
:root body.ty-theme-safqa .sq-micro-btn:hover {
  background: #f7ca00;
}

/* ==========================================================================
   6. 👑 BIG FLAGSHIP SPOTLIGHT HERO + 4 SIDE COMPANIONS
   ========================================================================== */
:root body.theme-safqa .sq-spotlight-wrap,
:root body.ty-theme-safqa .sq-spotlight-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

:root body.theme-safqa .sq-spotlight-main-card,
:root body.ty-theme-safqa .sq-spotlight-main-card {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

:root body.theme-safqa .sq-spotlight-img-box,
:root body.ty-theme-safqa .sq-spotlight-img-box {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #f9f9f9;
  border-radius: 8px;
}

:root body.theme-safqa .sq-spotlight-img-box img,
:root body.ty-theme-safqa .sq-spotlight-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

:root body.theme-safqa .sq-spotlight-main-card:hover .sq-spotlight-img-box img,
:root body.ty-theme-safqa .sq-spotlight-main-card:hover .sq-spotlight-img-box img {
  transform: scale(1.06);
}

:root body.theme-safqa .sq-spotlight-info h4,
:root body.ty-theme-safqa .sq-spotlight-info h4 {
  font-size: 12px;
  font-weight: 800;
  color: #ffa41c;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

:root body.theme-safqa .sq-spotlight-info h3,
:root body.ty-theme-safqa .sq-spotlight-info h3 {
  font-size: 21px;
  font-weight: 800;
  color: #0f1111;
  line-height: 1.3;
  margin-bottom: 10px;
}

:root body.theme-safqa .sq-spotlight-features,
:root body.ty-theme-safqa .sq-spotlight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: #565959;
  margin-bottom: 16px;
  padding: 0;
}

:root body.theme-safqa .sq-spotlight-features li,
:root body.ty-theme-safqa .sq-spotlight-features li {
  display: flex;
  align-items: center;
  gap: 6px;
}

:root body.theme-safqa .sq-spotlight-features li i,
:root body.ty-theme-safqa .sq-spotlight-features li i {
  color: #007600;
  font-size: 12px;
}

:root body.theme-safqa .sq-spotlight-price-row,
:root body.ty-theme-safqa .sq-spotlight-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

:root body.theme-safqa .sq-spotlight-price,
:root body.ty-theme-safqa .sq-spotlight-price {
  font-size: 26px;
  font-weight: 900;
  color: #0f1111;
  font-family: var(--sq-font-num);
}

:root body.theme-safqa .sq-spotlight-cta,
:root body.ty-theme-safqa .sq-spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffd814;
  border: 1px solid #fcd200;
  color: #111111 !important;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 24px;
  border-radius: 100px;
  transition: background 0.15s;
  text-decoration: none !important;
}

:root body.theme-safqa .sq-spotlight-cta:hover,
:root body.ty-theme-safqa .sq-spotlight-cta:hover {
  background: #f7ca00;
}

:root body.theme-safqa .sq-spotlight-side-grid,
:root body.ty-theme-safqa .sq-spotlight-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

:root body.theme-safqa .sq-spotlight-mini-card,
:root body.ty-theme-safqa .sq-spotlight-mini-card {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: all 0.15s ease;
  text-decoration: none !important;
}

:root body.theme-safqa .sq-spotlight-mini-card:hover,
:root body.ty-theme-safqa .sq-spotlight-mini-card:hover {
  border-color: #d5d9d9;
  box-shadow: 0 4px 12px rgba(15, 17, 17, 0.08);
  transform: translateY(-2px);
}

:root body.theme-safqa .sq-spotlight-mini-thumb,
:root body.ty-theme-safqa .sq-spotlight-mini-thumb {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #ffffff;
  margin-bottom: 8px;
}

:root body.theme-safqa .sq-spotlight-mini-thumb img,
:root body.ty-theme-safqa .sq-spotlight-mini-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

:root body.theme-safqa .sq-spotlight-mini-name,
:root body.ty-theme-safqa .sq-spotlight-mini-name {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
  height: 2.7em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #0f1111;
  margin-bottom: 4px;
}

:root body.theme-safqa .sq-spotlight-mini-price,
:root body.ty-theme-safqa .sq-spotlight-mini-price {
  font-size: 15px;
  font-weight: 800;
  color: #0f1111;
  font-family: var(--sq-font-num);
  margin-top: auto;
}

/* ==========================================================================
   7. 🎁 INTERACTIVE "COMPLETE YOUR SETUP" BUNDLE BLOCK
   ========================================================================== */
:root body.theme-safqa .sq-bundle-box,
:root body.ty-theme-safqa .sq-bundle-box {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

:root body.theme-safqa .sq-bundle-items-row,
:root body.ty-theme-safqa .sq-bundle-items-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

:root body.theme-safqa .sq-bundle-product-group,
:root body.ty-theme-safqa .sq-bundle-product-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  flex-wrap: wrap;
}

:root body.theme-safqa .sq-bundle-single-item,
:root body.ty-theme-safqa .sq-bundle-single-item {
  background: #fafafa;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  padding: 12px;
  width: 180px;
  text-align: center;
}

:root body.theme-safqa .sq-bundle-single-item img,
:root body.ty-theme-safqa .sq-bundle-single-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
}

:root body.theme-safqa .sq-bundle-single-item .b-title,
:root body.ty-theme-safqa .sq-bundle-single-item .b-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
  color: #0f1111;
  margin-bottom: 4px;
}

:root body.theme-safqa .sq-bundle-single-item .b-price,
:root body.ty-theme-safqa .sq-bundle-single-item .b-price {
  font-size: 14px;
  font-weight: 800;
  color: #B12704;
  font-family: var(--sq-font-num);
}

:root body.theme-safqa .sq-bundle-plus,
:root body.ty-theme-safqa .sq-bundle-plus {
  font-size: 20px;
  font-weight: 900;
  color: #565959;
}

:root body.theme-safqa .sq-bundle-checkout-panel,
:root body.ty-theme-safqa .sq-bundle-checkout-panel {
  background: #fdfdfd;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  padding: 20px 24px;
  min-width: 280px;
  text-align: center;
}

:root body.theme-safqa .sq-bundle-checkout-panel .bundle-badge,
:root body.ty-theme-safqa .sq-bundle-checkout-panel .bundle-badge {
  display: inline-block;
  background: #ecfdf5;
  color: #007600;
  border: 1px solid #a7f3d0;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

:root body.theme-safqa .sq-bundle-total-price,
:root body.ty-theme-safqa .sq-bundle-total-price {
  font-size: 24px;
  font-weight: 900;
  color: #B12704;
  font-family: var(--sq-font-num);
  margin-bottom: 4px;
}

:root body.theme-safqa .sq-bundle-savings,
:root body.ty-theme-safqa .sq-bundle-savings {
  font-size: 12.5px;
  color: #565959;
  margin-bottom: 14px;
}

:root body.theme-safqa .sq-bundle-btn,
:root body.ty-theme-safqa .sq-bundle-btn {
  background: #ffd814;
  border: 1px solid #fcd200;
  border-radius: 100px;
  height: 36px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: #111111;
  width: 100%;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none !important;
}

:root body.theme-safqa .sq-bundle-btn:hover,
:root body.ty-theme-safqa .sq-bundle-btn:hover {
  background: #f7ca00;
}

/* ==========================================================================
   8. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  :root body.theme-safqa .sq-curated-row,
  :root body.ty-theme-safqa .sq-curated-row { grid-template-columns: repeat(3, 1fr); }
  :root body.theme-safqa .sq-story-bubbles-row,
  :root body.ty-theme-safqa .sq-story-bubbles-row { grid-template-columns: repeat(4, 1fr); }
  :root body.theme-safqa .sq-micro-grid-12,
  :root body.ty-theme-safqa .sq-micro-grid-12 { grid-template-columns: repeat(4, 1fr); }
  :root body.theme-safqa .sq-spotlight-wrap,
  :root body.ty-theme-safqa .sq-spotlight-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root body.theme-safqa .sq-curated-row,
  :root body.ty-theme-safqa .sq-curated-row { grid-template-columns: repeat(2, 1fr); }
  :root body.theme-safqa .sq-story-bubbles-row,
  :root body.ty-theme-safqa .sq-story-bubbles-row { grid-template-columns: repeat(4, 1fr); }
  :root body.theme-safqa .sq-micro-grid-12,
  :root body.ty-theme-safqa .sq-micro-grid-12 { grid-template-columns: repeat(3, 1fr); }
  :root body.theme-safqa .sq-spotlight-main-card,
  :root body.ty-theme-safqa .sq-spotlight-main-card { grid-template-columns: 1fr; }
  :root body.theme-safqa .sq-bundle-items-row,
  :root body.ty-theme-safqa .sq-bundle-items-row { flex-direction: column; align-items: stretch; }
  :root body.theme-safqa .sq-curated-head h2,
  :root body.ty-theme-safqa .sq-curated-head h2 { font-size: 18px; }
}

@media (max-width: 600px) {
  :root body.theme-safqa .sq-curated-row,
  :root body.ty-theme-safqa .sq-curated-row { grid-template-columns: 1fr; }
  :root body.theme-safqa .sq-story-bubbles-row,
  :root body.ty-theme-safqa .sq-story-bubbles-row { grid-template-columns: repeat(2, 1fr); }
  :root body.theme-safqa .sq-micro-grid-12,
  :root body.ty-theme-safqa .sq-micro-grid-12 { grid-template-columns: repeat(2, 1fr); }
  :root body.theme-safqa .sq-spotlight-side-grid,
  :root body.ty-theme-safqa .sq-spotlight-side-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   9. SEAMLESS LAYOUT & FOOTER TRANSITION (NO WHITE GAPS)
   ========================================================================== */
:root body.theme-safqa,
:root body.ty-theme-safqa,
:root body.theme-safqa #tygh_main_container,
:root body.ty-theme-safqa #tygh_main_container,
:root body.theme-safqa .tygh-content,
:root body.ty-theme-safqa .tygh-content,
:root body.theme-safqa .ty-mainbox-container,
:root body.ty-theme-safqa .ty-mainbox-container {
  background-color: #eaeded !important;
}

:root body.theme-safqa .tygh-content,
:root body.ty-theme-safqa .tygh-content {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

:root body.theme-safqa .amz-main-storefront-grid,
:root body.ty-theme-safqa .amz-main-storefront-grid {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

:root body.theme-safqa .tygh-content .container-fluid-row,
:root body.ty-theme-safqa .tygh-content .container-fluid-row {
  margin-bottom: 0 !important;
}

