/* Header Styles */
:root {
  --primary-color: #004a2b;
  --secondary-color: #fbf5ea;
  --text-color: #333;
  --light-text-color: #666;
  --white-color: #fff;
  --accent-color: #ffc107;
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--secondary-color);
}

.container {
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 15px;
}
:root {
  --primary-color: #608a20;
  --secondary-color: #fbf5ea;
  --text-color: #333;
  --light-text-color: #666;
  --white-color: #fff;
  --accent-color: #ffc107;
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --hover-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

button.close-menu {
  display: none;
}
/* Header Styles */
.header-top {
  background: linear-gradient(90deg, #4a7c5f 0%, #6ba986 100%);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
img.custom-logo {
  width: 123px;
  background-color: #cef4c3;
  padding: 5px;
  border-radius: 5px;
}
.header-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20L0 20z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 80px;
  background-color: #cef4c3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  font-size: 32px;
  color: #6ba986;
  margin-right: 10px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e2d;
  position: relative;
}

.logo-text::after {
  content: "®";
  font-size: 12px;
  vertical-align: super;
  margin-left: 2px;
}

.logo-tagline {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a9b8f;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #e0e6e2;
}

/* Navigation Styles */
.main-nav {
  position: relative;
}

.primary-menu {
  display: flex;
  list-style: none;
  gap: 10px;
  margin: 0;
}

.primary-menu > li {
  position: relative;
}

.primary-menu a {
  text-decoration: none;
  color: #2c3e2d;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 20px;
  display: block;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.primary-menu a:hover {
  color: #6ba986;
  background-color: #f2f7f4;
}

/* Submenu Styles */
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
  border-radius: 12px;
  border-top: 3px solid #6ba986;
}

.primary-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.primary-menu .sub-menu li {
  padding: 0 15px;
  position: relative;
}

.primary-menu .sub-menu a {
  padding: 12px 15px;
  border-bottom: 1px solid #f1f5f2;
  font-weight: 400;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.primary-menu .sub-menu a:hover {
  color: #6ba986;
  background-color: #f8fbf9;
  padding-left: 20px;
}

.primary-menu .sub-menu a::before {
  content: "→";
  margin-right: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.primary-menu .sub-menu a:hover::before {
  opacity: 1;
  margin-right: 15px;
}

.primary-menu .sub-menu .sub-menu {
  left: 100%;
  top: -15px;
}

/* Menu items with dropdown indicator */
.primary-menu .menu-item-has-children > a {
  position: relative;
  padding-right: 40px;
}

.primary-menu .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 2px solid #8a9b8f;
  border-bottom: 2px solid #8a9b8f;
  transform: translateY(-60%) rotate(45deg);
  transition: all 0.3s ease;
}

.primary-menu .menu-item-has-children > a:hover::after {
  border-color: #6ba986;
  transform: translateY(-40%) rotate(225deg);
}

/* Header Icons */
.header-icons {
  display: flex;
  gap: 20px;
  position: relative;
}

.header-icons a {
  color: #2c3e2d;
  font-size: 18px;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
}

.header-icons a:hover {
  color: #6ba986;
  background-color: #f2f7f4;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #e85d4c;
  color: white;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tea leaf decoration */
.tea-leaf {
  position: absolute;
  opacity: 0.1;
  color: #4a7c5f;
  font-size: 120px;
  z-index: 0;
  pointer-events: none;
}

.heder-leaf-2 {
  bottom: -9px;
  right: 3%;
  transform: rotate(-149deg);
}

/* Mobile menu toggle (hidden by default) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #2c3e2d;
  z-index: 1000;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .header-main {
    padding: 15px 20px;
  }

  .primary-menu a {
    padding: 12px 15px;
    font-size: 15px;
  }

  .logo-tagline {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 100;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .main-nav.active {
    left: 0;
  }

  .primary-menu {
    flex-direction: column;
    gap: 0;
  }

  .primary-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
    width: 100%;
    margin-top: 5px;
  }

  .primary-menu .sub-menu.active {
    display: block;
  }

  .primary-menu .menu-item-has-children > a::after {
    transform: translateY(-50%) rotate(45deg);
  }

  .primary-menu .menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(225deg);
  }

  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #2c3e2d;
  }

  .tea-leaf {
    display: none;
  }
}
/* Footer Styles */
footer {
  background: linear-gradient(to bottom, #004a2b 0%, #1e2b20 100%);
  color: #e0e6e2;
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}

/* Decorative elements */
.footer-decoration {
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100' preserveAspectRatio='none'%3E%3Cpath d='M500,80L0,10L0,100L1000,100L1000,10L500,80Z' fill='%232c3e2d'%3E%3C/path%3E%3C/svg%3E");
  background-size: 1000px 100px;
}

.tea-leaf-footer {
  position: absolute;
  opacity: 0.1;
  color: #a4b9a9;
  font-size: 180px;
  z-index: 0;
  pointer-events: none;
}

.leaf-footer-1 {
  top: 50px;
  left: 5%;
  transform: rotate(30deg);
}

.leaf-footer-2 {
  bottom: 100px;
  right: 5%;
  transform: rotate(-150deg);
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-column h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #f8fbf9;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #6ba986, transparent);
}

.footer-column p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.8;
}

/* Contact Info */
.contact-info {
  list-style: none;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info i {
  color: #6ba986;
  font-size: 18px;
  margin-right: 15px;
  margin-top: 4px;
}

/* Quick Links */
.quick-links {
  list-style: none;
  margin: 0;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links a {
  color: #c8d5cc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  padding-left: 15px;
}

.quick-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: #6ba986;
}

.quick-links a:hover {
  color: #6ba986;
  padding-left: 20px;
}

.quick-links a:hover::before {
  opacity: 1;
}

/* Newsletter */
.newsletter p {
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 15px;
  border-radius: 4px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.newsletter-input::placeholder {
  color: #a4b9a9;
}

.subscribe-btn {
  background: linear-gradient(to right, #6ba986, #4a7c5f);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.subscribe-btn:hover {
  background: linear-gradient(to right, #5a9778, #3f6b50);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: #c8d5cc;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #6ba986;
  color: white;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright p {
  margin-bottom: 0;
}
.menu-main-menu-container ul {
  list-style: none !important;
  margin: 0;
}
.copyright {
  font-size: 14px;
  color: #a4b9a9;
}

.payment-methods .footer-widget {
  display: flex;
  gap: 10px;
}

.payment-methods i {
  font-size: 24px;
  color: #a4b9a9;
}

/* Tea Awards */
.tea-awards {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.award-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.award-badge i {
  color: #ffd700;
}

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

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

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

  .payment-methods {
    justify-content: center;
  }
}

/* Hero Section */
.hero {
  background-image: url("https://ndt.demowithme.com/wp-content/uploads/2025/08/Gemini_Generated_Image_qytdd3qytdd3qytd-scaled.png");
  background-size: cover;
  background-position: center;
  height: 81vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 680px;
}

.hero-content h1 {
  font-size: 52px; /* Slightly larger heading */
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: #fff;
}

.hero-content p {
  margin-bottom: 30px;
  font-size: 18px;
  opacity: 0.9;
}

.btn {
  display: inline-block;
  padding: 11px 32px; /* Increased padding */
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ffffff;
  color: var(--primary-color);
}

.btn-outline {
  background-color: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 5px;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 38px; /* Slightly larger section title */
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title p {
  font-size: 18px;
  color: var(--light-text-color);
}

/* Discover Section */
.discover-section {
  text-align: center;
  margin-bottom: 40px;
}

.discover-section h2 {
  font-size: 32px; /* Larger heading */
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.discover-section p {
  font-size: 18px; /* Larger text */
  color: var(--light-text-color);
  margin-bottom: 30px;
}

/* Shop by Category - Grid Layout */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-img {
  object-fit: cover;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  height: 350px;
  border: 2px dashed #a3c517;
  border-radius: 50%;
  padding: 16px;
  width: 350px;
}

.category-title a {
  font-size: 22px; /* Larger title */
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
}

.category-description {
  font-size: 15px;
  color: var(--light-text-color);
  padding: 0 15px 20px;
  flex-grow: 1;
}

/* Swiper Slider Specific Styles */
.swiper {
  width: 100%;
  padding: 35px 0;
}

.swiper-slide {
  text-align: center;
  background: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}

/* Testimonial Section - New Modern Design */
.testimonials {
  background-color: var(--primary-color);
  padding: 80px 0;
  color: var(--secondary-color);
  position: relative; /* Needed for background image */
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://m.media-amazon.com/images/I/71EyqxkeifL._SX679_.jpg"); /* Placeholder image */
  background-size: cover;
  background-position: center;
  opacity: 0.1; /* Subtle overlay */
  z-index: 0;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Semi-transparent background for text */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 20px; /* Larger font size */
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #246251;
}

.testimonial-author {
  font-weight: 600;
  margin-bottom: 5px;
  color: #246251;
  font-size: 18px;
}

.testimonial-role {
  font-size: 15px;
  opacity: 0.8;
  color: #246251;
}

.testimonial-rating {
  color: var(--accent-color);
  margin: 15px 0;
  font-size: 16px; /* Larger stars */
  text-align: left;
}

.swiper-pagination-bullet {
  background-color: rgba(251, 245, 234, 0.5) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary-color) !important;
}

/* Banner Section */
.banner {
  background-image: url("https://m.media-amazon.com/images/I/91X83xhUKnL._SL1500_.jpg");
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  /*margin: 50px 0;*/
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(11 80 61 / 60%);
}

.banner-content {
  position: relative;
  z-index: 1;
  color: var(--secondary-color);
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.banner-content h2 {
  font-size: 42px; /* Larger banner title */
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  color: #fff;
}

/* Why Choose Us */
.features {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(220px, 1fr)
  ); /* More flexible grid */
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-shadow);
}

.feature-icon {
  font-size: 45px; /* Larger icon */
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 20px;
}

/* Our Story Section */
.our-story-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
  text-align: center;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.story-text {
  flex: 1;
}

.story-text h3 {
  font-size: 32px;
  color: var(--primary-color);
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.story-text h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--primary-color);
}

.story-text p {
  font-size: 16px;
  color: var(--light-text-color);
  margin-bottom: 20px;
}

.story-text .btn {
  margin-top: 10px;
}

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

.story-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--card-shadow);
}

/* We Care For Section */
.we-care-section {
  padding: 80px 0;
  color: var(--secondary-color);
  text-align: center;
  background-image: url(https://ndt.demowithme.com/wp-content/uploads/2025/09/features3.jpg);
  background-size: cover;
}

.we-care-section .section-title h2 {
  color: #004a2b;
}

.we-care-section .section-title h2::after {
  background-color: #004a2b;
}

.we-care-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.care-item {
  background-color: rgb(0 74 43);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.care-item:hover {
  transform: translateY(-10px);
  background-color: rgb(51 118 7 / 71%);
}

.care-item .feature-icon {
  color: var(--secondary-color);
}

.care-item h3 {
  color: var(--white-color);
  margin-bottom: 15px;
  font-size: 22px;
}

.care-item p {
  color: rgba(251, 245, 234, 0.9);
  font-size: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .features,
  .footer-content,
  .categories-grid,
  .we-care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }
  .features,
  .footer-content,
  .categories-grid,
  .we-care-grid {
    grid-template-columns: 1fr;
  }
  .header-main {
    gap: 15px;
  }
  .header-icons {
    margin-top: 10px;
  }
  .section-title h2 {
    font-size: 32px;
  }
  .discover-section h2 {
    font-size: 28px;
  }
  .testimonial-content {
    padding: 30px;
  }
  .testimonial-text {
    font-size: 18px;
  }
  .banner-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 60vh;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .testimonial-content {
    padding: 20px;
  }
  .footer-column .logo {
    font-size: 28px;
  }
}

/* NEW CSS FOR FULL WIDTH BEST SELLERS */
.bestsellers-full-width {
  padding: 80px 0; /* Maintain section padding */
  background-color: var(--white-color); /* Keep background color */
}

.bestsellers-full-width .container {
  max-width: 100%; /* Override max-width for full width */
  padding: 0 15px; /* Keep horizontal padding for content inside */
}
/* Modern Product Section Styles */
.bestsellers-modern {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.modern-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.modern-product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.modern-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c8a165;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.product-badge.organic {
  background-color: #4caf50;
}

.product-badge.bestseller {
  background-color: #ff5722;
}

.product-badge.exclusive {
  background-color: #9c27b0;
}

.product-badge.new {
  background-color: #2196f3;
}

.quick-view {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background-color: rgba(11, 80, 61, 0.9);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  transition: bottom 0.3s ease;
}

.modern-product-card:hover .quick-view {
  bottom: 0;
}

.product-details {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.product-rating {
  color: #ffc107;
  margin-bottom: 10px;
}

.rating-count {
  color: #666;
  font-size: 12px;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.original-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.wishlist-btn {
  width: 40px;
  background-color: #f5f5f5;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  color: #e74c3c;
  background-color: #f9e6e6;
}

.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Creative Testimonials Section */
.creative-testimonials {
  background-color: #f5f5f5;
  padding: 80px 0;
}

.testimonial-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  text-align: left;
  height: 350px;
  border: 2px solid #1a5c36;
}
.testimonial-card.featured {
  border: 2px solid var(--primary-color);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid var(--secondary-color);
}

.customer-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.customer-location {
  font-size: 13px;
  color: #666;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
}

.verified-buyer {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4caf50;
}

.tea-mention {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tea-mention img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eee;
}

.testimonial-cta {
  text-align: center;
  margin-top: 50px;
}

.testimonial-cta p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

@media (max-width: 768px) {
  .modern-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-cards-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .modern-products-grid {
    grid-template-columns: 1fr;
  }
}
/* Enhanced Creative Story Section */
.creative-story {
  background-color: #f5f5f5;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.creative-story::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: url("https://www.transparenttextures.com/patterns/cream-paper.png");
  opacity: 0.1;
  z-index: 0;
}

.story-container {
  display: flex;
  gap: 50px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.story-image-gallery {
  flex: 1;
  position: relative;
}

.main-image {
  position: relative;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image:hover img {
  transform: scale(1.02);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.thumbnail {
  height: 80px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  opacity: 0.9;
}

.thumbnail.active {
  opacity: 1;
  border-color: var(--primary-color);
}

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

.story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-timeline {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

.story-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 30px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 4px solid var(--secondary-color);
}

.timeline-year {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.timeline-content h3 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--light-text-color);
  font-size: 14px;
  line-height: 1.6;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  padding-top: 40px;
}

.value-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.value-card p {
  font-size: 13px;
  color: var(--light-text-color);
  line-height: 1.5;
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

@media (max-width: 1200px) {
  .product-slide {
    min-width: calc(33.33% - 13px);
  }
}

@media (max-width: 992px) {
  .story-container {
    flex-direction: column;
  }

  .main-image {
    height: 400px;
  }

  .product-slide {
    min-width: calc(50% - 10px);
  }

  .story-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tab-labels {
    gap: 3px;
  }

  .tab-label {
    padding: 10px 15px;
    font-size: 14px;
  }

  .product-slide {
    min-width: calc(50% - 10px);
  }

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

  .story-timeline {
    padding-left: 20px;
  }

  .timeline-item {
    padding-left: 20px;
  }
}

@media (max-width: 576px) {
  .product-slide {
    min-width: 100%;
  }

  .creative-slider {
    padding: 0 30px;
  }

  .main-image {
    height: 300px;
  }

  .timeline-year {
    font-size: 20px;
  }

  .timeline-content h3 {
    font-size: 16px;
  }
}
.brand-logos {
  background-color: var(--primary-color);
  padding: 9px 0;
  text-align: center;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.logo-item {
  padding: 8px;
}

.logo-item .stat {
  font-size: 16px;
  color: #fff;
}

.logo-item .text-logo {
  font-style: italic;
  font-size: 14px;
  color: #555;
}

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

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

.product-container {
  background: white;
  border-radius: 12px;
  padding: 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: #2a6b3b;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-title p {
  font-size: 1rem;
  color: #6a6a6a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.product-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
}

.product {
  flex: 1;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f2f3f2;
  border: 1px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-info {
  padding: 45px 20px 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-title {
  font-size: 15px;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.3;
  height: 47px;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
}

.product-rating i {
  color: #ffc107;
  font-size: 0.9rem;
  margin-right: 2px;
}

.product-rating span {
  color: #666;
  font-size: 0.85rem;
  margin-left: 8px;
}

.product-price {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #2a6b3b;
}

.add-to-cart {
  background: #2a6b3b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.add-to-cart:hover {
  background: #1e5330;
  transform: scale(1.1);
}

.add-to-cart i {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .product-row {
    flex-wrap: wrap;
  }

  .product {
    flex: 0 0 calc(50% - 25px);
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .product {
    flex: 0 0 100%;
  }

  .product-container {
    padding: 25px 20px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}
/* Tea Section */
.tea-section {
  padding: 0px 5%;
  background: #fff;
}

.tea-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: auto;
}

/* Left Image */
.tea-image img {
  border-radius: 8px;
  object-fit: cover;
  width: 700px;
}

/* Center Can */
.tea-can img {
  max-width: 300px;
}

/* Right Content */
.tea-content {
  max-width: 500px;
}

.tea-content h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.tea-content .highlight {
  color: #3a7d3a; /* green highlight */
  font-weight: 700;
}

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

.tea-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.tea-benefits li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #1a1a1a;
  position: relative;
  padding-left: 28px;
}

.tea-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3a7d3a;
  font-weight: bold;
}

/* Button */
.tea-btn {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid #3a7d3a;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tea-btn:hover {
  background: #3a7d3a;
  color: #fff;
}
.more-product {
  text-align: center;
}

.testimonial-card.middle {
  border: 2px solid #1a5c36; /* green border for middle */
}

.search-form {
  display: flex;
  align-items: center;
  max-width: 350px;
  margin: 0 auto;
  border: 2px solid #69a583;
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.search-form:focus-within {
  border-color: #d4a017; /* highlight border color when active */
  box-shadow: 0 0 8px rgba(212, 160, 23, 0.3);
}

.search-form .search-field {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.search-form .search-submit {
  background: #518466;
  border: none;
  padding: 14px 18px;
  cursor: pointer;
  color: #fff;
  font-size: 13px;
  transition: background 0.3s ease;
  border-radius: 0;
}

.search-form .search-submit:hover {
  background: #b38614;
}

.search-form .search-field {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
}

.marquee-container {
  background: linear-gradient(90deg, #ab8743, #c9a759);
  color: #fff;
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
}

/* Content Row */
.marquee-content {
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

/* Each Item */
.marquee-item {
  font-size: 1rem;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

/* Dot Separator */
.marquee-dot {
  width: 10px;
  height: 10px;
  fill: white;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.7));
}

/* Glow effect on hover */
.marquee-item:hover {
  color: #ffefc2;
  transition: 0.3s;
}

/* Smooth Scroll Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.quick-links .sub-menu {
  display: none;
}
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-parent > a,
.primary-menu .current-menu-ancestor > a {
  color: #518466;
  background-color: #5184661a;
}

@media (max-width: 780px) {
  .product-grid-v6 {
    grid-template-columns: repeat(auto-fit, minmax(133px, 2fr)) !important;
    gap: 12px !important;
  }
  .product-container-v6 {
    padding: 60px 10px !important;
    width: 100% !important;
  }
  .image-box-v6 img {
    height: 200px !important;
  }
  .info-box-v6 {
    padding: 16px !important;
  }
  .category-v6 {
    font-size: 9px !important;
  }
  .product-rating i {
    margin-right: 2px !important;
    font-size: 10px !important;
  }
  .title-v6 {
    font-size: 15px !important;
    height: 38px !important;
  }
  .desc-v6 {
    font-size: 10px !important;
    margin-bottom: 5px !important;
  }
  .price-v6 {
    font-size: 14px !important;
  }
  .top-row-v6 {
    margin-bottom: 4px !important;
  }
  .cart-btn-v6 {
    padding: 6px 10px !important;
    font-size: 9px !important;
    gap: 4px !important;
  }
  .tea-container {
    display: block;
  }
  .tea-section {
    padding: 60px 20px;
  }
  .header-top {
    font-size: 11px;
  }
}

/* ===========================
   Responsive Header Styles
   =========================== */

/* Tablet & Mobile Adjustments */
@media (max-width: 1024px) {
  .header-main {
    padding: 10px 20px;
  }

  .primary-menu a {
    font-size: 15px;
    padding: 12px 15px;
  }
}

/* Mobile Menu */
@media (max-width: 768px) {
  .header-main {
    padding: 10px 15px;
  }

  /* Hide desktop nav */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 20px;
    transition: right 0.3s ease;
    z-index: 9999;
  }

  /* Close button */
  .close-menu {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    margin-bottom: 20px;
  }

  /* Mobile Menu List */
  .primary-menu {
    flex-direction: column;
    gap: 0;
  }

  .primary-menu li {
    width: 100%;
  }

  .primary-menu a {
    font-size: 16px;
    padding: 12px 10px;
    border-radius: 8px;
  }

  /* Submenu for mobile */
  .primary-menu .sub-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #f9f9f9;
    margin-left: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .primary-menu .menu-item-has-children.active > .sub-menu {
    max-height: 500px; /* expand */
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
    border-left: 2px solid #6ba986;
    padding-left: 10px;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #2c3e2d !important;
    margin-left: 15px;
    background-color: #cef4c3 !important;
  }

  /* Hide desktop menu toggle area */
  .main-nav,
  .close-menu {
    display: block !important;
  }

  .main-nav.active,
  .close-menu {
    display: flex;
  }

  /* Logo & icons inline */
  .logo {
    flex: 1;
  }

  .header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .search-form {
    display: none; /* hide search on mobile (optional) */
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .header-top {
    font-size: 12px;
    padding: 6px 10px;
  }

  img.custom-logo {
    width: 90px !important;
  }

  .primary-menu a {
    font-size: 14px;
    padding: 10px;
  }

  .header-icons i {
    font-size: 18px;
  }
}
/* =============================
   Responsive Creative Testimonials
   ============================= */

/* Default desktop (already good with your grid/slider) */
.testimonial-card {
  max-width: 100%;
}

/* Tablet (≤991px) */
@media (max-width: 991px) {
  .creative-testimonials {
    padding: 60px 0;
  }

  .testimonial-card {
    height: auto; /* let height grow naturally */
    padding: 20px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .customer-info h4 {
    font-size: 16px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .creative-testimonials {
    padding: 50px 0px;
  }

  .testimonial-slider {
    padding-bottom: 40px; /* space for pagination dots */
  }

  .testimonial-card {
    padding: 18px;
    border-radius: 10px;
  }

  .customer-avatar {
    width: 45px;
    height: 45px;
  }

  .testimonial-text {
    font-size: 13.5px;
  }

  .testimonial-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .tea-mention span {
    font-size: 13px;
  }
  .woocommerce-tabs ul.tabs li a {
		padding: 1rem 0.5rem !important;
	}
	.woocommerce-tabs .panel {
		padding: 10px !important;
	}
	header.entry-header.ast-no-thumbnail {
		width: 100% !important;
	}
}
@media (max-width: 780px) {
    .ast-plain-container.ast-no-sidebar #primary {
        padding: 35px !important;
    }
	a.wc-block-components-product-name {
		font-size: 20px !important;
	}
	.wc-block-components-product-price__value {
		font-size: 15px !important;
	}
	.wc-block-components-product-metadata__description {
		font-size: 10px !important;
	}
}
/* Small mobile (≤576px) */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title p {
    font-size: 14px;
  }

  .testimonial-card {
    padding: 15px;
  }

  .testimonial-text {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .featured-badge {
    font-size: 10px;
    padding: 4px 10px;
    top: -8px;
    right: 15px;
  }
	.contact-form-container{
		width:100% !important;
	}
	.hero-contact {
		margin: 20px !important;
	}
	.tea-animation {
		margin: 0 !important;
	}
	.map-section {
		padding-top: 60px;
	}
	.woocommerce-tabs ul.tabs li a {
		padding: 1rem 0.5rem !important;
	}
	.woocommerce-tabs .panel {
		padding: 10px !important;
	}
	header.entry-header.ast-no-thumbnail {
		width: 100% !important;
	}
}

header.entry-header.ast-no-thumbnail {
  width: 1285px;
  margin: auto;
}
.wc-block-grid__product-title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: #2f5e2f !important;
  text-decoration: none;
  text-transform: uppercase;
}
span.woocommerce-Price-amount.amount {
  font-weight: bold !important;
  color: #4a7c5f !important;
  font-size: 1.3rem !important;
  margin-bottom: 0px !important;
}
a.wp-block-button__link.add_to_cart_button.ajax_add_to_cart {
  background-color: #02482a !important;
  border-radius: 30px !important;
}
.star-rating {
  color: #ffc107 !important;
}
.ast-single-post .entry-content a {
  text-decoration: none !important;
}
img.emoji {
  margin-right: 7px !important;
}
a.wc-block-components-product-name {
    color: #03482a;
    font-weight: 600;
    font-size: 26px;
}
.wc-block-components-product-price__value {
    font-size: 20px;
}
.wc-block-cart__submit-button.contained {
    background-color: #0b3e26 !important;
    border-color: #0b3e26 !important;
}
.wc-block-components-checkout-place-order-button.contained {
    background: #02482a !important;
}