/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #9A2221;
  --secondary-color: #8B5A2B;
  --accent-color: #4F8546;
  --text-dark: #2C2C2C;
  --text-light: #666;
  --bg-light: #F8F6F1;
  --bg-white: #FFFFFF;
  --border-color: #E0D9D0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: #FAFAF8;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, button, input, select, textarea {
  font-family: 'Montserrat', Arial, sans-serif;
}

.story h2,
.story-block h3 {
  font-family: 'Times New Roman', Georgia, serif;
}

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

/* ========== Navigation Header ========== */
.navbar {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 58px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 24px;
  transition: transform 0.3s ease;
}

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

.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fcfcfc;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-video,
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1.5;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  background: rgba(16, 24, 28, 0.12);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text h1 {
  font-size: 64px;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #E63946;
}

.tagline {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
  opacity: 1;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
  opacity: 1;
}

.description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: 500;
  opacity: 1;
  line-height: 1.8;
}

.cta-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 30px;
}

.cta-button:hover {
  background-color: #45A049;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.trust-badge {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  opacity: 1;
  display: flex;
  gap: 20px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.tea-package {
  font-size: 150px;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ========== Shop Section ========== */
.shop {
  padding: 80px 20px;
  background-color: var(--bg-white);
}

.shop h2 {
  color: #9A2221;
}

.shop h2,
.why-saapati h2,
.brewing h2,
.story h2,
.comparison h2,
.reviews h2,
.faq h2 {
  font-size: 48px;
  margin-bottom: 15px;
  color: var(--primary-color);
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 40px;
}

.filter-section {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  border: 2px solid var(--border-color);
  background-color: transparent;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: white;
}

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

.product-card {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(212, 132, 13, 0.1);
}

.product-image {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 18px;
  background-color: #FFF4E7;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(212, 132, 13, 0.08);
}

.product-image.product-image--no-bg {
  min-height: auto;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}

.product-image.product-image--no-bg img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

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

.product-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.product-subtitle {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 15px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-dark);
}

.product-features span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.product-features span::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  box-shadow: inset 0 0 0 2px white;
}

.price-tag {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.product-sizes {
  margin-bottom: 20px;
}

.size-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(49, 33, 17, 0.16);
  border-radius: 14px;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(180deg, #fff 0%, #f5f0e8 100%);
  color: #2b2b2b;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23333' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 8px;
}

.size-select:hover,
.size-select:focus {
  border-color: rgba(212, 132, 13, 0.5);
  outline: none;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(212, 132, 13, 0.08);
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.add-to-cart:hover {
  background-color: var(--secondary-color);
  transform: scale(1.02);
}

/* ========== Why Saapati Section ========== */
.why-saapati {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

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

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.feature-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

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

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ========== Brewing Section ========== */
.brewing {
  padding: 80px 20px;
  background-color: white;
}

.brewing-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.step {
  text-align: center;
  padding: 25px;
  background-color: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.step:hover .step-number {
  background-color: white;
  color: var(--primary-color);
}

.step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-light);
}

.step:hover p {
  color: rgba(255,255,255,0.9);
}

/* ========== Story Section ========== */
.story {
  padding: 80px 20px;
  background-color: #f8f5f0;
}

.story-tagline {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b3e26;
  margin-bottom: 20px;
}

.story h2 {
  font-family: 'Georgia', serif;
  font-size: 48px;
  text-align: center;
  color: #2c2c2c;
  margin-bottom: 40px;
  position: relative;
}

.story h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #c58a2b;
  margin: 20px auto 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-block h3 {
  font-family: 'Georgia', serif;
  font-size: 24px;
  color: #6b3e26;
  margin-bottom: 15px;
}

.story-block p {
  line-height: 1.7;
  color: #555;
  font-size: 16px;
}

.story-block.closing p {
  font-style: italic;
  font-size: 18px;
  color: #6b3e26;
}

.belief-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.belief-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0d9d0;
  color: #555;
  font-weight: 500;
}

.story-image {
  display: flex;
  justify-content: center;
  align-items: start;
}

.story-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

.founder-avatar {
  display: none;
}

/* ========== Comparison Section ========== */
.comparison {
  padding: 80px 20px;
  background-color: white;
}

.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table thead {
  background-color: var(--primary-color);
  color: white;
}

table th,
table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

table tr:nth-child(even) {
  background-color: var(--bg-light);
}

table tr:hover {
  background-color: rgba(212, 132, 13, 0.1);
}

/* ========== Reviews Section ========== */
.reviews {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

.reviews-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.reviews-grid::-webkit-scrollbar,
.reviews-grid {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 280px;
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 650px) {
  .review-card {
    flex: 0 0 100%;
  }
}

.review-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stars {
  font-size: 20px;
  margin-bottom: 15px;
}

.review-text {
  color: var(--text-light);
  margin-bottom: 15px;
  font-style: italic;
  line-height: 1.8;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.verified {
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
}

/* ========== FAQ Section ========== */
.faq {
  padding: 90px 20px;
  background-color: #FAFBFF;
}

.faq-top {
  text-align: center;
  margin-bottom: 50px;
}

.faq-pill {
  display: inline-block;
  background-color: rgba(212, 132, 13, 0.12);
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.faq-top h2 {
  margin: 0 auto;
  max-width: 760px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--text-dark);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(227, 221, 214, 0.9);
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(70, 54, 49, 0.08);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background-color: transparent;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.25s ease;
  color: var(--text-dark);
}

.faq-question:hover {
  background-color: rgba(212, 132, 13, 0.08);
}

.faq-question .faq-text {
  flex: 1;
}

.faq-toggle {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: auto;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 30px 0;
  background-color: white;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.active {
  max-height: 280px;
  padding-top: 18px;
  padding-bottom: 24px;
}

/* ========== Cart Modal ========== */
.cart-modal {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  z-index: 200;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.cart-modal.active {
  right: 0;
}

.cart-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.close-cart {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart {
  text-align: center;
  color: var(--text-light);
  padding: 40px 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.item-info {
  flex: 1;
}

.item-info strong {
  display: block;
  margin-bottom: 5px;
}

.item-info p {
  font-size: 12px;
  color: var(--text-light);
}

.item-price {
  font-weight: 600;
  margin-right: 15px;
}

.remove-item {
  background-color: #FFE4E1;
  color: #D32F2F;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background-color: #D32F2F;
  color: white;
}

.cart-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-light);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 18px;
}

.checkout-button {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.checkout-button:hover {
  background-color: #45A049;
}

.free-shipping {
  text-align: center;
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
}

/* ========== Footer ========== */
.footer {
  background-color: #1f1a17;
  color: #f2ede6;
  padding: 80px 20px 40px;
}

.footer-inner {
  display: grid;
  gap: 40px;
}

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

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand .footer-logo {
  font-family: 'Georgia', serif;
  font-size: 30px;
  letter-spacing: 0.25em;
  color: #c58a2b;
}

.footer-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d9c3a4;
}

.footer-copy {
  color: #d9c3a4;
  line-height: 1.8;
  max-width: 320px;
}

.footer-links-column h4,
.footer-contact-column h4,
.footer-location-column h4 {
  margin: 0;
  color: #f9f3ec;
  font-size: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.footer-links li {
  font-size: 15px;
  color: #d9c3a4;
}

.footer-links a,
.footer-contact-column p a,
.footer-legal a {
  color: #d9c3a4;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact-column p a:hover,
.footer-legal a:hover {
  color: #c58a2b;
}

.footer-contact-column p,
.location-block div p,
.footer-copy {
  margin: 0;
  color: #d9c3a4;
  font-size: 15px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.07);
  color: #f2ede6;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background-color: rgba(197, 138, 43, 0.18);
  color: #c58a2b;
  transform: translateY(-2px);
}

.location-block {
  display: flex;
  gap: 18px;
  align-items: center;
}

.location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.location-icon img {
  display: block;
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.location-block div p {
  margin: 0;
  color: #d9c3a4;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 14px;
  color: #b8aa9e;
  gap: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.18);
}

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

@media (max-width: 680px) {
  .footer {
    padding: 60px 20px 30px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .tagline {
    font-size: 20px;
  }

  .nav-links {
    gap: 15px;
    font-size: 14px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

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

  .cart-modal {
    width: 100%;
    right: -100%;
  }

  .faq-list {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 14px;
  }

  table th,
  table td {
    padding: 12px;
  }

  .hero {
    padding: 50px 20px;
  }

  .shop,
  .why-saapati,
  .brewing,
  .story,
  .comparison,
  .reviews,
  .faq {
    padding: 50px 20px;
  }

  .shop h2,
  .why-saapati h2,
  .brewing h2,
  .story h2,
  .comparison h2,
  .reviews h2,
  .faq h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .navbar .container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .tagline {
    font-size: 16px;
  }

  .trust-badge {
    flex-direction: column;
    gap: 8px;
  }

  .tea-package {
    font-size: 100px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}