/*
Theme Name: DivineFit Pro
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #ffffff;
  color: #1f2d1f;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 32px;
}

/* ================= HERO ================= */

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 60px;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
}

.hero-slide img {
  width: 100%;
  display: block;
}

/* ================= CONCERN ================= */

.concern-section {
  padding: 40px 0 80px;
}

.concern-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.concern-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #f3f7ee;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.concern-tab img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.concern-tab.active {
  background: #dcefd3;
}

/* ================= PRODUCTS ================= */

.products-wrapper {
  max-width: 1300px;
  margin: auto;
  background: #f7faf4;
  padding: 50px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  position: relative;
}

.product-card img {
  max-width: 100%;
}

.sale-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d8f0c8;
  color: #1f7a1f;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.product-card h3 {
  font-size: 18px;
  margin: 12px 0 6px;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: #1a7f37;
}

.btn-cart {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background: #2f5d2f;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .products-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ================= VIEW ALL ================= */

.view-all-wrap {
  text-align: center;
  margin-top: 30px;
}

.view-all-link {
  font-size: 16px;
  font-weight: 500;
  color: #2f5d2f;
  text-decoration: none;
}
/* ================= CATEGORY CIRCLE SECTION ================= */

.category-circle-section {
  padding: 70px 0;
}

.category-circle-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  text-align: center;
}

.category-circle-item {
  text-decoration: none;
  color: #1f2d1f;
}

.circle-img {
  width: 160px;
  height: 160px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f1;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .category-circle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .category-circle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .circle-img {
    width: 130px;
    height: 130px;
  }

  .circle-title {
    font-size: 16px;
  }
}
/* ================= FEATURED PRODUCT SLIDER ================= */

.featured-products {
  padding: 80px 0;
}

.featured-slider-wrapper {
  position: relative;
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}

.featured-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.fp-slide {
  flex: 0 0 calc(25% - 22.5px); /* 4 at a time */
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.fp-slide img {
  width: 100%;
  border-radius: 16px;
}

.fp-slide h3 {
  font-size: 18px;
  margin: 12px 0;
}

.fp-slide .price {
  font-size: 18px;
  font-weight: 600;
  color: #1a7f37;
}

/* Arrows */
.fp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.fp-prev { left: -20px; }
.fp-next { right: -20px; }

/* Responsive */
@media (max-width: 1024px) {
  .fp-slide { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 600px) {
  .fp-slide { flex: 0 0 100%; }
}
/* ================= POWER BLAST PROMO BANNER ================= */

.powerblast-banner {
  padding: 80px 0;
}

.powerblast-inner {
  max-width: 1300px;
  margin: auto;
  background: linear-gradient(135deg, #0b2e1a, #1e5d3a);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 60px;
  gap: 40px;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
}

.powerblast-content {
  max-width: 520px;
}

.powerblast-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 16px;
}

.powerblast-content h2 {
  font-size: 44px;
  font-weight: 700;
  margin: 10px 0;
  color: #ffffff;
}

.powerblast-sub {
  font-size: 18px;
  color: #d7f5e2;
  margin-bottom: 22px;
}

.powerblast-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.powerblast-features li {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.powerblast-features li::before {
  content: "β";
  position: absolute;
  left: 0;
  color: #9be37c;
  font-weight: bold;
}

.powerblast-cta {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #0b2e1a;
  background: #9be37c;
  padding: 12px 24px;
  border-radius: 30px;
}

.powerblast-image {
  text-align: right;
}

.powerblast-image img {
  max-width: 360px;
  width: 100%;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .powerblast-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .powerblast-image {
    text-align: center;
  }

  .powerblast-content h2 {
    font-size: 34px;
  }
}
/* ================= COMBO SECTION ================= */

.combo-section {
  padding: 80px 0;
  background: #ffffff;
}

.combo-section h2 {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

/* Combo cards */
.combo-wrapper .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.combo-wrapper .woocommerce ul.products li.product {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.combo-wrapper .woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

/* Combo image */
.combo-wrapper .woocommerce ul.products li.product img {
  max-width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

/* Sale badge (Save βΉxx) */
.combo-wrapper .woocommerce span.onsale {
  background: #d8f0c8;
  color: #1f7a1f;
  font-size: 13px;
  border-radius: 20px;
  padding: 6px 12px;
  left: 12px;
  top: 12px;
}

/* Product title */
.combo-wrapper .woocommerce ul.products li.product h2 {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  margin: 10px 0;
}

/* Rating */
.combo-wrapper .woocommerce .star-rating {
  margin: 8px auto;
}

/* Price */
.combo-wrapper .woocommerce ul.products li.product .price {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.combo-wrapper .woocommerce ul.products li.product .price del {
  font-size: 14px;
  color: #999;
  margin-left: 6px;
}

/* Hide add to cart button (as per reference) */
.combo-wrapper .woocommerce ul.products li.product .button {
  display: none;
}

/* View all */
.view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

.view-all-link {
  font-size: 15px;
  font-weight: 500;
  color: #2f5d2f;
  border-bottom: 2px solid #2f5d2f;
  padding-bottom: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .combo-wrapper .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .combo-wrapper .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}
/* ================= TRUST BAR FIX ================= */

.trust-bar {
  position: relative;
  z-index: 999;
  width: 100%;
  background: #2f5d2f;
  overflow: hidden;
  padding: 18px 0;
  margin: 0;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 22s linear infinite;
}

.trust-track span {
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

/* animation */
@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .trust-track span {
    font-size: 14px;
    padding: 0 24px;
  }
}

@media (max-width: 480px) {
  .trust-track span {
    font-size: 13px;
    padding: 0 18px;
  }
}
* ================= BRAND COMPARISON ================= */

.brand-comparison {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.comparison-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.comparison-inner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .brand-comparison {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .brand-comparison {
    padding: 50px 0;
  }

  .comparison-inner img {
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .brand-comparison {
    padding: 40px 0;
  }

  .comparison-inner img {
    border-radius: 14px;
  }
}
/* ================= CUSTOMER REVIEWS ================= */

.customer-reviews {
  padding: 80px 20px 60px;
  text-align: center;
}

.customer-reviews h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.reviews-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #f7faf4;
  border-radius: 20px;
  padding: 40px 30px;
}

.review-card {
  display: none;
}

.review-card.active {
  display: block;
}

.review-card .stars {
  color: #2ecc71;
  font-size: 18px;
  margin-bottom: 15px;
}

.review-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.review-card strong {
  font-size: 15px;
  color: #000;
}

.review-dots {
  margin-top: 18px;
}

.review-dots .dot {
  height: 8px;
  width: 8px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.review-dots .dot.active {
  background: #2f5d2f;
}

/* Responsive */
@media (max-width: 768px) {
  .customer-reviews h2 {
    font-size: 26px;
  }

  .review-card p {
    font-size: 15px;
  }
}
/* ================= FINEST QUALITY SECTION ================= */

.finest-quality {
  padding: 80px 20px 70px;
  text-align: center;
  background: #ffffff;
}

.finest-quality h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.finest-desc {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* Features Row */
.quality-features {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.quality-item {
  text-align: center;
}

.quality-item p {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

/* Icon Circle */
.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* Icon Colors */
.icon.green { background: #e6f4df; }
.icon.peach { background: #fdeee6; }
.icon.mint  { background: #e7f6f1; }
.icon.purple{ background: #f3e9f8; }
.icon.yellow{ background: #fdf3d9; }
.icon.blue  { background: #e8f0fa; }

/* Responsive */
@media (max-width: 1024px) {
  .quality-features {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 600px) {
  .quality-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .finest-quality h2 {
    font-size: 26px;
  }

  .finest-desc {
    font-size: 14px;
  }
}
/* ================= FROM THE BLOG ================= */

.home-blog {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.home-blog h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Blog Grid */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #f7faf4;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Blog Image */
.blog-image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay Title */
.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.blog-overlay span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* Blog Content */
.blog-content {
  padding: 22px;
}

.blog-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Read More */
.read-more {
  font-size: 14px;
  font-weight: 500;
  color: #2f5d2f;
  text-decoration: none;
  border-bottom: 1px solid #2f5d2f;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog h2 {
    font-size: 26px;
  }
}
/* ================= FOOTER ================= */

.site-footer {
  font-family: 'Inter', sans-serif;
}

/* Newsletter */
.footer-newsletter {
  background: #f6e9de;
  padding: 35px 20px;
}

.newsletter-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.newsletter-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #2f5d2f;
}

.newsletter-text p {
  font-size: 14px;
  color: #555;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #2f5d2f;
  min-width: 260px;
}

.newsletter-form button {
  padding: 12px 22px;
  background: #2f5d2f;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

/* Footer Main */
.footer-main {
  background: #eef3ea;
  padding: 60px 20px;
}

.footer-columns {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}
/* ================= TOP BAR ================= */
.top-bar {
  background: #2f5d2f;
  color: #fff;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

/* ================= HEADER ================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header-inner {
  max-width: 1400px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.site-logo img {
  width: 160px;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .site-logo img {
    width: 120px;
  }
}

/* ================= NAV ================= */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

/* ================= DROPDOWN ================= */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  background: #fff;
  padding: 22px;
  min-width: 520px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.dropdown a {
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 15px;
}

.dropdown a:hover {
  background: #f3fff6;
  color: #0a7d3b;
}

/* ================= ICONS ================= */
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-icons .dashicons {
  font-size: 22px;
  color: #2f5d2f;
}

/* SEARCH */
.search-form {
  position: relative;
}

.search-form input {
  padding: 8px 32px 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.search-form .dashicons {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

/* CART COUNT */
.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #1a7f37;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* ================= MOBILE MENU BUTTON ================= */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #2f5d2f;
  display: block;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #ffffff;
  z-index: 10000;
  padding: 20px;
  transition: left 0.3s ease;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.mobile-menu li {
  margin-bottom: 16px;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #2f5d2f;
}

/* CLOSE BUTTON */
.close-menu {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-inner {
    gap: 12px;
  }

  .site-logo img {
    width: 120px;
  }
}
/* ================= PRODUCT PAGE START ================= */

.df-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.df-product-page {
  background: #fff;
  color: #222;
}

/* GRID */
.df-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .df-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ================= PRODUCT HERO ================= */
.df-product-hero {
  padding: 60px 0;
}

.df-product-gallery img {
  width: 100%;
  border-radius: 16px;
  background: #f7f7f7;
}

.df-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.df-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid #eee;
}

/* ================= PRODUCT SUMMARY ================= */
.df-product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.df-product-tagline {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
}

.df-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.df-price {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.df-price del {
  color: #888;
  font-size: 18px;
  margin-left: 8px;
}

.df-price small {
  display: block;
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

/* TRUST BADGES */
.df-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.df-trust-badges span {
  padding: 6px 12px;
  font-size: 13px;
  background: #f4f8f3;
  border-radius: 20px;
  color: #0b7d53;
  font-weight: 500;
}

/* ADD TO CART */
.df-product-summary form.cart {
  margin: 20px 0;
}

.df-product-summary .single_add_to_cart_button {
  background: #f36f21;
  color: #fff;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
}

.df-product-summary .single_add_to_cart_button:hover {
  background: #dd5f17;
}

/* DELIVERY BOX */
.df-delivery-box {
  margin-top: 24px;
  padding: 16px;
  border-radius: 12px;
  background: #fff7ef;
  border: 1px dashed #f36f21;
}

/* ================= SOCIAL PROOF ================= */
.df-social-proof {
  padding: 60px 0;
  background: #fafafa;
}

.df-social-proof h2 {
  text-align: center;
  margin-bottom: 32px;
}

.df-reel-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.df-reel {
  width: 300px;
  height: 420px;
  background: #eaeaea;
  border-radius: 16px;
}

/* ================= DIRECTION TO USE ================= */
.df-usage {
  padding: 60px 0;
}

.df-usage h2 {
  text-align: center;
  margin-bottom: 32px;
}

.df-usage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .df-usage-grid {
    grid-template-columns: 1fr;
  }
}

.df-usage-card {
  background: #f4f8f3;
  padding: 20px;
  border-radius: 14px;
  font-weight: 500;
  text-align: center;
}

/* ================= PRODUCT DETAILS ================= */
.df-product-details {
  padding: 60px 0;
}

.df-product-details h2 {
  text-align: center;
  margin-bottom: 24px;
}

.df-product-details .df-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* ================= REVIEWS ================= */
.df-reviews {
  padding: 60px 0;
  background: #fafafa;
}

/* ================= WHY US ================= */
.df-why-us {
  padding: 60px 0;
}

.df-why-us h2 {
  text-align: center;
  margin-bottom: 32px;
}

.df-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .df-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.df-why-item {
  text-align: center;
  background: #f4f8f3;
  padding: 20px;
  border-radius: 16px;
  font-weight: 600;
}

/* ================= RELATED ================= */
.df-related {
  padding: 60px 0;
}

.df-related h2 {
  text-align: center;
  margin-bottom: 32px;
}

/* ================= PRODUCT PAGE END ================= */
/* ===== CLEAN STICKY ADD TO CART ===== */

.df-sticky-cart.clean {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.df-sticky-cart.clean.show {
  transform: translateY(0);
}

.df-sticky-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.df-sticky-info {
  display: flex;
  flex-direction: column;
}

.df-sticky-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
}

.df-sticky-price {
  font-size: 14px;
  color: #f36f21;
  font-weight: 600;
}

.df-sticky-btn {
  background: #f36f21;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.df-sticky-btn:hover {
  background: #dd5f17;
}

/* Mobile polish */
@media (max-width: 768px) {
  .df-sticky-inner {
    padding: 12px 16px;
  }
  .df-sticky-btn {
    padding: 12px 26px;
    font-size: 15px;
  }
}
/* ================= 
 * 
 *  START ================= */

.df-shop-hero {
  padding: 60px 0 40px;
  background: #f4f8f3;
  text-align: center;
}

.df-shop-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.df-shop-hero p {
  color: #555;
  font-size: 16px;
}

.df-shop-products {
  padding: 60px 0;
}

/* PRODUCT GRID */
.df-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .df-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .df-product-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT CARD */
.df-product-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.df-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.df-card-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fafafa;
  padding: 16px;
}

/* CARD BODY */
.df-card-body {
  padding: 18px;
  text-align: center;
}

.df-card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.df-card-title a {
  color: #222;
  text-decoration: none;
}

.df-card-benefit {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
  min-height: 36px;
}

.df-card-rating {
  margin-bottom: 6px;
}

.df-card-price {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.df-card-price del {
  font-size: 13px;
  color: #888;
  margin-left: 6px;
}

/* ADD TO CART */
.df-card-actions .button {
  background: #f36f21;
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border: none;
}

.df-card-actions .button:hover {
  background: #dd5f17;
}

/* ================= 
 * END ================= */
/* ================= FOOTER START ================= */

.df-footer {
  background: #0b1929;
  color: #e5e5e5;
}

.df-footer-newsletter {
  background: #f4f8f3;
  padding: 50px 0;
}

.df-newsletter-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.df-newsletter-text h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #0b7d53;
}

.df-newsletter-text p {
  color: #555;
}

.df-newsletter-form {
  display: flex;
  gap: 12px;
}

.df-newsletter-form input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  min-width: 240px;
}

.df-newsletter-form button {
  background: #f36f21;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
}

.df-footer-main {
  padding: 60px 0;
}

.df-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.df-footer-col h4 {
  margin-bottom: 12px;
  color: #ffffff;
}

.df-footer-col p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.df-footer-col ul {
  list-style: none;
  padding: 0;
}

.df-footer-col ul li {
  margin-bottom: 8px;
}

.df-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.df-footer-col ul li a:hover {
  color: #f36f21;
}

.df-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.df-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #aaa;
}

@media (max-width: 900px) {
  .df-newsletter-box {
    flex-direction: column;
    text-align: center;
  }

  .df-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .df-footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ================= FOOTER END ================= */
/* ================= MY ACCOUNT PAGE ================= */

.df-account-page {
  padding: 60px 0;
}

.df-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* Navigation */
.woocommerce-MyAccount-navigation {
  background: #f4f8f3;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 12px;
}

.woocommerce-MyAccount-navigation a {
  text-decoration: none;
  color: #0b7d53;
  font-weight: 600;
}

.woocommerce-MyAccount-navigation li.is-active a {
  color: #f36f21;
}

/* Content */
.df-account-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
/* ================= CART PAGE ================= */

.df-cart-page {
  padding: 60px 0;
}

.df-cart-product {
  display: flex;
  gap: 16px;
  align-items: center;
}

.df-cart-product img {
  width: 80px;
  border-radius: 12px;
}

.woocommerce-cart-form table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.woocommerce-cart-form td {
  padding: 16px;
  border-bottom: 1px solid #eee;
}

.df-cart-totals {
  background: #f4f8f3;
  padding: 30px;
  border-radius: 16px;
  max-width: 420px;
  margin-left: auto;
}

.df-cart-totals h2 {
  margin-bottom: 16px;
}

.checkout-button {
  background: #f36f21;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
}
/* ================= FIX PAGE CONTENT VISIBILITY ================= */

.df-main-content {
  min-height: 60vh;
  padding: 40px 0;
}

.df-main-content > .df-container {
  position: relative;
  z-index: 2;
}

/* Ensure WooCommerce content is visible */
.woocommerce,
.woocommerce-page {
  display: block !important;
}
/* ================= SHOP PAGE ================= */

.df-shop-header {
  background: #f5f9f4;
  padding: 40px 0;
}

.df-shop-header h1 {
  font-size: 32px;
  color: #1f4d2b;
}

.df-shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  padding: 50px 0;
}

/* Sidebar */
.df-shop-sidebar h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.df-category-list {
  list-style: none;
  padding: 0;
}

.df-category-list li {
  margin-bottom: 10px;
}

.df-category-list a {
  color: #333;
  text-decoration: none;
}

.df-category-list a:hover {
  color: #2f6b3c;
}

/* Products */
.df-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.df-product-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  position: relative;
  transition: transform .2s ease;
}

.df-product-card:hover {
  transform: translateY(-5px);
}

.df-sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e8f6ec;
  color: #2f6b3c;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

.df-product-image img {
  max-width: 100%;
}

.df-product-title {
  font-size: 15px;
  margin: 10px 0;
}

.df-product-price {
  font-weight: 600;
  margin: 8px 0;
}

.df-product-cart .button {
  background: #f57c00;
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
}

/* Pagination */
.woocommerce-pagination {
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
  .df-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .df-shop-layout {
    grid-template-columns: 1fr;
  }

  .df-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ================= POWER BLAST PRODUCT PAGE ================= */

.pb-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.pb-section {
  padding: 80px 0;
}

/* HERO */
.pb-hero {
  background: #f7f9f6;
}

.pb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.pb-hero-content h1 {
  font-size: 38px;
  margin-bottom: 15px;
}

.pb-price {
  font-size: 26px;
  margin: 10px 0;
}

.pb-trust-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.pb-trust-points li {
  margin-bottom: 8px;
}

/* BENEFITS */
.pb-benefits {
  background: #ffffff;
  text-align: center;
}

.pb-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.pb-benefits-grid div {
  background: #f4f6f2;
  padding: 20px;
  border-radius: 12px;
  font-weight: 500;
}

/* INGREDIENTS */
.pb-ingredients {
  background: #0b1c2d;
  color: #ffffff;
}

.pb-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.pb-list li {
  margin-bottom: 12px;
}

/* WHY CHOOSE */
.pb-why {
  background: #f7f9f6;
  text-align: center;
}

.pb-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.pb-why-grid div {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  font-weight: 600;
}

/* TABS */
.pb-tabs {
  background: #ffffff;
}

/* MOBILE */
@media (max-width: 768px) {
  .pb-hero-grid,
  .pb-grid-2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ================= COMBO SECTION ================= */

.combo-section {
  background: #f7f9f6;
  padding: 80px 0;
  text-align: center;
}

.combo-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.combo-sub {
  color: #555;
  margin-bottom: 40px;
}

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

.combo-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s ease;
}

.combo-card:hover {
  transform: translateY(-6px);
}

.combo-image img {
  max-width: 100%;
  height: auto;
}

.combo-card h3 {
  font-size: 18px;
  margin: 15px 0 8px;
}

.combo-price {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.combo-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  background: #2f6d3c;
  color: #fff;
  font-size: 14px;
}

.combo-sale {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #7fd16c;
  color: #1f3d2b;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 992px) {
  .combo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .combo-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= HERO β POWER BLAST ================= */

.df-hero {
  background: linear-gradient(135deg, #f6fbf4 0%, #eef6ec 100%);
  padding: 80px 0;
}

.df-hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.df-hero-content {
  flex: 1;
}

.df-hero-tag {
  display: inline-block;
  background: #e6f4ea;
  color: #1f6b3a;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.df-hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #0f172a;
}

.df-hero-sub {
  font-size: 18px;
  color: #475569;
  margin-bottom: 20px;
  max-width: 520px;
}

.df-hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.df-hero-points li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1e293b;
}

.df-hero-cta {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: #1f6b3a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-primary:hover {
  background: #15512c;
}

.btn-secondary {
  border: 2px solid #1f6b3a;
  color: #1f6b3a;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #1f6b3a;
  color: #fff;
}

.df-hero-image {
  flex: 1;
  text-align: center;
}

.df-hero-image img {
  max-width: 420px;
  width: 100%;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .df-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .df-hero-content h1 {
    font-size: 32px;
  }

  .df-hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* ================================
   HOME PRODUCT CARD β KRISHNA STYLE
================================ */

.df-product-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.df-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* IMAGE WRAPPER */
.df-product-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.df-product-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* SAVE BADGE */
.df-save-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d9f3c9;
  color: #1f7a1f;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* HOVER ADD TO CART */
.df-hover-cart {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #ff7a1a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  opacity: 0;
  transition: all 0.25s ease;
}

.df-product-image:hover .df-hover-cart {
  opacity: 1;
  bottom: 28px;
}

/* PRODUCT INFO */
.df-product-info {
  margin-top: 18px;
}

.df-product-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1f14;
  line-height: 1.35;
  margin-bottom: 10px;
}

/* PRICE */
.df-price {
  font-size: 20px;
  font-weight: 700;
  color: #1b5e20;
}

.df-price del {
  color: #8c8c8c;
  font-weight: 500;
  margin-right: 6px;
}

.df-price ins {
  text-decoration: none;
}
/* ================= PRODUCTS SECTION ================= */
.df-products {
  padding: 80px 0;
  background: #f6f9f1;
}

.df-section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f3d2b;
}

.df-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* ================= PRODUCT CARD ================= */
.df-product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.df-product-card:hover {
  transform: translateY(-6px);
}

/* SAVE BADGE */
.df-save-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #d7f3c2;
  color: #1f7a32;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* IMAGE */
.df-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.df-product-image img {
  width: 100%;
  transition: transform 0.4s ease;
}

.df-product-card:hover img {
  transform: scale(1.05);
}

/* HOVER ADD TO CART */
.df-hover-cart {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease;
}

.df-product-card:hover .df-hover-cart {
  opacity: 1;
  transform: translateY(0);
}

.df-hover-cart a.button {
  width: 100%;
  background: #f26b1d;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  text-align: center;
}

/* INFO */
.df-product-info {
  text-align: center;
  padding-top: 18px;
}

.df-product-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1f3d2b;
}

.df-price {
  font-size: 18px;
  font-weight: 700;
  color: #1f7a32;
}

.df-price del {
  font-size: 14px;
  color: #888;
  margin-left: 6px;
}
/* ===== SLIDER ===== */
.df-slider {
  overflow: hidden;
  margin-top: 30px;
}

.df-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.df-slide {
  min-width: 25%; /* π΄ 4 products per view */
  padding: 0 15px;
}

/* ===== HEADER & BUTTONS ===== */
.df-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.df-slider-nav button {
  background: #e8f5dc;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  color: #1f7a32;
  margin-left: 8px;
}

.df-slider-nav button:hover {
  background: #cdebb4;
}
/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .df-section-head {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .df-section-title {
    font-size: 24px;
    line-height: 1.2;
    flex: 1;
  }

  .df-slider-nav {
    display: flex;
    gap: 8px;
  }

  .df-slider-nav button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  /* 1 product per view on mobile */
  .df-slide {
    min-width: 100%;
    padding: 0 10px;
  }

  .df-product-card {
    padding: 14px;
    border-radius: 16px;
  }

}
/* CATEGORY TITLE */
.df-category-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #102a23;
}

/* FILTER BAR */
.df-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 14px 20px;
  margin-bottom: 40px;
  background: #fff;
}

.df-filter-btn {
  background: none;
  border: none;
  font-size: 16px;
  color: #102a23;
  cursor: pointer;
  display: flex;
  gap: 8px;
  align-items: center;
}

.df-toolbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.df-view-icons span {
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
}

.df-sort select {
  border: none;
  background: transparent;
  font-size: 16px;
  color: #102a23;
  cursor: pointer;
}

/* GRID MATCHING HOMEPAGE */
.df-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* MOBILE */
@media (max-width: 991px) {
  .df-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .df-product-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= CATEGORY / SHOP GRID FIX ================= */

.df-products .df-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .df-products .df-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .df-products .df-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .df-products .df-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Prevent image from blowing up */
.df-products .df-product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Card width consistency */
.df-products .df-product-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
/* =====================================================
   FINAL CATEGORY / SHOP PAGE OVERRIDE
   (SAFE  DOES NOT DELETE ANYTHING)
===================================================== */

/* Force container width */
.df-products .df-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* CATEGORY TITLE */
.df-products .df-category-title {
  text-align: center !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #102a23 !important;
  margin-bottom: 30px !important;
}

/* FILTER + SORT BAR (OVAL STYLE) */
.df-products .df-toolbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 60px !important;
  padding: 16px 28px !important;
  background: #ffffff !important;
  margin-bottom: 50px !important;
}

/* FILTER BUTTON */
.df-products .df-filter-btn {
  background: none !important;
  border: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #102a23 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

/* SORT AREA */
.df-products .df-sort select {
  border: none !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #102a23 !important;
}

/* PRODUCT GRID  FORCE TILE VIEW */
.df-products .df-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
}

/* PRODUCT CARD */
.df-products .df-product-card {
  background: #ffffff !important;
  border-radius: 22px !important;
  padding: 22px !important;
  text-align: center !important;
  box-shadow: 0 12px 34px rgba(0,0,0,0.06) !important;
  position: relative !important;
}

/* IMAGE */
.df-products .df-product-image img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* SAVE BADGE */
.df-products .df-save-badge {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  background: #d9f3c9 !important;
  color: #1f7a1f !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
}

/* PRODUCT TITLE */
.df-products .df-product-info h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #102a23 !important;
  margin: 16px 0 8px !important;
}

/* PRICE */
.df-products .df-price {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1f7a32 !important;
}

.df-products .df-price del {
  font-size: 14px !important;
  color: #8b8b8b !important;
  margin-left: 6px !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .df-products .df-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .df-products .df-product-grid {
    grid-template-columns: 1fr !important;
  }
}
/* ==================================================
   FORCE WOOCOMMERCE CATEGORY GRID (DO NOT REMOVE)
================================================== */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
}

.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
}
/* Center last row products nicely */
.df-products .df-product-grid {
  grid-auto-flow: row;
  justify-items: center;
}

.df-products .df-product-card {
  max-width: 280px;
  width: 100%;
}
/* ==========================================
   FIX LAST ROW BLANK SPACE (CENTER ITEMS)
========================================== */

.df-products .df-product-grid {
  justify-content: center;
}

/* Make sure items dont stretch */
.df-products .df-product-card {
  width: 100%;
}
/* =========================================
   FIX WOOCOMMERCE EMPTY GRID ITEM (CRITICAL)
========================================= */

/* Remove WooCommerce pseudo elements that break CSS Grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

/* Ensure proper grid behavior */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   CATEGORY PAGE  FINAL DESIGN MATCH
========================================= */

/* FILTER BAR (OVAL STYLE) */
.df-toolbar {
  border-radius: 999px;
  padding: 16px 24px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.df-filter-btn {
  font-weight: 600;
  color: #1f3d2b;
}

.df-sort select {
  font-weight: 600;
  color: #1f3d2b;
}

/* PRODUCT CARD IMAGE AREA */
.woocommerce ul.products li.product img {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 18px;
}

/* PRODUCT TITLE */
.woocommerce ul.products li.product h2,
.df-product-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1f3d2b;
  margin-top: 14px;
}

/* PRICE */
.woocommerce ul.products li.product .price {
  font-size: 18px;
  font-weight: 700;
  color: #1f7a32;
}

.woocommerce ul.products li.product .price del {
  font-size: 14px;
  color: #9ca3af;
}

/* SAVE BADGE (MATCH HOMEPAGE) */
.woocommerce span.onsale,
.df-save-badge {
  background: #d9f3c9;
  color: #1f7a1f;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  top: 14px;
  left: 14px;
}

/* REMOVE DEFAULT BUTTONS (CLEAN LOOK) */
.woocommerce ul.products li.product .button {
  display: none;
}
/* ================= WHATSAPP FLOAT BUTTON ================= */

.df-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.df-whatsapp-float img {
  width: 32px;
  height: 32px;
}

.df-whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* Mobile spacing */
@media (max-width: 768px) {
  .df-whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .df-whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}


