/**
 * Aviato Store Components — full-bleed layout (no side gaps)
 * Loads after amazon-theme.css
 */

/* ── Kill Bootstrap fixed container widths ── */
html,
body.has-store-modern,
body.has-store-modern #body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body.has-store-modern .store-wrap,
body.has-store-modern .container {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: clamp(8px, 1.2vw, 20px) !important;
  padding-right: clamp(8px, 1.2vw, 20px) !important;
}

body.has-store-modern main,
body.has-store-modern .store-main,
body.has-store-modern .amz-home {
  flex: 1;
  width: 100%;
  max-width: 100%;
}

/* ── Header — edge to edge ── */
body.has-store-modern .store-header,
body.has-store-modern .store-header__top,
body.has-store-modern .store-catbar,
body.has-store-modern .store-footer {
  width: 100%;
  max-width: 100%;
}

body.has-store-modern .store-header__inner {
  width: 100%;
  gap: clamp(8px, 1vw, 14px);
}

body.has-store-modern .store-header__search {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none !important;
}

body.has-store-modern .store-header__search-cat {
  max-width: clamp(88px, 10vw, 140px);
}

body.has-store-modern .store-header__action-sub {
  font-size: 11px;
  color: #ccc;
  line-height: 1.1;
}

body.has-store-modern .store-catbar__inner {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.has-store-modern .store-catbar__inner::-webkit-scrollbar {
  display: none;
}

@media (max-width: 991px) {
  body.has-store-modern .store-header__action-sub {
    display: none;
  }

  body.has-store-modern .store-header__action-label {
    font-size: 10px;
  }

  body.has-store-modern .store-header__search input {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body.has-store-modern .store-header__search-cat {
    display: none;
  }

  body.has-store-modern .store-wrap,
  body.has-store-modern .container {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
}

body.has-store-modern .store-mobile-nav__panel {
  width: min(320px, 88vw);
}

/* ── Hero — full bleed ── */
body.has-store-modern .c-hero,
body.has-store-modern .amz-hero {
  width: 100%;
  max-width: 100%;
}

body.has-store-modern .c-hero__inner {
  max-width: min(720px, 100%);
}

@media (max-width: 767px) {
  body.has-store-modern .amz-hero {
    min-height: 200px;
    padding: 18px 0 90px;
    margin-bottom: -70px;
  }

  body.has-store-modern .c-hero__cta {
    width: 100%;
    text-align: center;
  }
}

/* ── Section boxes — full width ── */
body.has-store-modern .c-section,
body.has-store-modern .amz-box {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.has-store-modern .c-section__head,
body.has-store-modern .amz-box__head {
  flex-wrap: wrap;
  gap: 8px 16px;
}

body.has-store-modern .c-section__title,
body.has-store-modern .amz-box__head h2 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

/* ── Category grid — fill row ── */
body.has-store-modern .c-cat-grid,
body.has-store-modern .quick-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  width: 100%;
}

@media (max-width: 1600px) {
  body.has-store-modern .c-cat-grid,
  body.has-store-modern .quick-cat-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1200px) {
  body.has-store-modern .c-cat-grid,
  body.has-store-modern .quick-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body.has-store-modern .c-cat-grid,
  body.has-store-modern .quick-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  body.has-store-modern .c-cat-grid,
  body.has-store-modern .quick-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

body.has-store-modern .c-cat-grid__item,
body.has-store-modern .quick-cat-grid__item {
  min-width: 0;
}

body.has-store-modern .c-cat-grid__img img,
body.has-store-modern .quick-cat-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Compact category strip — always one row ── */
body.has-store-modern .compact-cat-section {
  margin-bottom: 16px;
  width: 100%;
}

body.has-store-modern .compact-cat-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  overflow: hidden;
}

body.has-store-modern .compact-cat-strip__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 4px;
  border: 1px solid #d5d9d9;
  border-radius: 6px;
  background: #fff;
  text-decoration: none;
  color: #0f1111;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

body.has-store-modern .compact-cat-strip__item:hover {
  border-color: #007185;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: #007185;
}

body.has-store-modern .compact-cat-strip__thumb {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

body.has-store-modern .compact-cat-strip__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body.has-store-modern .compact-cat-strip__label {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 575px) {
  body.has-store-modern .compact-cat-strip__label {
    font-size: 9px;
  }

  body.has-store-modern .compact-cat-strip__thumb {
    width: 22px;
    height: 22px;
  }

  body.has-store-modern .compact-cat-strip__item {
    padding: 5px 2px;
    gap: 3px;
  }
}

/* ── Product grid — 6 per row, full width ── */
body.has-store-modern .c-product-grid,
body.has-store-modern .product-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.has-store-modern .product-grid.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.has-store-modern .product-grid__col {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  display: flex !important;
}

body.has-store-modern .product-grid > .store-empty {
  grid-column: 1 / -1;
}

@media (max-width: 1200px) {
  body.has-store-modern .c-product-grid,
  body.has-store-modern .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  body.has-store-modern .c-product-grid,
  body.has-store-modern .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body.has-store-modern .c-product-grid,
  body.has-store-modern .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
}

/* ── Product card — stretch in cell ── */
body.has-store-modern .c-product-card,
body.has-store-modern .amz-product-card {
  width: 100%;
  height: 100%;
}

body.has-store-modern .c-product-card .product-thumb,
body.has-store-modern .product-item .product-thumb {
  height: clamp(170px, 15vw, 220px) !important;
  min-height: 170px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  background: #fff !important;
}

body.has-store-modern .c-product-card .product-thumb .product-thumb__link,
body.has-store-modern .product-item .product-thumb .product-thumb__link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100%;
  height: 100%;
  padding: 10px;
}

body.has-store-modern .c-product-card .product-thumb img,
body.has-store-modern .c-product-card .product-card__img,
body.has-store-modern .product-item .product-thumb img,
body.has-store-modern .product-item .product-thumb .product-card__img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.has-store-modern .c-product-card .product-content h4 {
  min-height: auto;
  max-height: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.has-store-modern .c-product-card .product-card__cta,
body.has-store-modern .c-product-card .btn-affiliate-buy {
  width: 100%;
  text-align: center;
}

/* ── Deal shelf — full width grid ── */
body.has-store-modern .c-deal-shelf,
body.has-store-modern .deal-shelf {
  width: 100%;
  max-width: 100%;
  margin-bottom: clamp(12px, 1.5vw, 20px);
  background: var(--amz-card, #fff);
  border-radius: 4px;
  padding: clamp(12px, 1.5vw, 20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

body.has-store-modern .deal-shelf__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}

body.has-store-modern .deal-shelf__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

body.has-store-modern .deal-shelf__grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: clamp(8px, 1vw, 14px) !important;
  width: 100%;
}

@media (max-width: 1200px) {
  body.has-store-modern .deal-shelf__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  body.has-store-modern .deal-shelf__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  body.has-store-modern .deal-shelf__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
}

body.has-store-modern .deal-shelf__img {
  height: clamp(170px, 15vw, 210px);
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

body.has-store-modern .deal-shelf__img img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

body.has-store-modern .deal-shelf__item.amz-box {
  padding: 10px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: none;
  border: 1px solid #e7e7e7;
}

body.has-store-modern .deal-shelf__buy {
  width: 100%;
}

/* ── Page header / footer ── */
body.has-store-modern .c-page-header,
body.has-store-modern .store-page-header {
  width: 100%;
}

body.has-store-modern .store-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  width: 100%;
}

@media (max-width: 991px) {
  body.has-store-modern .store-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  body.has-store-modern .store-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Shop toolbar ── */
body.has-store-modern .shop-category-nav {
  flex: 1 1 100%;
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  scrollbar-width: none;
}

body.has-store-modern .shop-category-nav::-webkit-scrollbar {
  display: none;
}

body.has-store-modern .shop-category-nav__link {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 767px) {
  body.has-store-modern .shop-sort-form {
    width: 100%;
  }

  body.has-store-modern .shop-sort-form select {
    width: 100%;
  }
}

body.has-store-modern .deals-cat-banner {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

body.has-store-modern .deals-cat-banner img {
  width: 100%;
  display: block;
  max-height: 260px;
  object-fit: cover;
}

@media (max-width: 991px) {
  body.has-store-modern .products.section .col-md-9,
  body.has-store-modern .products.section .col-md-3 {
    width: 100%;
    float: none;
  }
}

body.has-store-modern .deals-compare-wrap,
body.has-store-modern .table-responsive {
  width: 100%;
  overflow-x: auto;
}

body.has-store-modern .affiliate-disclosure-bar .container {
  width: 100% !important;
  max-width: 100% !important;
}

/* ══════════════════════════════════════
   LISTING PAGES — category, shop, search
   ══════════════════════════════════════ */

body.has-store-modern .c-catalog-page {
  padding: 12px 0 32px;
}

body.has-store-modern .c-page-header {
  background: var(--amz-bg, #eaeded);
  padding: 14px 0 10px;
  border-bottom: 1px solid #d5d9d9;
}

body.has-store-modern .c-flash-wrap {
  padding-top: 12px;
  padding-bottom: 0;
}

body.has-store-modern .c-banner {
  padding: 12px 0 0;
}

body.has-store-modern .c-banner__inner {
  border-radius: 4px;
  overflow: hidden;
  max-height: 280px;
}

body.has-store-modern .c-banner__inner img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

body.has-store-modern .c-catalog {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

body.has-store-modern .c-catalog__sidebar-wrap {
  min-width: 0;
}

@media (min-width: 992px) {
  body.has-store-modern .c-catalog__sidebar-wrap {
    position: sticky;
    top: 72px;
  }

  body.has-store-modern .c-filter-drawer__toggle {
    display: none !important;
  }

  body.has-store-modern .c-filter-drawer .c-filter {
    display: block !important;
  }
}

@media (max-width: 991px) {
  body.has-store-modern .c-catalog {
    grid-template-columns: 1fr;
  }

  body.has-store-modern .c-filter-drawer__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #d5d9d9;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
  }

  body.has-store-modern .c-filter-drawer:not([open]) .c-filter {
    display: none;
  }
}

body.has-store-modern .c-filter {
  padding: 16px !important;
  margin-bottom: 0;
}

body.has-store-modern .c-filter__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.has-store-modern .c-filter__group {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e7e7;
}

body.has-store-modern .c-filter__group:last-of-type {
  border-bottom: 0;
}

body.has-store-modern .c-filter__group h5 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

body.has-store-modern .c-filter__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #565959;
  margin-bottom: 6px;
  cursor: pointer;
}

body.has-store-modern .c-filter__price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

body.has-store-modern .c-filter__price-row span {
  font-size: 12px;
  color: #888;
}

body.has-store-modern .c-filter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body.has-store-modern .c-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px !important;
  margin-bottom: 14px;
}

body.has-store-modern .c-toolbar__count {
  margin: 0;
  font-size: 14px;
  color: #565959;
  font-weight: 600;
}

body.has-store-modern .c-toolbar__count--solo {
  margin: 0 0 14px;
}

body.has-store-modern .c-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.has-store-modern .c-toolbar__sort label {
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
}

body.has-store-modern .c-toolbar__sort select {
  min-width: 180px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #d5d9d9;
}

body.has-store-modern .c-shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px !important;
  margin-bottom: 12px;
}

body.has-store-modern .c-deals-intro {
  padding: 12px 16px !important;
  margin-bottom: 14px;
}

body.has-store-modern .c-deals-intro p {
  margin: 0;
  font-size: 14px;
  color: #565959;
}

body.has-store-modern .c-search-bar {
  display: flex;
  gap: 10px;
  padding: 12px !important;
  margin-bottom: 16px;
}

body.has-store-modern .c-search-bar input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border-radius: 4px;
}

body.has-store-modern .c-search-bar button {
  white-space: nowrap;
  height: 42px;
}

body.has-store-modern .c-catalog__main .c-product-grid,
body.has-store-modern .c-catalog__main .product-grid {
  margin-bottom: 8px;
}

/* Pagination */
body.has-store-modern .store-pagination {
  margin-top: 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  text-align: center;
}

body.has-store-modern .store-pagination .pagination > li > a,
body.has-store-modern .store-pagination .pagination > li > span {
  min-width: 36px;
  height: 36px;
  line-height: 34px;
  border-radius: 4px !important;
  border-color: #d5d9d9 !important;
  color: #007185 !important;
}

body.has-store-modern .store-pagination .pagination > .active > span {
  background: #232f3e !important;
  border-color: #232f3e !important;
  color: #fff !important;
}

body.has-store-modern .store-pagination__info {
  margin: 10px 0 0;
  font-size: 13px;
  color: #565959;
}

/* Product card meta actions */
body.has-store-modern .product-card__meta-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  justify-content: center;
}

body.has-store-modern .product-card__meta-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #d5d9d9;
  border-radius: 4px;
  background: #fff;
  color: #565959;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 18px;
}

body.has-store-modern .product-card__meta-btn.is-active {
  background: #232f3e;
  border-color: #232f3e;
  color: #fff;
}

body.has-store-modern .product-card__meta-btn:hover {
  border-color: #007185;
  color: #007185;
}

/* Compare page */
body.has-store-modern .c-compare-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 16px !important;
  margin-bottom: 14px;
}

body.has-store-modern .c-compare-bar p {
  margin: 0;
  font-size: 14px;
}

body.has-store-modern .c-compare-bar__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.has-store-modern .c-compare-table {
  padding: 0 !important;
  overflow: hidden;
}

body.has-store-modern .c-compare-product-head img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

body.has-store-modern .c-compare-product-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  min-width: 160px;
}

body.has-store-modern .c-compare-mrp {
  text-decoration: line-through;
  color: #888;
}

body.has-store-modern .c-stock--in { color: #067d62; font-weight: 600; }
body.has-store-modern .c-stock--out { color: #b12704; font-weight: 600; }

@media (max-width: 767px) {
  body.has-store-modern .c-toolbar,
  body.has-store-modern .c-shop-bar,
  body.has-store-modern .c-compare-bar {
    flex-direction: column;
    align-items: stretch;
  }

  body.has-store-modern .c-toolbar__sort,
  body.has-store-modern .c-toolbar__sort select {
    width: 100%;
  }

  body.has-store-modern .c-search-bar {
    flex-direction: column;
  }

  body.has-store-modern .c-search-bar button {
    width: 100%;
  }
}

/* SEO / trust / compliance UI */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #131921;
  color: #fff;
  padding: 14px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-consent__inner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  flex: 1 1 280px;
}

.cookie-consent__inner a {
  color: #febd69;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.store-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 8px;
}

.store-trust-badges__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #ddd;
}

.store-trust-badges__item i {
  color: #febd69;
  font-size: 18px;
}

.store-share {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
}

.store-share__label {
  font-size: 13px;
  color: #565959;
  font-weight: 600;
}

.store-share__btn {
  font-size: 12px;
  padding: 4px 10px;
  border: 1px solid #d5d9d9;
  border-radius: 4px;
  color: #007185;
  text-decoration: none;
}

.store-share__btn:hover {
  background: #f7fafa;
  text-decoration: none;
}

.store-pros-list,
.store-cons-list {
  margin: 0;
  padding-left: 18px;
}

.store-pros-list li,
.store-cons-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.store-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.store-blog-card {
  border: 1px solid #e3e6e6;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.store-blog-card__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.store-blog-card__body {
  padding: 16px;
}

.store-blog-card__meta {
  font-size: 12px;
  color: #888;
  margin: 0 0 8px;
}

.store-blog-card__title {
  font-size: 18px;
  margin: 0 0 8px;
}

.store-blog-card__excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.store-footer__col--wide {
  grid-column: span 1;
}

.store-footer__newsletter-text {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 10px;
}

.store-footer__newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.store-footer__newsletter-form input[type="email"] {
  flex: 1 1 180px;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #555;
  background: #232f3e;
  color: #fff;
}

.store-footer__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-footer__social a {
  color: #febd69;
  font-size: 13px;
}

@media (max-width: 991px) {
  .store-trust-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .store-trust-badges,
  .store-blog-grid {
    grid-template-columns: 1fr;
  }
}

