:root {
  --primary: #f4d03f;
  --secondary: #fef9e7;
  --text-color: #2c3e50;
  --header-clr: #333;
  --accent: #e74c3c;
  --pad-x: 16px;
}


@media (min-width: 768px) {
  :root {
    --pad-x: 24px;
  }
}

@media (min-width: 1024px) {
  :root {
    --pad-x: 30px;
  }
}

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

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Banner (top ticker) */
.banner { background-color: var(--primary); color: var(--text-color); padding: 8px 0; text-align: center; font-weight: bold; }
.banner marquee { display:flex; font-size: 15px; }

/* Header container and elements (from sample HTML) */
header { width: 100%; position: relative; background-color: #ffffff; z-index: 1000; padding: 0 var(--pad-x); display: flex; align-items: center; min-height: 60px; }
.header-main { display: flex; align-items: center; width: 100%; max-width: 1200px; margin: 0 auto;}
.hamburger-menu { display: flex; flex-direction: column; cursor: pointer; z-index: 1000; padding: 5px; width: 40px; height: 40px; justify-content: center; align-items: center; }
.hamburger-menu span { display: block; width: 25px; height: 3px; background-color: #000; margin: 3px 0; transition: .3s; border-radius: 2px; }
.logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; color: black; text-transform: uppercase; letter-spacing: 1px; text-align: center; flex: 1; margin: 0 10px; }
.cart-container { position: relative; cursor: pointer; flex-shrink: 0; }

/* Responsive logo font sizes */
@media screen and (min-width: 320px) {
  .logo {
    font-size: 20px;
  }
}

@media screen and (min-width: 375px) {
  .logo {
    font-size: 27px;
  }
}

@media screen and (min-width: 425px) {
  .logo {
    font-size: 1.8rem;
  }
}
.cart-icon { width: 28px; height: 28px; display: block; object-fit: contain; }
.cart-counter { position: absolute; top: -8px; right: -8px; background-color: #ff6b35; color: #fff; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; min-width: 20px; }
.cart-counter.hidden { display: none; }
.dropdown-menu { position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; box-shadow: 0 4px 15px rgba(0,0,0,.1); z-index: 999; max-height: 0; overflow: hidden; transition: max-height .3s ease; border-top: 1px solid #eee; }
.dropdown-menu.active { max-height: 500px; }
.dropdown-menu .menu { display: block; margin: 0; padding: 0; }
.dropdown-menu .menu > li { display: block; }
.dropdown-menu ul { list-style: none; margin: 0; padding: 0; }
.dropdown-menu li { position: relative; list-style: none; }
.dropdown-menu li::marker { content: none; }
.dropdown-menu a { display: block; padding: 18px 20px; text-decoration: none; color: #333; font-weight: 500; font-size: 1.1rem; border-bottom: 1px solid #eee; transition: all .3s ease; }
.dropdown-menu a:hover { background-color: #f6f6f6; color: #ff6b35; padding-left: 30px; }
.dropdown-menu a:focus { background-color: #f6f6f6; color: #ff6b35; }
.dropdown-menu li:first-child > a, .dropdown-menu li.current-menu-item > a { background-color: #f6f6f6; color: #ff6b35; }

/* Subtle slide/opacity for dropdown content */
.dropdown-menu:not(.active) { pointer-events: none; }
.dropdown-menu .menu, .dropdown-menu ul { transition: transform .25s ease, opacity .25s ease; transform: translateY(-8px); opacity: 0; }
.dropdown-menu.active .menu, .dropdown-menu.active ul { transform: translateY(0); opacity: 1; }

.menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
  padding-right: 0;
  list-style: none;
}

.menu a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.menu a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

@media screen and (min-width: 768px) {
  header {
    min-height: 70px;
    padding: 0 var(--pad-x);
  }

  .header-main {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .menu {
    gap: 2rem;
    justify-content: flex-end;
    padding-right: 1rem;
  }

  .logo {
    font-size: 2.2rem;
  }

  .logo-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .about-content {
    padding: 2rem;
  }

  .timeline {
    padding-left: 2rem;
  }

  .contact-content {
    padding: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .social-links {
    flex-direction: row;
    gap: 2rem;
  }

  .social-link {
    width: auto;
    justify-content: flex-start;
  }

  .contact-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
  }

  .contact-icon {
    margin-right: 1rem;
    margin-bottom: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media screen and (min-width: 1024px) {
  header {
    min-height: 80px;
    padding: 0 var(--pad-x);
  }

  .header-main {
    gap: 2rem;
  }

  .logo {
    font-size: 2.6rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.cart-icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.cart-icon:hover {
  transform: scale(1.1);
}

/* Enhanced Slideshow with Navigation */
.slideshow {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Navigation Arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slide-arrow-prev {
  left: 20px;
}

.slide-arrow-next {
  right: 20px;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

.indicator:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Main Content */
main {
  padding: 2rem 0;
}

/* Logo Section (below slider) */
.logo-section {
  padding: 40px var(--pad-x);
}

.logo-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-items: center;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.logo-item img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.logo-text-top,
.logo-text-bottom {
  font-weight: 700;
  font-size: 0.8rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-text-top {
  margin-bottom: 2px;
}

.logo-item::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 15px;
  border-bottom: 2px solid #ffffff;
  border-radius: 50%;
}

/* Limited Time Banner Section - Fully Responsive */
/* Mobile-first approach: Full width and height without cropping */
.limited-time-banner-section {
  width: 100%;
  margin: 0 0 40px;
  padding: 0;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5; /* Fallback background color */
}

.limited-time-banner-wrapper {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Ensure proper display */
  overflow: hidden;
}

.limited-time-banner-image {
  width: 100%;
  height: 100%;
  /* Mobile: Use contain to prevent cropping, ensuring full image visibility */
  object-fit: contain;
  object-position: center;
  display: block;
}

h1, h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--header-clr);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 38px;
  line-height: 1.35;
}
@media screen and (min-width: 425px) {
  h2 {
   font-size: 40px;
  }
}


/* Products Section */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.product { background: #fff; border-radius: 15px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all .3s ease; position: relative; border: 2px solid transparent; box-shadow: 0 5px 15px rgba(0,0,0,.1); overflow: hidden; }

.product:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,.15); border-color: #000; }

.product img { width: 100%; max-width: 180px; height: auto; max-height: 180px; object-fit: contain; cursor: pointer; transition: all .3s ease; }

.product h3 { margin: 0; display: flex; align-items: center; justify-content: center; }

.button { display: inline-block; padding: 12px 25px; background-color: #fff; color: #000; text-decoration: none; border-radius: 25px; transition: all .3s ease; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; font-size: .9rem; letter-spacing: .5px; border: 2px solid #000; cursor: pointer; }

.button:hover { background-color: #000; color: #fff; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,.3); }

/* WooCommerce product grid to match home.html cards */
.woocommerce ul.products,
.woocommerce-page ul.products,
.wc-block-grid__products,
.wc-block-grid .wc-block-grid__products {
  list-style: none;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px;
  max-width: 1200px;
  justify-content: center;
}

/* ============================================
   UNIFIED PRODUCT CARD STYLES - GUTENBERG BLOCKS
   Applies to: Cart Page (New in store) - .wc-block-grid__product
   Matches exact styling of .woocommerce ul.products li.product
   ============================================ */

/* Product card container - unified with standard product cards */
.wc-block-grid__product {
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  margin-bottom: 35px !important;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent !important;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}

/* Product card hover effect - unified */
.wc-block-grid__product:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #000;
}

/* Product image link - unified styling - only contains image */
.wc-block-grid__product .wc-block-grid__product-link {
  width: 100% !important;
  flex: 1 1 auto !important;
  padding: 0 !important;
  display: block;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
}

/* Hide title inside link - we'll show it outside */
.wc-block-grid__product .wc-block-grid__product-link .wc-block-grid__product-title {
  display: none !important;
}

/* Product image container - unified */
.wc-block-grid__product .wc-block-grid__product-image {
  width: 100%;
  flex: 1 1 auto;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 0;
  min-height: 0;
  height: 100%;
}

/* Product image - unified styling - matches standard product cards */
.wc-block-grid__product .wc-block-grid__product-image img,
.wc-block-grid__product .wc-block-grid__product-image .product-thumbnail-container,
.wc-block-grid__product .wc-block-grid__product-image .product-thumbnail-container img {
  width: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  height: auto;
  margin: 0 !important;
  padding: 0;
  object-fit: cover !important;
  display: block;
  transition: transform 0.3s ease;
}

/* Product image hover effect - unified */
.wc-block-grid__product:hover .wc-block-grid__product-image img,
.wc-block-grid__product:hover .wc-block-grid__product-image .product-thumbnail-container img {
  transform: scale(1.05);
}

/* Product thumbnail container for image rotation - unified */
.wc-block-grid__product .wc-block-grid__product-image .product-thumbnail-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}

/* Product thumbnail image with smooth rotation transition - unified */
.wc-block-grid__product .wc-block-grid__product-image .product-thumbnail-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Rotating product images - smooth fade transition - unified */
.wc-block-grid__product .wc-block-grid__product-image .product-thumbnail-rotating {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Product price - unified styling for Cart page (New in store) */
.wc-block-grid__product .wc-block-grid__product-price {
  display: block !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #ff6b35;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* Hide rating - unified */
.wc-block-grid__product .wc-block-grid__product-rating {
  display: none !important;
}

/* Product title - show outside link, unified styling */
.wc-block-grid__product .wc-block-grid__product-title,
.wc-block-grid__product .product-info-container .wc-block-grid__product-title {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

/* Add to cart container - unified - matches product-info-container */
.wc-block-grid__product .wc-block-grid__product-add-to-cart {
  width: 100% !important;
  background: #FFD700 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-sizing: border-box;
  flex: 0 0 auto;
}

/* Group title and button together visually - create product-info-container equivalent */
.wc-block-grid__product .wc-block-grid__product-title {
  padding: 20px 15px 0 !important;
  margin-bottom: 0 !important;
}

.wc-block-grid__product .wc-block-grid__product-add-to-cart {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Add to cart button - unified styling */
.wc-block-grid__product .wc-block-grid__product-add-to-cart .wp-block-button__link {
  margin: 0 auto !important;
  width: fit-content !important;
  display: block;
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

/* Add to cart button hover - unified */
.wc-block-grid__product .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive grid columns */
@media screen and (min-width: 768px) {

  .logo-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .logo-item img { 
    width: 150px;
    height: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .wc-block-grid__products,
  .wc-block-grid .wc-block-grid__products {
    grid-template-columns: repeat(3, minmax(300px, 1fr)) !important;
  }
}
/* Remove pseudo-elements and ensure clean product list */
.woocommerce ul.products::before,
.woocommerce ul.products li.product::after {
  content: none;
  display: none;
}

/* Keeps result count + ordering inline and on-brand */
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  margin: 0 12px 24px 0;
  border: 1px solid #e2e2e2;
  border-radius: 999px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  white-space: nowrap;
}

.woocommerce .woocommerce-ordering select.orderby,
.woocommerce-page .woocommerce-ordering select.orderby {
  border: none;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit;
  padding: 0;
}

.woocommerce .woocommerce-ordering select.orderby:focus,
.woocommerce-page .woocommerce-ordering select.orderby:focus {
  outline: none;
}

/* ============================================
   UNIFIED PRODUCT CARD STYLES
   Applies to: Home page (Our Products), Shop page, Related Products
   All product cards use the same content-product.php template
   ============================================ */

/* Product card container - unified flex column layout - matches image exactly */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent !important;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 100% !important;
}

/* Product card hover effect - unified */
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #000;
}

/* Row 1: Product image link - unified styling */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
  width: 100% !important;
  flex: 1 1 auto !important;
  padding: 0 !important;
  display: block;
  text-align: center;
  overflow: hidden;
}

/* Product image - unified styling - matches image layout exactly */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link img,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link img,
.woocommerce-page ul.products li.product img,
.woocommerce ul.products li.product img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail,
.woocommerce-page ul.products li.product img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
  width: 100% !important;
  max-width: 100% !important;
  max-height: none !important;
  height: auto;
  margin: 0 !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.3s ease;
}

/* Product thumbnail container for image rotation */
.woocommerce ul.products li.product .product-thumbnail-container,
.woocommerce-page ul.products li.product .product-thumbnail-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Product thumbnail image with smooth rotation transition */
.woocommerce ul.products li.product .product-thumbnail-image,
.woocommerce-page ul.products li.product .product-thumbnail-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Rotating product images - smooth fade transition */
.woocommerce ul.products li.product .product-thumbnail-rotating,
.woocommerce-page ul.products li.product .product-thumbnail-rotating {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Product image hover effect */
.woocommerce ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img {
  transform: scale(1.05);
}

/* Product price - unified styling for Home, Shop, Related Products */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price,
.woocommerce ul.products li.product .product-info-container .price,
.woocommerce-page ul.products li.product .product-info-container .price {
  display: block !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #ff6b35;
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

/* Hide star rating - unified */
.woocommerce ul.products li.product .star-rating,
.woocommerce-page ul.products li.product .star-rating {
  display: none !important;
}

/* Row 2: Product info container - unified styling for title, price, and button - matches image exactly */
.woocommerce ul.products li.product .product-info-container,
.woocommerce-page ul.products li.product .product-info-container,
.wc-block-grid__product .product-info-container {
  width: 100%;
  background: #FFD700;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  box-sizing: border-box;
  flex: 0 0 auto;
  font-family: 'Montserrat', sans-serif;
}

/* Product title - unified styling - matches image exactly */
.woocommerce ul.products li.product .product-info-container .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .product-info-container .woocommerce-loop-product__title,
.wc-block-grid__product .product-info-container .wc-block-grid__product-title,
.wc-block-grid__product .product-info-container h2.wc-block-grid__product-title {
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

/* Add to cart button - unified styling */
.woocommerce ul.products li.product .product-info-container .button,
.woocommerce-page ul.products li.product .product-info-container .button,
.wc-block-grid__product .product-info-container .wc-block-grid__product-add-to-cart .wp-block-button__link {
  margin: 0 auto !important;
  width: fit-content !important;
  display: block;
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 1;
  padding: 10px;
  font-size: 10px;
  transition: all 0.3s ease;
}

/* Responsive price styling */
@media screen and (min-width: 375px) {
  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price,
  .woocommerce ul.products li.product .product-info-container .price,
  .woocommerce-page ul.products li.product .product-info-container .price,
  .wc-block-grid__product .wc-block-grid__product-price {
    font-size: 12px;
  }
}

@media screen and (min-width: 420px) {
  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price,
  .woocommerce ul.products li.product .product-info-container .price,
  .woocommerce-page ul.products li.product .product-info-container .price,
  .wc-block-grid__product .wc-block-grid__product-price {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .woocommerce ul.products li.product .price,
  .woocommerce-page ul.products li.product .price,
  .woocommerce ul.products li.product .product-info-container .price,
  .woocommerce-page ul.products li.product .product-info-container .price,
  .wc-block-grid__product .wc-block-grid__product-price {
    font-size: 1.2rem;
  }

  .woocommerce ul.products li.product .product-info-container .button,
  .woocommerce-page ul.products li.product .product-info-container .button,
  .wc-block-grid__product .product-info-container .wc-block-grid__product-add-to-cart .wp-block-button__link {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Add to cart button hover - unified */
.woocommerce ul.products li.product .product-info-container .button:hover,
.woocommerce-page ul.products li.product .product-info-container .button:hover,
.wc-block-grid__product .product-info-container .wc-block-grid__product-add-to-cart .wp-block-button__link:hover {
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* About Page Specific Styles */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: justify;
}

.timeline {
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--accent);
  border-radius: 50%;
}

.timeline-item h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.back-button {
  display: inline-block;
  margin: 2rem 0;
  padding: 10px 20px;
  background-color: var(--primary);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-button:hover {
  background-color: #e6c200;
}

/* Reviews */
.reviews {
  background: transparent;
  text-align: center;
  padding: 0 0 20px;
}

.reviews h2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.review-card { display: flex; justify-content: flex-start; align-items: flex-start; flex-direction: column; background: #fff; padding: 20px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,.1); transition: transform .3s ease; }
.review-card:hover { transform: translateY(-5px); }
.reviews blockquote { margin-top: 1rem; max-width: 600px; font-style: italic; font-size: 1.1rem; color: #333; text-align: left;}
.reviewer { margin-top: 1rem; color: #555; text-align: left;}

/* Review Stars */
.stars i {
  color: gold;
  font-size: 1.2rem;
  margin-right: 3px;
}

/* Footer */
.site-footer { background-color: #2b2b2b; color: #fff; }
.site-footer .container { text-align: center; padding: 12px var(--pad-x); }
.site-footer a { color: #ff6b35; text-decoration: none; }
.site-footer a:hover { opacity: .9; }

/* Contact Page Styles */
.contact-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-info h2,
.contact-form h2 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.contact-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--secondary);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 0;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  color: var(--accent);
}

.contact-details small {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Form Styles */
.contact-form {
  background-color: var(--secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--primary);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.submit-btn {
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
}

.submit-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

/* Social Media Section */
.social-section {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background-color: var(--secondary);
  border-radius: 12px;
}

.social-section h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.social-section p {
  color: #666;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-direction: column;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 500;
  width: 200px;
  justify-content: center;
}

.social-link i {
  font-size: 1.5rem;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-link.facebook {
  background-color: #1877f2;
  color: white;
}

.social-link.whatsapp {
  background-color: #25d366;
  color: white;
}

.social-link.youtube {
  background-color: #ff0000;
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* FAQ Section */
.faq-section {
  margin: 3rem 0;
}

.faq-section h2 {
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
}

.faq-item {
  background-color: var(--secondary);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  margin: 3rem 0;
}

.map-section h2 {
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.5rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-note {
  text-align: center;
  margin-top: 1rem;
  color: #666;
  font-style: italic;
}

/* Responsive Design */
/* Product detail page */
.single-product {
  background: #fff8ef;
}

.single-product main.container {
  background-color: #fff;
  padding: 0 var(--pad-x) 80px;
  overflow-x: hidden;
}

.single-product div.product {
  margin: 0 auto;
}

.product-detail-layout {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.single-product .wp-post-image {
  height: auto;
  max-width: 100%;
}

.product-detail-summary {
  background: #fff;
  border-radius: 28px;
  padding: 22px 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-summary-intro .product_title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #1c1409;
}

.product-summary-intro .woocommerce-product-details__short-description {
  margin: 0;
  font-size: 1.05rem;
  color: #5a4c3a;
  line-height: 1.5;
}

.product-detail-summary .price {
  display: none;
}

.variation-section {
  background: #fffdf8;
  border-radius: 22px;
  padding: 15px;
  box-shadow: inset 0 0 0 1px rgba(255, 198, 77, 0.15), 0 12px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.variation-section .section-title {
  margin: 0;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: #7a5a12;
}

.variation-section .section-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffe27a, #ffc043);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.variation-section .section-icon::after {
  content: '';
  width: 14px;
  height: 2px;
  background: #1c1409;
  position: absolute;
  transform: rotate(-30deg);
  border-radius: 999px;
  box-shadow: 4px 4px 0 #1c1409;
}

.variation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.variation-card {
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.variation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.variation-card.selected {
  border-color: #ffb703;
}

.variation-card .size {
  font-weight: 800;
  color: #1c1409;
  font-size: 1.1rem;
}

.variation-card .price {
  font-weight: 700;
  color: #6a5c4a;
  margin-bottom: 4px;
}

.variation-card .mini-add {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, #ffd45b, #fca311);
  color: #1c1409;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.variation-card .mini-add:hover {
  filter: brightness(0.96);
}

.product-description {
  display: grid;
  gap: 18px;
}

.product-description h3 {
  margin: 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid #f3e4cf;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1c1409;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
}

.product-description h3 + ul,
.product-description h3 + p {
  margin: 0;
  padding: 0 22px 22px;
  background: #fff;
  border: 1px solid #f3e4cf;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.product-description ul {
  list-style: none;
  padding: 0;
}

.product-description ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #4a3a28;
  line-height: 1.5;
  font-weight: 500;
}

.product-description ul li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fca311;
  left: 0;
  top: 9px;
}

.product-description p {
  color: #4a3a28;
  line-height: 1.6;
  margin-bottom: 0;
}

.product-hidden-commerce {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* WooCommerce tabs wrapper */
.single-product .woocommerce-tabs.wc-tabs-wrapper {
  margin: 60px auto 30px;
  padding-bottom: 50px;
  padding: 0;
  border: none;
  background: transparent;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: none;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs::before,
.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs::after {
  display: none;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li {
  margin: 0;
  padding: 0;
  border: none;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.85rem;
  color: #6a5c4a;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li a {
  display: block;
  padding: 12px 22px;
  color: inherit;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li.active {
  background: linear-gradient(180deg, #ffd45b, #fca311);
  color: #1c1409;
  box-shadow: 0 18px 35px rgba(252, 163, 17, 0.35);
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li#tab-title-reviews {
  flex-basis: 100%;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #1c1409;
  padding: 0;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li#tab-title-reviews.active {
  background: transparent;
  box-shadow: none;
  color: #1c1409;
}

@media (min-width: 768px) {
  .single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding-bottom: 70px;
  }
}

@media (min-width: 1024px) {
  .single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding-bottom: 90px;
  }
}

@media (min-width: 1440px) {
  .single-product .woocommerce-tabs.wc-tabs-wrapper {
    padding-bottom: 110px;
  }
}

.single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li#tab-title-reviews a {
  padding: 0;
  border-bottom: 3px solid #fca311;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: inherit;
  color: inherit;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel {
  background: #fff;
  color: #4a3a28;
  line-height: 1.6;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel h2,
.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-top: 0;
  color: #1c1409;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel p {
  margin-bottom: 1rem;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel ul {
  margin-left: 1.2rem;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel img,
.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel iframe,
.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel video {
  max-width: 100%;
  height: auto;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  display: block;
}

.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel pre,
.single-product .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel code {
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 540px) {
  .single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs {
    flex-direction: column;
  }

  .single-product .woocommerce-tabs.wc-tabs-wrapper ul.tabs li a {
    text-align: center;
  }
}

.single-product .commentlist .comment-text {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #f3e4cf;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a3a28;
}

.single-product .commentlist .comment-text p {
  margin-bottom: 0.8rem;
}

.single-product .commentlist .comment-text:last-child {
  margin-bottom: 0;
}

.single-product #review_form_wrapper .comment-reply-title {
  margin: 0 0 18px;
  font-size: 1.4rem;
  font-weight: 900;
  color: #1c1409;
}

.single-product #review_form_wrapper p {
  margin-bottom: 14px;
}

.single-product #review_form_wrapper label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #4a3a28;
}

.single-product #review_form_wrapper .comment-form-rating {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.single-product #review_form_wrapper .stars {
  display: inline-flex;
  gap: 6px;
  font-size: 1.2rem;
  color: #fca311;
}

.single-product #review_form_wrapper input[type="text"],
.single-product #review_form_wrapper input[type="email"],
.single-product #review_form_wrapper textarea {
  width: 100%;
  border: 1px solid #ead8bd;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.single-product #review_form_wrapper textarea {
  min-height: 130px;
  resize: vertical;
}

.single-product #review_form_wrapper input:focus,
.single-product #review_form_wrapper textarea:focus {
  border-color: #fca311;
  box-shadow: 0 0 0 3px rgba(252, 163, 17, 0.2);
  outline: none;
}

.single-product #review_form_wrapper .form-submit input[type="submit"] {
  background: linear-gradient(180deg, #ffd45b, #fca311);
  border: none;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  padding: 12px 28px;
  color: #1c1409;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-product #review_form_wrapper .form-submit input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {

  .single-product #review_form_wrapper .comment-form-rating {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  .single-product .commentlist .comment-text {
    padding: 22px 26px;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .single-product .commentlist .comment-text {
    padding: 26px 30px;
  }
}

/* Hide default variation UI while keeping it functional */
.single-product form.variations_form {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.single-product form.variations_form .single_variation,
.single-product form.variations_form .woocommerce-variation,
.single-product form.variations_form .single_add_to_cart_button,
.single-product form.variations_form .quantity,
.single-product form.variations_form .reset_variations {
  display: none !important;
}

@media (min-width: 425px) {
  .single-product main.container {
    padding: 0 var(--pad-x) 90px;
  }

  .product-detail-summary {
    padding: 26px 24px;
  }

  .variation-section {
    padding: 20px 22px;
  }
}

@media (min-width: 768px) {
  .product-detail-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .product-summary-intro .product_title {
    font-size: 2.8rem;
  }
}

@media (min-width: 1024px) {
  .single-product main.container {
    padding: 0 var(--pad-x) 120px;
  }

  .product-detail-media {
    padding: 36px;
  }

  .product-detail-summary {
    padding: 36px 34px;
  }
}

@media (min-width: 1440px) {
  .product-detail-layout {
    gap: 40px;
  }

  .product-detail-media,
  .product-detail-summary {
    border-radius: 36px;
  }

  .product-summary-intro .product_title {
    font-size: 3rem;
  }
}
/* Cart empty state */
.woocommerce-cart .cart-content { background: #fff; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,.1); overflow: hidden; margin-bottom: 30px; }
.woocommerce-cart .cart-empty { text-align:center; padding:60px 20px; }
.woocommerce-cart .cart-empty i { font-size:3rem; color:#ccc; margin-bottom:20px;}
.woocommerce-cart .cart-empty p { font-size:1.2rem; color:#666; margin-bottom:20px;}
.woocommerce-cart .cart-empty .button { display:inline-block; background:#ff6b35; color:#fff; padding:12px 25px; border-radius:25px; text-decoration:none; font-weight:bold;}
.woocommerce-cart .cart-empty .button:hover { background:#e55a2b;}

/* Block Cart empty title styled to match theme hero typography */
.wc-block-cart__empty-cart__title {
  margin: 20px auto;
}

/* Terms & Conditions layout (matches legacy static design) - Mobile First */
.terms-classic {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 1rem var(--pad-x);
}

.terms-classic__container {
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.terms-classic__header {
  background-color: #f1c40f;
  color: #000;
  text-align: center;
  padding: 24px 20px;
}

.terms-classic__header p {
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  color: #000;
  white-space: normal;
  line-height: 1.2;
}

.terms-classic__content {
  padding: 24px 20px;
}

.terms-classic__intro {
  background: #f8f9fa;
  padding: 20px;
  border-left: 4px solid #f1c40f;
  border-radius: 6px;
  margin-bottom: 24px;
}

.terms-classic__intro p {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.terms-classic__section {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.terms-classic__section:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.terms-classic__section-header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.terms-classic__section-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1c40f;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.terms-classic__section-title {
  font-size: 1.25rem;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
  display: block;
}

.terms-classic__section-body {
  flex: 1;
  min-width: 0;
}

.terms-classic__section-body h2 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.3;
  display: block;
}

.terms-classic__section-body p {
  margin-bottom: 10px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.terms-classic__section-body ul,
.terms-classic__section-body .terms-bullet-list {
  margin: 12px 0 12px 20px;
  color: #555;
}

.terms-classic__section-body li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5;
}

.terms-classic__contact-box {
  background-color: #f1c40f;
  color: #000;
  padding: 20px 18px;
  border-radius: 8px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

.terms-classic__contact-box h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: #000;
  line-height: 1.3;
}

.terms-classic__divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #000, transparent);
  margin: 16px 0;
  opacity: 0.4;
}

.terms-classic__contact-body p,
.terms-classic__contact-body div {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.terms-classic__footer {
  background: #f1c40f;
  color: #000;
  text-align: center;
  padding: 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Tablet and up (min-width: 768px) */
@media screen and (min-width: 768px) {
  .terms-classic {
    padding: 1.5rem var(--pad-x);
  }

  .terms-classic__container {
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  }

  .terms-classic__header {
    padding: 32px 24px;
  }

  .terms-classic__header p {
    font-size: 2rem;
  }

  .terms-classic__content {
    padding: 32px 24px;
  }

  .terms-classic__intro {
    padding: 22px;
    margin-bottom: 28px;
  }

  .terms-classic__intro p {
    font-size: 1.02rem;
  }

  .terms-classic__section {
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

  .terms-classic__section-header-row {
    gap: 14px;
    margin-bottom: 14px;
  }

  .terms-classic__section-number {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }

  .terms-classic__section-title {
    font-size: 1.4rem;
  }

  .terms-classic__section-body h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
  }

  .terms-classic__section-body p {
    font-size: 1.02rem;
  }

  .terms-classic__section-body ul,
  .terms-classic__section-body .terms-bullet-list {
    margin: 14px 0 14px 24px;
  }

  .terms-classic__section-body li {
    font-size: 1.02rem;
  }

  .terms-classic__contact-box {
    padding: 26px 22px;
    margin-top: 16px;
  }

  .terms-classic__contact-box h2 {
    font-size: 1.65rem;
    margin-bottom: 18px;
  }

  .terms-classic__divider {
    margin: 16px 0;
  }

  .terms-classic__contact-body p,
  .terms-classic__contact-body div {
    font-size: 1.02rem;
  }

  .terms-classic__footer {
    padding: 18px;
    font-size: 0.95rem;
  }
}

/* Desktop and up (min-width: 1024px) */
@media screen and (min-width: 1024px) {
  .terms-classic {
    padding: 2rem var(--pad-x);
  }

  .terms-classic__container {
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .terms-classic__header {
    padding: 40px 30px;
  }

  .terms-classic__header p {
    font-size: 2.5rem;
    white-space: nowrap;
  }

  .terms-classic__content {
    padding: 40px 30px;
  }

  .terms-classic__intro {
    padding: 25px;
    margin-bottom: 35px;
  }

  .terms-classic__intro p {
    font-size: 1.05rem;
  }

  .terms-classic__section {
    margin-bottom: 35px;
    padding-bottom: 25px;
  }

  .terms-classic__section-header-row {
    gap: 15px;
    margin-bottom: 15px;
  }

  .terms-classic__section-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }

  .terms-classic__section-title {
    font-size: 1.6rem;
  }

  .terms-classic__section-body h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .terms-classic__section-body p {
    font-size: 1.05rem;
  }

  .terms-classic__section-body ul,
  .terms-classic__section-body .terms-bullet-list {
    margin: 15px 0 15px 30px;
  }

  .terms-classic__section-body li {
    font-size: 1.05rem;
  }

  .terms-classic__contact-box {
    padding: 30px;
    margin-top: 20px;
  }

  .terms-classic__contact-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .terms-classic__divider {
    margin: 20px 0;
  }

  .terms-classic__contact-body p,
  .terms-classic__contact-body div {
    font-size: 1.05rem;
  }

  .terms-classic__footer {
    padding: 20px;
    font-size: 1rem;
  }
}

/* ============================================
   Product Single Page Styles (from product.html)
   ============================================ */

/* Product page body styling */
body.single-product {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #000000;
  line-height: 1.6;
}

/* Main Container */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Gallery - Full Width - matches image exactly */
.image-gallery {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  padding: 0 !important;
  position: relative;
  left: 0;
  right: 0;
}

.main-img-container {
  width: 100% !important;
  max-width: 100% !important;
  height: 350px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #ffffff;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
}

.main-img,
#mainImage {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block !important;
  transition: transform 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
}

.main-img-container:hover .main-img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  #mainImage {
    object-fit: contain;
  }
}

.thumb-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  flex-wrap: nowrap;
  padding: 8px 10px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: rgba(241, 196, 15, 0.5) transparent;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar styling for webkit browsers */
.thumb-container::-webkit-scrollbar {
  height: 6px;
}

.thumb-container::-webkit-scrollbar-track {
  background: transparent;
}

.thumb-container::-webkit-scrollbar-thumb {
  background: rgba(241, 196, 15, 0.5);
  border-radius: 3px;
}

.thumb-container::-webkit-scrollbar-thumb:hover {
  background: rgba(241, 196, 15, 0.7);
}

.thumb {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 12px;
  border: 3px solid rgba(241, 196, 15, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 2px;
  box-sizing: border-box;
}

.thumb:hover {
  border-color: #f1c40f;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(241, 196, 15, 0.3);
}

.thumb.active {
  border-color: #f1c40f;
  box-shadow: 0 6px 20px rgba(241, 196, 15, 0.3);
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10002;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(241, 196, 15, 0.8);
  transform: rotate(90deg);
}

/* Product Info Section */
.product-info-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-info-section .page-title {
  margin-top: 0px;
}

/* Hide WooCommerce form but keep it functional */
.product-hidden-commerce {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.product-hidden-commerce form {
  margin: 0 !important;
  padding: 0 !important;
}

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: left;
  color: #000000;
  margin-bottom: 0;
  margin-top: 30px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-title.second-line {
  padding-left: 0;
}

.subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  text-align: left;
  margin: 10px 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Price style - only for product detail page */
.single-product .price,
.product-info-section .price,
.product-detail-summary .price {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
  margin-top: 0;
  text-align: left;
}

.shipping-info {
  font-size: 0.9rem;
  color: #4ade80;
  margin-bottom: 30px;
  text-align: left;
}

.shipping-info a {
  color: #4ade80;
  text-decoration: underline;
}

.quantity-section {
  margin-bottom: 30px;
}

.quantity-label {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  text-align: left;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  padding: 8px 20px;
}

.quantity-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  padding: 0 15px;
  transition: color 0.2s;
}

.quantity-btn:hover {
  color: #000;
}

.quantity-value {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  min-width: 30px;
  text-align: center;
}

.add-to-cart-btn {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #8b4513;
  background-color: transparent;
  border: 2px solid #4ade80;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.add-to-cart-btn:hover {
  background-color: #4ade80;
  color: #fff;
}

/* Features Grid */
.features-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.features-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

.feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.feature-icon-circle {
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
}

.feature-icon-circle:hover {
  transform: scale(1.1) translateY(-5px);
}

.feature-icon-circle img {
  width: 100%;
  max-width: 55px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-icon-circle:hover img {
  transform: rotate(5deg);
}

.feature-text {
  font-size: 0.65rem;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  margin-top: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Halal Section */
.halal-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.halal-section {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  border: 2px solid #000;
  border-radius: 15px;
  flex-direction: column;
  text-align: center;
}

.halal-logo {
  width: 120px;
  height: 120px;
  background: #2d5f2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.halal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.halal-content {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.halal-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #000;
  margin: 0;
}

.halal-content strong {
  font-weight: 700;
}

/* Animated Secure Payment Section */
.secure-payment-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secure-payment-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.secure-payment-card {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 600px;
  width: 100%;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.shield-container {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 25px rgba(34, 197, 94, 0.4));
  transition: all 0.3s ease;
}

.shield-container:hover {
  filter: drop-shadow(0 15px 35px rgba(34, 197, 94, 0.5));
  transform: translateY(-3px);
}

.animated-shield {
  width: 100%;
  height: 100%;
}

.shield-bg {
  fill: url(#shieldGradient);
}

.shield-highlight {
  fill: url(#shieldHighlight);
  opacity: 0.3;
}

.shield-shadow {
  fill: rgba(0, 0, 0, 0.2);
}

.checkmark {
  stroke: white;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: drawCheck 2s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes drawCheck {
  0% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.secure-payment-text {
  flex: 1;
  text-align: center;
}

.secure-payment-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
  font-family: 'Montserrat', sans-serif;
}

.secure-payment-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Accordion Section */
.accordion-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.accordion-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

/* Only apply transition to chevron icon, not all icons */
.accordion-header .fa-chevron-down {
  transition: transform 0.3s ease;
}

/* Only rotate the chevron icon when accordion is active */
.accordion-header.active .fa-chevron-down {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 0;
}

.accordion-content.active {
  max-height: 500px;
  padding-top: 15px;
}

.accordion-content p {
  color: #666;
  line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.reviews-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Cart notification */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 25px;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  color: #f1c40f;
  padding: 22px 35px;
  border-radius: 16px;
  z-index: 10000;
  transform: translateX(400px);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  font-weight: 700;
  font-size: 1.08rem;
  border: 3px solid #f1c40f;
}

.cart-notification.show {
  transform: translateX(0);
}

.cart-notification i {
  margin-right: 14px;
  font-size: 1.4rem;
}

/* Responsive Styles - Mobile-first approach with min-width breakpoints */
@media (min-width: 420px) {

  .thumb {
    width: 80px;
    height: 80px;
  }

  .thumb-container {
    gap: 12px;
    padding: 8px 15px;
  }

  .features-container {
    padding: 20px 15px;
  }

  .features-grid {
    gap: 10px;
  }

  .feature-icon-circle img {
    max-width: 70px;
  }

  .feature-text {
    font-size: 0.75rem;
  }

  .main-img-container {
    height: 400px;
  }

  .page-title {
    font-size: 2rem;
  }


  .subtitle {
    font-size: 1rem;
  }

  .shield-container {
    width: 100px;
    height: 100px;
  }

  .secure-payment-text h3 {
    font-size: 1.5rem;
  }

  .secure-payment-text p {
    font-size: 1rem;
  }

  .secure-payment-card {
    padding: 25px;
    gap: 20px;
  }
}

@media (min-width: 420px) {
  .single-product .price,
  .product-info-section .price,
  .product-detail-summary .price {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .thumb {
    width: 90px;
    height: 90px;
  }

  .thumb-container {
    gap: 15px;
    padding: 8px 20px;
  }

  .accordion-header {
    font-size: 1.1rem;
  }

  .features-container {
    padding: 30px 20px;
  }

  .features-grid {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .feature-icon-circle img {
    max-width: 90px;
  }

  .feature-text {
    font-size: 0.85rem;
  }

  .main-img-container {
    height: 450px;
  }

  .product-info-section {
    padding: 35px;
  }

  .single-product .price,
  .product-info-section .price,
  .product-detail-summary .price {
    font-size: 2.2rem;
  }

  .secure-payment-container {
    padding: 30px;
  }

  .secure-payment-card {
    flex-direction: row;
    text-align: left;
    padding: 30px;
    gap: 30px;
  }

  .secure-payment-text {
    text-align: left;
  }

  .halal-section {
    flex-direction: row;
    text-align: left;
  }

  .halal-content {
    justify-content: flex-start;
  }

  .accordion-section {
    padding: 35px;
  }

  .reviews-section {
    padding: 35px;
  }
}

@media (min-width: 1024px) {
  .accordion-header {
    font-size: 1.2rem;
  }

  .features-container {
    padding: 30px 25px;
  }

  .features-grid {
    gap: 15px;
  }

  .feature-icon-circle img {
    max-width: 120px;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  .main-img-container {
    height: 500px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .single-product .price,
  .product-info-section .price,
  .product-detail-summary .price {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .product-info-section {
    padding: 40px;
  }

  .secure-payment-container {
    padding: 40px;
  }

  .shield-container {
    width: 120px;
    height: 120px;
  }

  .secure-payment-text h3 {
    font-size: 1.8rem;
  }

  .secure-payment-text p {
    font-size: 1.1rem;
  }

  .accordion-section {
    padding: 40px;
  }

  .reviews-section {
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .main-container {
    padding: 0 30px;
  }
}

@media (min-width: 1440px) {
  .main-container {
    max-width: 1200px;
  }

  .features-container {
    padding: 40px 30px;
  }

  .main-img-container {
    height: 550px;
  }

  .product-info-section {
    padding: 50px;
  }

  .single-product .price,
  .product-info-section .price,
  .product-detail-summary .price {
    font-size: 2.8rem;
  }

  .secure-payment-container {
    padding: 50px;
  }

  .accordion-section {
    padding: 50px;
  }

  .reviews-section {
    padding: 50px;
  }
}

/* WooCommerce Product Name - Black color, no underline */
.wc-block-components-product-name {
  color: #000;
  text-decoration: none;
}

.wc-block-components-product-name a {
  color: #000;
  text-decoration: none;
}

.wc-block-components-product-name a:hover,
.wc-block-components-product-name a:focus {
  color: #000;
  text-decoration: none;
}

/* WooCommerce Button Text - Match product button styling */
.wc-block-components-button__text {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

/* Button container - match product button styling */
.wc-block-components-button {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #000 !important;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wc-block-components-button:hover {
  background: #000 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.wc-block-components-button:hover .wc-block-components-button__text {
  color: #fff;
}

/* Ensure button text inherits button color */
.wc-block-components-button .wc-block-components-button__text {
  color: inherit;
}

/* Cart Page Header - "Your Cart" and "Continue shopping" */
.cart-page-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-page-header__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin: 0;
  margin-top: 20px;
  line-height: 1.2;
}

.cart-page-header__continue-shopping {
  color: #4ade80;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
  display: flex;
  justify-content: flex-end;
}

.cart-page-header__continue-shopping:hover,
.cart-page-header__continue-shopping:focus {
  color: #22c55e;
  text-decoration: underline;
}

/* Style existing cart titles if they exist */
.wp-block-woocommerce-cart .wc-block-cart__title,
.wp-block-woocommerce-cart-items-block h2,
.wp-block-woocommerce-cart-items-block .wc-block-cart-items__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Responsive adjustments */
@media (min-width: 420px) {
  .cart-page-header__title {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .cart-page-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 20px;
  }

  .cart-page-header__title {
    font-size: 2rem;
    margin: 0;
  }
}