/** Shopify CDN: Minification failed

Line 1007:0 Unexpected "<"
Line 1110:0 Unexpected "<"
Line 1143:1 Expected identifier but found "."
Line 1160:0 Unexpected "<"
Line 1227:0 Unexpected "<"

**/
/* ===== General Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* ===== Header Styling ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #0072EA;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo a img,
.header-logo img {
  max-height: 45px;
}

/* ===== Navigation Menu ===== */
.menu,
.header-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu li,
.header-menu li {
  position: relative;
}

.menu li a,
.header-menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

.menu li a:hover,
.header-menu li a:hover {
  color: #FFD700;
}

/* ===== Dropdown Menu ===== */
.dropdown-menu,
.header-menu ul {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  list-style: none;
}

.dropdown-menu a,
.header-menu ul li a {
  color: #333;
  padding: 10px 15px;
  display: block;
}

.dropdown-menu a:hover,
.header-menu ul li:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu,
.header-menu li:hover > ul {
  display: block;
}

/* ===== Cart Icon ===== */
.cart-icon {
  position: relative;
  font-size: 24px;
}

.cart-count {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  position: absolute;
  top: -8px;
  right: -12px;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

@media (max-width: 768px) {
  .menu,
  .header-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #0072EA;
    padding: 20px 0;
  }

  .menu.show,
  .header-menu.active {
    display: flex;
  }

  .menu li,
  .header-menu li {
    text-align: center;
    margin: 10px 0;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    background-color: #005BB5;
  }

  .dropdown-menu a {
    color: white;
  }

  .dropdown-menu a:hover {
    background-color: #004999;
  }
}

/* ===== Hero Section ===== */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: #e9f5ff;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero a {
  background: #0056b3;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

/* ===== Product Slider ===== */
.product__media-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  text-align: center;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  scroll-behavior: smooth;
}

.slider__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  max-width: 100%;
}

.product__media,
.media__image,
.product__media img {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .product__media,
  .media__image,
  .product__media img {
    max-height: 400px;
  }
}

/* ===== Add to Cart Section ===== */
.product__add-to-cart {
  background-color: #0072ea;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  transition: background 0.25s ease;
  margin-left: 8px;
}

.product__add-to-cart:hover {
  background-color: #005bb5;
}

input[type="number"] {
  width: 80px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

/* ===== Product Info Styling ===== */
.product__info-wrapper {
  padding: 0 1rem;
}

.product__info-wrapper h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.product__description {
  margin-top: 1.5rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Image Counter ===== */
.product__image-counter {
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
  color: #666;
}

/* ===== Badge Styling ===== */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #e74c3c;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
  text-transform: uppercase;
}

/* ===== Checkout Badges ===== */
.checkout-badges img {
  height: 40px;
  margin: 5px;
}

/* ===== Footer ===== */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.footer a {
  color: white;
  text-decoration: underline;
}
.product-gallery {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.thumbnail img:hover {
  border-color: #0072ea;
}

.main-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.main-product-image {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #e74c3c;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
  text-transform: uppercase;
}

.checkout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1rem 0;
}

.checkout-badges img {
  height: 36px;
}

.product__info-wrapper input[type="number"] {
  width: 80px;
  padding: 8px;
  font-size: 16px;
}

.product__add-to-cart {
  background-color: #0072ea;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: 8px;
}

.product__add-to-cart:hover {
  background-color: #005bb5;
}

@media screen and (max-width: 768px) {
  .product-gallery {
    flex-direction: column-reverse;
    align-items: center;
  }

  .thumbnails {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .main-image-container {
    max-width: 100%;
  }
}
.hot-image-container {
  width: 100%;
  position: relative;
}
/* === Hot Picks Slider Styles (moved from section) === */
.hot-picks-section {
  margin: 40px 0;
}
.hot-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.hot-image-container {
  width: 100%;
  position: relative;
}
.hot-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
}
.hot-image-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.hot-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: white;
  color: #ff0050;
  font-weight: bold;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.hot-product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  padding: 12px;
  min-width: 240px;
}
.product-title {
  font-size: 0.95rem;
  margin: 10px 0 4px;
}
.product-price {
  font-weight: bold;
  font-size: 1.1rem;
}
.cashback {
  font-size: 0.85rem;
  color: #555;
}
.view-all-btn {
  margin-top: 20px;
  text-align: center;
}
.view-all-btn a {
  background: #000;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}
.hot-image-wrapper {
  width: 100%;
  height: 180px; /* Or 200px depending on your desired visual */
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hot-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Fix oversized cart quantity buttons in Dawn */
.quantity__button {
  background: #f1f1f1 !important;
  color: #333 !important;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 36px;
  min-height: 36px;
}

.quantity__input {
  width: 50px !important;
  padding: 0.4rem !important;
  text-align: center;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Reduce screen-reader-only text for quantity buttons */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Make cart page responsive */
.cart__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Primary checkout button */
.cart__footer .cart__ctas .button {
  background-color: #111 !important;
  color: white !important;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 14px 24px;
  border-radius: 6px;
  text-transform: uppercase;
  transition: background 0.3s ease;
  width: 100%;
}

.cart__footer .cart__ctas .button:hover {
  background-color: #333 !important;
}
.product__description p,
.product__description li {
  font-size: 1rem;
  line-height: 1.6;
}

.product__description h2,
.product__description h3 {
  font-size: 1.4rem;
  margin-top: 24px;
  font-weight: bold;
}
.product-tabs {
  margin-top: 30px;
}
.product-tabs .tab {
  margin-bottom: 10px;
}
.product-tabs input[type="radio"] {
  display: none;
}
.product-tabs label {
  display: inline-block;
  background: #eee;
  padding: 10px 20px;
  margin-right: 5px;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
}
.product-tabs .tab-content {
  display: none;
  border: 1px solid #ddd;
  padding: 20px;
  border-top: none;
}
.product-tabs input:checked + label + .tab-content {
  display: block;
}
.original-price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
  font-size: 0.85rem;
}
.discounted-price {
  color: #e63946;
  font-weight: bold;
  font-size: 1rem;
}
.product-rating {
  font-size: 0.85rem;
  color: #fbc02d;
  margin-bottom: 4px;
}
.rating-count {
  color: #666;
  font-size: 0.8rem;
}

.inventory-status {
  font-size: 0.8rem;
  color: #e53935;
  font-weight: 500;
  margin-bottom: 6px;
}

.view-product-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #007aff;
  text-decoration: underline;
}
.hot-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.hot-image-wrapper img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hot-image-wrapper:hover img {
  transform: scale(1.05);
}

/* 👇 Quick Add Overlay */
.quick-add-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.hot-image-wrapper:hover .quick-add-overlay {
  transform: translateY(0%);
}

.quick-add-btn {
  background: #fff;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
}

.quick-add-btn:hover {
  background: #f4f4f4;
}
.hot-product-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #eee;
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* ⬛ Square image wrapper */
.hot-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  overflow: hidden;
}

.hot-image-wrapper img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hot-image-wrapper:hover img {
  transform: scale(1.05);
}

/* 🔥 Overlay Add to Cart */


.hot-image-wrapper:hover .quick-add-overlay {
  transform: translateY(0);
}

.quick-add-btn {
  background: #007aff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  width: 100%;
}

.quick-add-btn:hover {
  background: #005ecc;
}

/* 📱 Mobile fallback */
@media screen and (max-width: 768px) {
  .quick-add-overlay {
    display: none;
  }

  .mobile-add-to-cart {
    display: block;
    padding: 0 16px 16px;
  }
}

@media screen and (min-width: 769px) {
  .mobile-add-to-cart {
    display: none;
  }
}

/* 💬 Price Styling */
.product-price {
  padding: 0 16px;
}

.compare-at {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.price {
  color: #e53935;
  font-weight: bold;
}

.product-meta {
  font-size: 0.75rem;
  color: #999;
  padding: 0 16px;
}

.product-title {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 16px 4px;
  color: #222;
}
.search-bar {
  flex: 1;
  margin: 0 20px;
  max-width: 400px;
}

.search-bar form {
  display: flex;
  width: 100%;
}

.search-bar input[type="text"] {
  flex: 1;
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.search-bar button {
  padding: 10px 15px;
  font-size: 16px;
  background-color: #0072EA;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: #005bb5;
}
/* Positioning and visibility for desktop dropdown */
.dropdown-menu,
.sub-menu {
  display: none;
  position: absolute;
  background-color: white;
  top: 100%;
  left: 0;
  min-width: 220px;
  z-index: 1000;
  border: 1px solid #eee;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown:hover > .dropdown-menu,
.dropdown-sub:hover > .sub-menu {
  display: block;
}

/* Dropdown menu items */
.dropdown-menu a,
.sub-menu a {
  color: #333;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu a:hover,
.sub-menu a:hover {
  background-color: #f0f0f0;
}

/* Ensure dropdown parents are relatively positioned */
.dropdown,
.dropdown-sub {
  position: relative;
}

/* Mobile styles */
@media (max-width: 768px) {
  .main-navigation .menu {
    flex-direction: column;
  }

  .dropdown-menu,
  .sub-menu {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
  }

  .dropdown.open > .dropdown-menu,
  .dropdown-sub.open > .sub-menu {
    display: block;
  }
}
@media (max-width: 768px) {
  .logo img {
    max-height: 80px; /* Bigger logo on mobile */
    width: auto;
  }
}
/* Ensure menu text is visible in mobile */
.mobile-menu a, .mobile-menu li {
  color: white !important;
  font-weight: 600;
  font-size: 16px;
}

/* Improve spacing inside the mobile menu */
.mobile-menu {
  padding: 20px;
}

.header__icons svg {
  vertical-align: middle;
}
.hot-product-card {
  width: 100%;
  max-width: 300px; /* Controls card size — adjust if needed */
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hot-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  background-color: #f9f9f9;
  overflow: hidden;
}
.hot-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hot-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.hot-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hot-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
}

.hot-image-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hot-image-wrapper img {
  width: auto;
  height: 100%;
  object-fit: cover;
}
.hot-image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.hot-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.hot-image-wrapper:hover img {
  transform: scale(1.05);
}
<style>
.onbuy-slider-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.swiper-slide {
  max-width: 180px !important;
  width: 100%;
}

.onbuy-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  padding-bottom: 10px;
}

.onbuy-image {
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.onbuy-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.onbuy-info {
  padding: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}

.onbuy-title {
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.1;
  min-height: 2.2em;
  overflow: hidden;
}

.onbuy-price {
  font-size: 0.85rem;
  font-weight: bold;
  margin: 2px 0;
}

.onbuy-price .compare-price {
  text-decoration: line-through;
  color: #aaa;
  margin-right: 4px;
}

.onbuy-stars span {
  font-size: 13px;
  color: #f4c150;
}
.onbuy-stars .off {
  color: #ccc;
}

.onbuy-cart {
  margin-top: 4px;
  background: #007aff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 0.75rem;
  padding: 6px 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.onbuy-cart:hover {
  background: #005ecb;
}

@media screen and (max-width: 480px) {
  .swiper-slide {
    max-width: 150px;
  }
  .onbuy-title {
    font-size: 0.75rem;
  }
  .onbuy-cart {
    font-size: 0.7rem;
    padding: 5px 6px;
  }
}
</style>
.badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #ff5252;
  color: white;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: bold;
  z-index: 1;
}

.deal-badge {
  background-color: #009688;
}

.staff-badge {
  background-color: #3f51b5;
}

.hot-badge {
  background-color: #e53935;
}

.new-badge {
  background-color: #fbc02d;
}

.onbuy-image {
  position: relative; /* Needed for badge positioning */
}
...
@media screen and (max-width: 480px) {
  .swiper-slide {
    max-width: 160px;
  }
  .onbuy-title {
    font-size: 0.78rem;
  }
}

/* 👇 Add this to hide payment icons */
.onbuy-slider-section img[src*="payment"], 
.onbuy-slider-section img[alt*="payment"], 
.onbuy-slider-section .payment-icons,
.onbuy-slider-section [class*="payment"] {
  display: none !important;
}
</style>
.footer__payment {
  display: none !important;
}
/* 🚫 Hide all Shopify payment icons globally */
.list-payment,
.list-payment li,
.icon--full-color.payment-type-svg,
.footer__payment,
.product-card__payment,
.product-page .list-payment {
  display: none !important;
}
.klarna-placement {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #333;
}
.klarna-img img {
  max-height: 300px;
  width: auto;
}
/* assets/woamaz-sections.css */
:root {
  --woa-blue: #0072CE;       /* brand header/buttons */
  --cat-home: #A5D6A7;       /* Home & Garden */
  --cat-health: #F8BBD0;     /* Health & Beauty */
  --cat-baby: #AED581;       /* Baby & Children */
}

.woa-container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.woa-h1 { font-size: 2rem; margin: 1rem 0; }
.woa-btn { background: var(--woa-blue); color: #fff; padding: 10px 16px; border: 0; border-radius: 6px; cursor: pointer; }
.woa-card { background: #fff; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.06); overflow: hidden; transition:.2s; }
.woa-card:hover { box-shadow: 0 6px 18px rgba(0,0,0,.08); transform: translateY(-2px); }

.woa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .woa-grid { grid-template-columns: 1fr; } }

.woa-cat { padding: 28px; min-height: 140px; display:flex; align-items:center; justify-content:center; font-weight:600; border-radius: 12px; text-align:center; }
.woa-cat--baby { background: var(--cat-baby); }
.woa-cat--home { background: var(--cat-home); }
.woa-cat--health { background: var(--cat-health); }

/* Hero */
.woa-hero { min-height: 360px; position: relative; }
.woa-hero__overlay { position:absolute; left:8%; top:25%; max-width: 420px; background: rgba(255,255,255,.75); padding: 16px; border-radius: 8px; }

/* Swiper base */
.woa-swiper .swiper-slide { background:#fff; }

/* Sticky ATC on mobile (optional) */
@media (max-width: 768px) {
  .woa-sticky-atc {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: #fff; border-top: 1px solid rgba(0,0,0,.08);
    padding: 10px 12px; display:flex; gap:12px; align-items:center;
  }
  .woa-sticky-atc .price { font-weight: 700; }
  body.has-sticky-atc { padding-bottom: 72px; }
}
/* Global rating row */
.woa-rating-row{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.woa-rating-row .woa-stars{display:inline-flex;gap:4px;vertical-align:middle}
.woa-rating-row .woa-verified{display:inline-flex;align-items:center;gap:4px;color:#16a34a;font-weight:600;font-size:.9rem}
.woa-rating-row .woa-review-link{color:#0A66CC;font-size:.92rem;text-decoration:none}
.woa-rating-row .woa-review-link:hover{text-decoration:underline}
<style>
.woa-price-inline .woa-free{
  margin-left: 6px;
  font-weight: 600;
  color: #059669; /* premium green */
}
.woa-fd{font-size:.9rem;font-weight:700;color:#000;margin-left:.5rem;white-space:nowrap}
.product-image-wrapper {
  position: relative; /* allow absolute children */
}

.hot-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e53935;
  color: #fff;
  padding: 6px 10px;
  font-weight: 800;
  font-size: .78rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  z-index: 5; /* ensure it stays above the image */
}
/* --- Woamaz: brand buttons (#0072CE) --- */
:root { --woamaz-blue: #0072CE; }

.button,
.shopify-payment-button__button--unbranded,
button.shopify-payment-button__more-options {
  background: var(--woamaz-blue);
  border-color: var(--woamaz-blue);
  color: #fff;
}

.button:hover,
.shopify-payment-button__button--unbranded:hover,
button.shopify-payment-button__more-options:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.button,
.shopify-payment-button__button--unbranded {
  transition: transform .15s ease, filter .15s ease;
  border-radius: 6px;
}
/* --- Woamaz: hover swap --- */
.woamaz-card-media {
  position: relative;
  overflow: hidden;
}
.woamaz-card-media .woamaz-img {
  display: block;
  width: 100%;
  transition: opacity .25s ease;
}
.woamaz-card-media .secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.card-wrapper:hover .woamaz-card-media .secondary { opacity: 1; }
.card-wrapper:hover .woamaz-card-media .primary { opacity: 0; }

