/* ==========================================================================
   Dorr Guddi - Official Stylesheet (dorrguddi.com)
   Vibrant, Modern Kite Festival & E-Commerce Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --primary: #0a3d82;
  --primary-light: #1655b3;
  --primary-dark: #062654;
  --primary-rgb: 10, 61, 130;

  --accent-pink: #e60067;
  --accent-pink-light: #ff2b89;
  --accent-pink-dark: #be0055;
  --accent-pink-rgb: 230, 0, 103;

  --accent-yellow: #ffb703;
  --accent-yellow-light: #ffd166;
  --accent-yellow-rgb: 255, 183, 3;

  --accent-cyan: #00b4d8;
  --accent-cyan-rgb: 0, 180, 216;

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;

  --bg-body: #ffffff;
  --bg-soft: #f8fafc;
  --bg-warm: #fffdf5;
  --bg-gradient: linear-gradient(135deg, rgba(10, 61, 130, 0.04) 0%, rgba(230, 0, 103, 0.05) 50%, rgba(255, 183, 3, 0.04) 100%);
  --hero-gradient: linear-gradient(135deg, #062654 0%, #0a3d82 50%, #700645 100%);

  --border-color: #e2e8f0;
  --border-light: #f1f5f9;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 20px rgba(10, 61, 130, 0.08);
  --shadow-lg: 0 16px 36px rgba(10, 61, 130, 0.12);
  --shadow-hover: 0 22px 40px rgba(230, 0, 103, 0.16);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(230, 0, 103, 0.1);
  color: var(--accent-pink);
  margin-bottom: 0.75rem;
}

.section-tag.yellow {
  background: rgba(255, 183, 3, 0.15);
  color: #b37400;
}

.section-tag.blue {
  background: rgba(10, 61, 130, 0.1);
  color: var(--primary);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

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

.text-primary {
  color: var(--primary);
}

.text-pink {
  color: var(--accent-pink);
}

.text-yellow {
  color: var(--accent-yellow);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-smooth);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(10, 61, 130, 0.25);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 61, 130, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-pink) 0%, #ff1479 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(230, 0, 103, 0.32);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-pink-light) 0%, var(--accent-pink) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(230, 0, 103, 0.45);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
}

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

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

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

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

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #ff1479 0%, #e60067 25%, #0a3d82 75%, #ffb703 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  text-align: center;
  position: relative;
  z-index: 100;
  letter-spacing: 0.02em;
}

.announcement-bar .ticker-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.announcement-bar a {
  color: var(--accent-yellow-light);
  text-decoration: underline;
  margin-left: 0.35rem;
}

.header-main {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  height: 135px;
  max-height: 135px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.04);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: var(--accent-pink);
  border-radius: 4px;
  transition: width 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-pink);
}

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

.nav-badge {
  background: var(--accent-pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  margin-left: 0.25rem;
  vertical-align: super;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  position: relative;
  transition: var(--transition-fast);
}

.action-btn:hover {
  background: rgba(10, 61, 130, 0.08);
  color: var(--primary);
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent-pink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.mobile-toggle {
  display: none;
  font-size: 1.65rem;
  line-height: 1;
  background: none;
  border: none;
  color: var(--text-dark);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, transform 0.15s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-toggle:hover,
.mobile-toggle:focus {
  background: rgba(10, 61, 130, 0.08);
  outline: none;
}

.mobile-toggle:active {
  transform: scale(0.92);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: var(--hero-gradient);
  color: var(--white);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

.hero-overlay-decor {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(230, 0, 103, 0.25) 0%, transparent 40%),
                    radial-gradient(circle at 90% 80%, rgba(255, 183, 3, 0.25) 0%, transparent 45%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-yellow-light);
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #ffd166 0%, #ff4d94 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.stat-item h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-media {
  position: relative;
  text-align: center;
}

.hero-banner-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.5s ease;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  color: var(--text-dark);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card .badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(230, 0, 103, 0.12);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-floating-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.hero-floating-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

/* ==========================================================================
   Features / Trust Highlights Bar
   ========================================================================== */
.features-bar {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.feature-box:hover {
  background: var(--bg-soft);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-box:nth-child(1) .feature-icon {
  background: rgba(10, 61, 130, 0.1);
  color: var(--primary);
}

.feature-box:nth-child(2) .feature-icon {
  background: rgba(230, 0, 103, 0.1);
  color: var(--accent-pink);
}

.feature-box:nth-child(3) .feature-icon {
  background: rgba(255, 183, 3, 0.15);
  color: #b37400;
}

.feature-box:nth-child(4) .feature-icon {
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent-cyan);
}

.feature-info h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.feature-info p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Category Showcase
   ========================================================================== */
.categories-section {
  padding: 4.5rem 0;
  background: var(--bg-soft);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(230, 0, 103, 0.3);
}

.category-img-wrap {
  position: relative;
  padding-top: 75%;
  background: #f1f5f9;
  overflow: hidden;
}

.category-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-content {
  padding: 1.25rem;
  text-align: center;
  background: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.category-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.category-link-btn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.category-link-btn:hover {
  color: var(--primary);
}

/* ==========================================================================
   Product Grid & Cards
   ========================================================================== */
.products-section {
  padding: 5rem 0;
  background: var(--white);
}

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 2rem 0 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(10, 61, 130, 0.2);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 0, 103, 0.3);
  box-shadow: var(--shadow-hover);
}

.product-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-approved {
  background: #10b981;
  color: var(--white);
}

.badge-sale {
  background: var(--accent-pink);
  color: var(--white);
}

.badge-bundle {
  background: var(--accent-yellow);
  color: #593b00;
}

.product-thumb-wrap {
  position: relative;
  padding-top: 85%;
  background: #f8fafc;
  overflow: hidden;
}

.product-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
  transition: transform 0.4s ease;
}

.product-card:hover .product-thumb {
  transform: scale(1.06);
}

.product-actions-hover {
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  transition: bottom 0.3s ease;
  z-index: 4;
  border-top: 1px solid var(--border-light);
}

.product-card:hover .product-actions-hover {
  bottom: 0;
}

.product-details {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-pink);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  min-height: 2.7rem;
}

.product-title a:hover {
  color: var(--accent-pink);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--accent-yellow);
  margin-bottom: 0.75rem;
}

.product-rating span {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-left: 0.25rem;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-color);
}

.price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
}

.price-old {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.product-card-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-card-cart {
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.btn-card-cart:hover {
  background: var(--primary-light);
}

.btn-card-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.btn-card-wa:hover {
  background: #25d366;
  color: var(--white);
}

/* ==========================================================================
   Promotional Banner / Deal of the Day
   ========================================================================== */
.deal-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #062654 0%, #0a3d82 40%, #c40057 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.deal-decor {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255, 183, 3, 0.25) 0%, transparent 40%);
  pointer-events: none;
}

.deal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.deal-media {
  position: relative;
}

.deal-img {
  border-radius: var(--radius-xl);
  border: 4px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-height: 440px;
  object-fit: cover;
}

.deal-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: var(--accent-yellow);
  color: #4a3000;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  transform: rotate(12deg);
}

.deal-badge span {
  font-size: 1.25rem;
  line-height: 1;
}

.deal-content h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.deal-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.deal-countdown {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  min-width: 70px;
  text-align: center;
}

.countdown-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-yellow);
  line-height: 1;
}

.countdown-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.35rem;
}

.deal-pricing-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.deal-price-current {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-yellow);
}

.deal-price-old {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

/* ==========================================================================
   Basant Guide / Safety Notice Section
   ========================================================================== */
.safety-section {
  padding: 5rem 0;
  background: var(--bg-warm);
  border-top: 1px solid #fef3c7;
  border-bottom: 1px solid #fef3c7;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.safety-img-wrap {
  position: relative;
}

.safety-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.safety-rules-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.safety-rule-item {
  display: flex;
  gap: 1rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent-pink);
}

.safety-rule-icon {
  font-size: 1.5rem;
  color: var(--accent-pink);
  flex-shrink: 0;
}

.safety-rule-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.safety-rule-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 61, 130, 0.2);
}

.testimonial-stars {
  color: var(--accent-yellow);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-badge {
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
  background: var(--white);
}

.faq-container {
  max-width: 860px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(10, 61, 130, 0.08);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition-fast);
}

.faq-question:hover {
  color: var(--accent-pink);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-pink);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: var(--bg-soft);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding: 1.25rem 1.5rem 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-main {
  background: #061938;
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-logo-img {
  height: 135px;
  max-height: 135px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-item a:hover {
  color: var(--accent-yellow);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2.5px;
  background: var(--accent-pink);
  border-radius: 2px;
}

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

.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.newsletter-form {
  display: flex;
  margin-top: 1rem;
  border-radius: var(--radius-pill);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-input {
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  outline: none;
  font-size: 0.9rem;
  flex-grow: 1;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
  background: var(--accent-pink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background: var(--accent-pink-light);
}

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

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--accent-pink);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

/* ==========================================================================
   Slide-over Cart Drawer
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  z-index: 1001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer-overlay.active .cart-drawer {
  right: 0;
}

/* ==========================================================================
   Mobile Navigation Drawer (Slide from Left)
   ========================================================================== */
#mobileNavOverlay.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

#mobileNavOverlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#mobileNavDrawer,
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0 !important;
  right: auto !important;
  width: 82% !important;
  max-width: 320px !important;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 100000;
  box-shadow: 8px 0 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: translateX(-105%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}

#mobileNavOverlay.active #mobileNavDrawer,
#mobileNavOverlay.active .mobile-nav-drawer,
#mobileNavDrawer.active,
.mobile-nav-drawer.active {
  transform: translateX(0) !important;
}

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

.cart-drawer-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-drawer-btn {
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.close-drawer-btn:hover {
  color: var(--accent-pink);
}

.cart-drawer-body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

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

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

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.cart-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  overflow: hidden;
}

.qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

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

.qty-input {
  width: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-remove {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--accent-pink);
}

.cart-empty-message {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty-message .empty-icon {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-soft);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.cart-summary-row.total {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1px dashed var(--border-color);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.cart-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  background: #20ba59;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp-icon {
  font-size: 1.5rem;
}

/* ==========================================================================
   Page Headers (Shop, About, Contact, etc.)
   ========================================================================== */
.page-hero {
  background: var(--hero-gradient);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumbs a {
  color: var(--accent-yellow-light);
}

/* ==========================================================================
   Responsive Design & Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

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

  .deal-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deal-countdown {
    justify-content: center;
  }

  .deal-pricing-wrap {
    justify-content: center;
  }

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

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

@media (max-width: 768px) {
  .brand-logo-img {
    height: 95px;
    max-height: 95px;
  }

  .nav-desktop {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.4rem;
  }

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

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

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

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

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 0.75rem;
    border-radius: 50%;
  }

  .cart-drawer {
    max-width: 100%;
  }
}
