@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Staatliches&family=Dancing+Script:wght@600;700&family=Oxanium:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1A4314;       /* Rich Forest Green */
  --primary-light: #2D6B25;
  --primary-dark: #0D280A;
  --secondary: #C5A059;     /* Elegant Gold */
  --secondary-light: #D9B879;
  --secondary-dark: #A37F3E;
  --accent: #E06D43;        /* Warm Sunset Tea Orange */
  --bg-light: #F7F9F6;      /* Organic Pale Cream-Green */
  --bg-card: #FFFFFF;
  --text-main: #253323;     /* Dark Charcoal Green */
  --text-muted: #5B6D5A;
  --border-color: #E1E8E0;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(26, 67, 20, 0.05);
  --shadow-md: 0 12px 24px rgba(26, 67, 20, 0.08);
  --shadow-lg: 0 24px 48px rgba(26, 67, 20, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* HEADER & NAVIGATION */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(247, 249, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(225, 232, 224, 0.5);
  transition: var(--transition);
}

header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(3deg);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title-row {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.logo-text-img {
  height: 25px; /* height that perfectly matches the logo emblem size */
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}

.logo:hover .logo-text-img {
  transform: scale(1.02);
}

.logo-text {
  font-family: 'Oxanium', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #D11A14;
  text-transform: uppercase;
}

.tm-symbol {
  font-family: 'Inter', sans-serif;
  font-size: 0.38em;
  font-weight: 700;
  color: #D11A14;
  border: 1.2px solid #D11A14;
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  margin-left: 0.25em;
  position: relative;
  top: -0.35em;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.tm-symbol:hover {
  background-color: #D11A14;
  color: var(--white);
  border-color: #D11A14;
  transform: scale(1.1);
}

.logo-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 0.85rem;
  font-weight: 700;
  color: #C0057C;
  margin-top: -3px;
  letter-spacing: 0.5px;
}

/* VARIANT SELECTOR FOR PRODUCTS */
.variant-selector-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.variant-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.product-variant-select {
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}

.product-variant-select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(26,67,20,0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.2rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 0.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.cart-icon-btn:hover {
  transform: scale(1.1);
  color: var(--primary-light);
}

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem 2rem;
  background: linear-gradient(135deg, rgba(26,67,20,0.03) 0%, rgba(197,160,89,0.03) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(197,160,89,0.05) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-dark);
  margin-bottom: 1.5rem;
  background: rgba(197, 160, 89, 0.1);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--secondary);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 0.6rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26,67,20,0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,67,20,0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-container {
  width: 100%;
  max-width: 450px;
  height: 480px;
  position: relative;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
}

.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-left: 5px solid var(--secondary);
  animation: float 4s ease-in-out infinite;
}

.hero-badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.hero-badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

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

/* SECTION HEADER */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-dark);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
  margin: 0 auto 1.2rem auto;
  border-radius: 2px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* USPs / KEY HIGHLIGHTS */
.highlights {
  padding: 5rem 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.highlight-card {
  padding: 2.5rem 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid rgba(225, 232, 224, 0.4);
}

.highlight-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-light);
}

.highlight-icon {
  width: 55px;
  height: 55px;
  background: rgba(26, 67, 20, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--primary);
  color: var(--white);
}

.highlight-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* OUR STORY SECTION */
.story {
  padding: 8rem 2rem;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

.story-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.story-img-large {
  grid-column: span 2;
  height: 280px;
}

.story-img-small-1 {
  height: 230px;
}

.story-img-small-2 {
  height: 230px;
}

.story-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.story-features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.story-feature-item svg {
  color: var(--secondary);
  flex-shrink: 0;
}

/* PRODUCTS / SHOP SECTION */
.products {
  padding: 8rem 2rem;
  background-color: var(--white);
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.product-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-light);
}

.product-img-wrapper {
  position: relative;
  background: #ECEFEE;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 320px;
}

.product-img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

/* Special Packaging Flip View for Green Tea */
.flip-container {
  perspective: 1000px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.product-card:hover .flip-card-inner.flipped {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-back {
  transform: rotateY(180deg);
}

.flip-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.best-seller-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 10;
  box-shadow: var(--shadow-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s infinite ease-in-out;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.product-weight {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-fssai {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(26,67,20,0.05);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.product-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-benefits-list {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.product-benefits-list svg {
  color: var(--primary-light);
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
  margin-top: auto;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.add-cart-btn {
  background-color: #25D366; /* WhatsApp Green */
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(37,211,102,0.15);
  font-family: inherit;
  font-size: 0.85rem;
}

.add-cart-btn:hover {
  background-color: #20ba5a; /* Slightly darker green */
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(37,211,102,0.25);
}

/* PRODUCT DETAILS TOGGLE */
.product-details-toggle-btn {
  background: none;
  border: none;
  color: #ff5c5c; /* Light Red brand color */
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0.4rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  margin-top: 0.2rem;
}

.product-details-toggle-btn:hover {
  color: #e04b4b;
}

.product-details-toggle-btn svg {
  transition: transform 0.3s ease;
}

.product-details-toggle-btn.open svg {
  transform: rotate(180deg);
}

.product-details-collapse {
  display: none;
  margin-bottom: 1rem;
}

.product-details-collapse.show {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.product-details-collapse .product-fssai {
  display: inline-block;
  margin-bottom: 0.8rem;
}

/* TOUR BOOKING SECTION */
.tour {
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.tour-bg-blur {
  position: absolute;
  top: 10%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(26,67,20,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.tour-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  position: relative;
  z-index: 2;
  align-items: center;
}

.tour-info h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.tour-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.tour-detail-item {
  display: flex;
  gap: 1rem;
}

.tour-detail-icon {
  width: 45px;
  height: 45px;
  background: rgba(197, 160, 89, 0.1);
  color: var(--secondary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tour-detail-text h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.tour-detail-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.tour-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.tour-form-wrapper h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(26,67,20,0.06);
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 4px 12px rgba(26,67,20,0.15);
  font-size: 1rem;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26,67,20,0.25);
}

/* CONTACT & LOCATION */
.contact {
  padding: 8rem 2rem;
  background-color: var(--white);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-card-box {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

a.contact-item {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a.contact-item:hover {
  transform: translateX(5px);
}

a.contact-item:hover .contact-icon {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  border: 1px solid rgba(26,67,20,0.05);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-text p, .contact-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-text a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  color: var(--primary);
  transition: var(--transition);
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 100%;
  min-height: 450px;
  position: relative;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 450px;
  display: block;
}

.map-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  z-index: 5;
}

.map-overlay-link:hover {
  background: rgba(13, 40, 10, 0.15);
}

.map-overlay-btn {
  background: var(--primary-dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-overlay-link:hover .map-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

/* SHOPPING CART DRAWER */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 40, 10, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

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

.cart-header h3 {
  font-size: 1.5rem;
}

.close-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-main);
  transition: var(--transition);
}

.close-cart-btn:hover {
  transform: rotate(90deg);
  color: var(--accent);
}

.cart-body {
  flex-grow: 1;
  padding: 2rem;
  overflow-y: auto;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--text-muted);
}

.cart-empty-icon {
  color: var(--border-color);
  margin-bottom: 1.5rem;
}

.cart-empty h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  border: 1px solid var(--border-color);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.cart-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
}

.qty-btn:hover {
  background: rgba(26,67,20,0.08);
}

.qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0 0.5rem;
}

.remove-item-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.5rem;
  transition: var(--transition);
}

.remove-item-btn:hover {
  color: var(--accent);
  transform: scale(1.1);
}

/* Cart Checkout Section */
.cart-checkout-form {
  margin-top: 2rem;
  border-top: 2px dashed var(--border-color);
  padding-top: 1.5rem;
}

.cart-checkout-form h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.cart-totals {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cart-totals span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cart-subtotal-val {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
}

.btn-checkout {
  width: 100%;
  padding: 1.1rem;
  background-color: #25D366; /* WhatsApp Green */
  color: var(--white);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  font-size: 1rem;
  transition: var(--transition);
}

.btn-checkout:hover {
  background-color: #1ebd59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-dark);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--secondary);
}

/* FOOTER */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 5rem 2rem 2rem 2rem;
  border-top: 5px solid var(--secondary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.8rem;
  line-height: 1.5;
}

.footer-contact svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: var(--secondary);
}


/* EXPANDABLE TRADEMARK WATERMARK */
.trademark-watermark-wrapper {
  max-width: 600px;
  margin: 1.5rem auto 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.trademark-watermark-trigger {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.trademark-watermark-trigger:hover {
  color: var(--secondary-light);
  border-color: var(--secondary-light);
  background: rgba(255, 255, 255, 0.03);
}

.trademark-watermark-content,
.trust-watermark-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
  opacity: 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  margin-top: 0.75rem;
}

.trademark-watermark-content.open {
  max-height: 350px;
  opacity: 1;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-watermark-content.open {
  max-height: 600px;
  opacity: 1;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.watermark-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 480px) {
  .watermark-details-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .watermark-detail-item {
    grid-column: span 1 !important;
  }
}

.watermark-detail-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 0.4rem;
}

.detail-label {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.detail-value {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.detail-value.jeevan-tea-brand {
  color: #D11A14 !important;
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
}

.watermark-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  text-align: justify;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-container,
  .story-container,
  .tour-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero {
    padding-top: 7rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-container {
    height: 380px;
    max-width: 380px;
  }
  
  .hero-badge {
    left: 20px;
    bottom: -10px;
  }
  
  .story-image-gallery {
    order: 2;
  }
  
  .story-content {
    order: 1;
  }
  
  .tour-info {
    text-align: center;
  }
  
  .tour-details-grid {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
  }
  
  .tour-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-info-panel {
    order: 2;
  }
  
  .contact-map-wrapper {
    order: 1;
    min-height: 380px;
  }
  
  .contact-map-wrapper iframe {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Mobile Menu Drawer handles this */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-links.open {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero h1 {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .product-img-wrapper {
    height: 250px;
  }
  
  .product-img {
    max-height: 200px;
  }
  
  .tour-form-wrapper {
    padding: 1.5rem;
  }
  
  .cart-drawer {
    max-width: 100%;
    right: -100%;
  }
}

/* GLOBAL BRAND STYLING */
.jeevan-tea-brand {
  font-family: 'Oxanium', sans-serif;
  font-weight: 800;
  color: #D11A14;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* STORY READ MORE TOGGLE */
.story-more-content {
  display: none;
}

.story-more-content.show {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.read-more-btn {
  background: none;
  border: none;
  color: #ff5c5c; /* Light Red */
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.read-more-btn:hover {
  color: #e04b4b;
}

.read-more-btn svg {
  transition: transform 0.3s ease;
}

.read-more-btn.open svg {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE VIEWPORT OPTIMIZATIONS (FIX ZOOMED-IN LOOK) */
@media (max-width: 768px) {
  /* Reduce extreme section paddings */
  .hero, .story, .products, .tour, .contact {
    padding: 3.5rem 1.25rem;
  }
  
  .hero {
    padding-top: 6rem; /* space for sticky navbar */
  }
  
  .highlights {
    padding: 2.5rem 1.25rem;
  }
  
  footer {
    padding: 3.5rem 1.25rem 1.5rem 1.25rem;
  }
  
  /* Scale down massive image sizes and gallery spacing */
  .story-img-large {
    height: 280px;
  }
  
  .story-img-small-1, 
  .story-img-small-2 {
    height: 130px;
  }
  
  .story-image-gallery {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  /* Squeeze layout gaps */
  .hero-container,
  .story-container,
  .tour-container,
  .contact-container {
    gap: 2rem;
  }
  
  /* Slightly smaller titles for compact look */
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 480px) {
  /* Even tighter layout for small screens */
  .hero, .story, .products, .tour, .contact {
    padding: 2.5rem 1rem;
  }
  
  .hero {
    padding-top: 5rem;
  }
  
  .highlights {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.75rem;
  }
  
  .story-img-large {
    height: 200px;
  }
  
  .story-img-small-1, 
  .story-img-small-2 {
    height: 95px;
  }
  
  /* Shrink benefits lists padding on mobile */
  .product-benefits-list {
    padding-left: 0.2rem;
  }
  
  /* Clean up contact cards */
  .contact-info-card {
    padding: 1.5rem;
  }
  
  /* Scale down emblem size for tight fit */
  .logo-img {
    width: 32px;
    height: 32px;
  }
  
  .logo-text-img {
    height: 19px;
  }
}

/* ABOUT NAVIGATION DROPDOWN */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.2rem 0;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.nav-dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  background: rgba(18, 38, 20, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.2rem;
  color: #f1f5f2;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a::after {
  display: none !important;
}

.nav-dropdown-menu a:hover {
  background: rgba(197, 160, 89, 0.18);
  color: var(--secondary);
}

.dropdown-icon {
  font-size: 1rem;
  line-height: 1;
}

/* FLOATING NEWS & OFFERS WIDGET */
.floating-news-widget {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 340px;
  max-width: calc(100vw - 30px);
  background: rgba(18, 38, 20, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding: 1.25rem;
  color: var(--white);
  animation: floatInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.floating-news-widget.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}

@keyframes floatInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.news-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.75rem;
  margin-bottom: 0.85rem;
}

.news-widget-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary);
}

.news-badge-live {
  background: #e74c3c;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 10px;
  letter-spacing: 0.5px;
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.news-widget-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.news-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.news-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.news-widget-body {
  position: relative;
  min-height: 115px;
}

.news-item {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-item.active {
  display: block;
  opacity: 1;
}

.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.news-tag.new-launch {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.news-tag.special-offer {
  background: rgba(197, 160, 89, 0.2);
  color: var(--secondary);
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.news-tag.trust-update {
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.news-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.news-item p {
  font-size: 0.82rem;
  color: #b0c2b4;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.news-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-link-btn:hover {
  color: var(--white);
}

.news-widget-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.news-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.news-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

.news-timer-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* MINIMIZED FLOATING BADGE */
.minimized-news-badge {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: rgba(18, 38, 20, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--white);
  padding: 0.65rem 1.1rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.minimized-news-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border-color: var(--secondary);
}

.news-badge-icon {
  font-size: 1.05rem;
}

.news-ping {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
}
