/* ============================================================
   Modest Fashion – Main Stylesheet
   Color Palette: Deep Green + Gold Accent + Warm White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary: #1a5c38;
  --primary-dark: #0f3d25;
  --primary-light: #2e7d52;
  --primary-fade: #e8f5ee;
  --accent: #c9963c;
  --accent-dark: #a67c2f;
  --accent-light: #f0d898;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --bg-light: #f9fafb;
  --bg-green: #f0f9f4;
  --border: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .15);
  --shadow-green: 0 8px 32px rgba(26, 92, 56, .20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.badge-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.badge-trending {
  background: #fff3e0;
  color: #e65100;
}

.badge-bestseller {
  background: #e8f5e9;
  color: #1b5e20;
}

.badge-new {
  background: #e3f2fd;
  color: #1565c0;
}

.badge-premium {
  background: #f3e5f5;
  color: #6a1b9a;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 92, 56, .12);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.navbar-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.1;
}

.navbar-logo .logo-sub {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 400;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.navbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--primary);
  transition: right .3s ease;
}

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

.navbar-nav a:hover::after {
  right: 0;
}

.navbar-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 99px;
  font-weight: 700;
  font-family: inherit;
  transition: var(--transition) !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.navbar-cta:hover {
  background: var(--primary);
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2) !important;
}

.navbar-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .25;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: #4caf7d;
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  bottom: -50px;
  left: 20%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 99px;
  padding: 8px 18px;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title .accent {
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background: var(--primary);
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .7);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.hero-stat-item .stat-label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 350px;
  height: 460px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
  transition: transform .35s ease, box-shadow .35s ease;
}

.hero-card-main {
  position: relative;
  width: 400px;
  height: 540px;
  top: 0;
  left: 0;
  z-index: 5;
  margin: 0 auto;
}

.hero-card-main:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .35);
}

.hero-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .8s ease, transform 1s ease;
  transform: scale(1.05);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 28px;
  overflow: hidden;
}

.hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-card-back {
  width: 280px;
  height: 390px;
  top: 0px;
  left: 0px;
  transform: rotate(-7deg);
  opacity: .85;
  z-index: 4;
}

.hero-card-back:hover {
  transform: rotate(-5deg) translateY(-4px);
  opacity: 1;
}

.hero-card-img-full {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px;
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, .65) 0%, rgba(15, 23, 42, .1) 40%, rgba(15, 23, 42, .75) 100%);
  z-index: 1;
}

.hero-card-info {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
  color: #fff;
}

.hero-card-info h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.hero-card-info p {
  font-size: .88rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.hero-floating-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-badge.top-right {
  top: 20px;
  right: -10px;
}

.hero-floating-badge.bottom-left {
  bottom: 20px;
  left: -20px;
  animation-delay: 1.5s;
}

.hero-floating-badge .badge-icon {
  font-size: 1.4rem;
}

.hero-floating-badge .badge-text {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-floating-badge .badge-text span {
  color: var(--text-muted);
  font-weight: 400;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ── Category Section (Tall Cards with Image Support) ────────────────── */
/* ── Category Section (Tall Cards with Image Support) ────────────────── */
.category-section {
  padding: 64px 0;
  background: var(--bg-light);
}

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

.category-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transition: transform .35s ease, box-shadow .35s ease;
  background: linear-gradient(135deg, #1a5c38, #0f3d25);
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(26, 92, 56, .25);
  border-color: rgba(26, 92, 56, .3);
}

.category-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .92) 0%, rgba(15, 23, 42, .4) 55%, rgba(0, 0, 0, .05) 100%);
  transition: background .3s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(15, 23, 42, .96) 0%, rgba(15, 23, 42, .5) 60%, rgba(0, 0, 0, .1) 100%);
}

.category-card-body {
  position: relative;
  z-index: 10;
  padding: 24px;
}

.category-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.category-card-sub {
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 16px;
  line-height: 1.4;
}

.category-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: all .3s ease;
}

.category-card:hover .category-card-btn {
  background: #fff;
  color: #1a5c38;
}

/* ── Features ──────────────────────────────────────────────── */
.features {
  padding: 70px 0;
  background: var(--bg-green);
}

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

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(26, 92, 56, .08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-fade), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-fade), #d4edde);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Products Section ──────────────────────────────────────── */
.products-section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header-left {}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  border: 2px solid var(--primary);
  padding: 10px 22px;
  border-radius: 99px;
}

.view-all-link:hover {
  background: var(--primary);
  color: #fff;
}

/* ── Product Card ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 92, 56, .18);
  border-color: rgba(26, 92, 56, .3);
}

.product-img-wrap {
  position: relative;
  height: 480px;
  background: var(--bg-light);
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}

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

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #e8f5ee, #f0f9f4);
}

.product-img-placeholder .p-icon {
  font-size: 4rem;
}

.product-img-placeholder .p-name {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.product-badge-wrap {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.discount-badge {
  background: #ef4444;
  color: #fff;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: .72rem;
  font-weight: 700;
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
}

.product-card:hover .product-wishlist {
  opacity: 1;
}

.product-wishlist:hover {
  background: #fef2f2;
  color: #ef4444;
  transform: scale(1.1);
}

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

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.product-info .tagline {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.price-sale {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-dark);
}

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

.btn-buy-now {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  text-align: center;
}

.btn-buy-now:hover {
  background: var(--primary);
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

/* ── Reviews ───────────────────────────────────────────────── */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-green);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: .95rem;
}

.reviewer-location {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🌿';
  position: absolute;
  top: -30px;
  left: 5%;
  font-size: 8rem;
  opacity: .05;
}

.cta-section::after {
  content: '🌿';
  position: absolute;
  bottom: -30px;
  right: 5%;
  font-size: 8rem;
  opacity: .05;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, .85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.footer-brand .logo-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, .8);
}

.social-link:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255, 255, 255, .4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── WhatsApp Float ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  animation: pulse-green 2.5s infinite;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .65);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, .75);
  }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 100px 0 60px;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, .8);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .4);
}

.products-page {
  padding: 60px 0;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.filter-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: .9rem;
  margin-right: 4px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

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

.search-input-wrap {
  margin-left: auto;
  position: relative;
}

.search-input-wrap input {
  padding: 9px 16px 9px 38px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  width: 220px;
}

.search-input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 92, 56, .1);
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .9rem;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL / ORDER FORM
   ══════════════════════════════════════════════════════════════ */
.product-detail-page {
  padding: 60px 0;
}

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

.product-gallery {}

.gallery-main {
  aspect-ratio: 1;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 1px solid var(--border);
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.trust-badge {
  background: var(--bg-green);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  border: 1px solid rgba(26, 92, 56, .12);
}

.trust-badge .tb-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.trust-badge .tb-text {
  font-size: .7rem;
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.2;
}

.order-form-panel {
  position: sticky;
  top: 90px;
}

.product-detail-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-detail-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.detail-price-sale {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.detail-price-regular {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.detail-discount {
  background: #ef4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 700;
}

/* Order Form */
.order-form {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 1.5px solid rgba(26, 92, 56, .15);
  box-shadow: var(--shadow-md);
}

.order-form h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-label .required {
  color: #ef4444;
}

/* Option Cards */
.option-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.option-card:hover {
  border-color: var(--primary);
  background: var(--primary-bg-light, #e8f5ee);
}

.option-card.selected {
  border-color: var(--primary);
  background: var(--primary-bg-light, #e8f5ee);
}

.option-card.selected .option-radio {
  background: var(--primary);
  border-color: var(--primary);
}

.option-label {
  font-weight: 600;
  font-size: .93rem;
}

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

.option-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.option-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: var(--transition);
}

.option-card.selected .option-radio::after {
  opacity: 1;
}

/* Size Grid */
.size-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-btn {
  min-width: 52px;
  height: 42px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  color: var(--text-dark);
}

.size-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.size-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* Quantity */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg-light);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

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

.qty-display {
  width: 64px;
  height: 44px;
  border: none;
  border-left: 2px solid var(--border);
  border-right: 2px solid var(--border);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  background: #fff;
}

/* Delivery Area - Compact */
.delivery-area-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.delivery-card {
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.delivery-card:hover {
  border-color: var(--primary-light);
  background: var(--bg-green);
}

.delivery-card.selected {
  border-color: var(--primary);
  background: var(--bg-green);
}

.delivery-card .d-icon {
  font-size: 1.15rem;
  margin-bottom: 0;
  line-height: 1;
}

.delivery-card .d-name {
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 0;
  flex: 1;
  color: var(--text-dark);
}

.delivery-card .d-charge {
  font-size: .84rem;
  font-weight: 800;
  color: var(--primary-dark);
  background: rgba(26, 92, 56, .1);
  padding: 2px 8px;
  border-radius: 6px;
}

.delivery-card.selected .d-name {
  color: var(--primary-dark);
}

/* Form inputs */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  background: #fff;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 92, 56, .1);
}

.form-input.error {
  border-color: #ef4444;
}

textarea.form-input {
  resize: vertical;
  min-height: 80px;
}

/* Order Summary */
.order-summary {
  background: var(--primary-bg-light, #e8f5ee);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid var(--primary-bg-light, rgba(26, 92, 56, .12));
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--text-dark);
}

.order-summary-row.total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}

.btn-order-submit {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
}

.btn-order-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.cod-note {
  text-align: center;
  margin-top: 14px;
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Order Success ───────────────────────────────────────────── */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.success-card {
  max-width: 540px;
  width: 100%;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce-in .6s ease;
}

@keyframes bounce-in {
  0% {
    transform: scale(0) rotate(-20deg);
  }

  60% {
    transform: scale(1.2) rotate(5deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.success-card h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.success-card p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.success-detail-box {
  background: var(--bg-green);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
}

.success-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  margin-bottom: 8px;
}

.success-detail-row .label {
  color: var(--text-muted);
}

.success-detail-row .value {
  font-weight: 700;
  color: var(--text-dark);
}

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

  .category-card {
    height: 320px;
  }

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

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

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

@media (max-width: 768px) {
  .navbar-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 35px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 10px 0 15px;
    gap: 20px;
  }

  .hero-badge {
    margin-bottom: 10px;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: .92rem;
    margin-bottom: 20px;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 24px;
  }

  .hero-stats {
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
  }

  .hero-stat-item .stat-num {
    font-size: 1.35rem;
  }

  .hero-stat-item .stat-label {
    font-size: .75rem;
  }

  .hero-visual {
    display: block !important;
    margin: 24px auto 0;
    width: 100%;
    max-width: 330px;
    position: relative;
  }

  .hero-card-main {
    width: 100%;
    height: 420px;
    max-width: 330px;
    border-radius: 20px;
  }

  .hero-slide-item {
    border-radius: 20px;
  }

  .hero-floating-badge.top-right {
    top: -10px;
    right: -5px;
    transform: scale(0.85);
  }

  .hero-floating-badge.bottom-left {
    bottom: -10px;
    left: -5px;
    transform: scale(0.85);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .category-card {
    height: 260px;
    border-radius: 16px;
  }

  .category-card-body {
    padding: 16px;
  }

  .category-card-title {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .category-card-sub {
    font-size: .8rem;
    margin-bottom: 10px;
  }

  .category-card-btn {
    padding: 6px 14px;
    font-size: .78rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .product-img-wrap {
    aspect-ratio: 1 / 1.18 !important;
    height: auto !important;
    min-height: 180px !important;
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .order-form-panel {
    position: static;
  }

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

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

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

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

  .category-card {
    height: 230px;
    border-radius: 14px;
  }

  .category-card-body {
    padding: 12px 10px;
  }

  .category-card-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 2px;
  }

  .category-card-sub {
    font-size: .72rem;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .category-card-btn {
    padding: 4px 10px;
    font-size: .7rem;
    gap: 4px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .product-img-wrap {
    aspect-ratio: 1 / 1.18 !important;
    height: auto !important;
    min-height: 160px !important;
  }

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

  .delivery-area-cards {
    grid-template-columns: 1fr;
  }
}

/* Floating Action Buttons (Messenger & WhatsApp) */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.float-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.messenger {
  background: linear-gradient(135deg, #00B2FF, #0066FF, #A033FF);
}

/* Green See All Button */
.btn-see-all-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--primary);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 99px;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-see-all-green:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  color: #fff !important;
}

/* ── Review Pagination Dots ───────────────────────────────────── */
.rev-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b0bec5;
  cursor: pointer;
  transition: all .3s ease;
}

.rev-dot.active {
  background: var(--primary) !important;
  width: 24px !important;
  border-radius: 5px !important;
}

/* ── Support Contact Section ───────────────────────────────────── */
.support-contact-section {
  padding: 64px 0;
  background: var(--primary);
  filter: brightness(0.85);
  color: #fff;
  width: 100%;
}

.support-contact-card {
  background: transparent;
  padding: 0;
  text-align: center;
  color: #fff;
  width: 100%;
  margin: 0 auto;
}

.support-contact-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
}

.support-contact-card p {
  font-size: .98rem;
  color: rgba(255, 255, 255, .88);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.support-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-support-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #25D366;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  transition: all .3s ease;
}

.btn-support-wa:hover {
  background: #1eb855;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
}

.btn-support-msg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #00B2FF, #0066FF);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 178, 255, .35);
  transition: all .3s ease;
}

.btn-support-msg:hover {
  background: linear-gradient(135deg, #0099e6, #0052cc);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 178, 255, .45);
}

/* ── Continuous Auto-Scroll Product Gallery ────────────────────────── */
.home-gallery-section {
  position: relative;
  padding: 56px 0;
  background: #fff;
  overflow: hidden;
}

.home-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.home-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: homeMarquee 45s linear infinite;
}

.home-marquee-slide {
  position: relative;
  flex: 0 0 340px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transition: transform .4s ease;
  background: var(--primary-dark);
}

.home-marquee-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}

.home-marquee-slide:hover img {
  transform: scale(0.95);
}

.marquee-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, .88) 0%, rgba(0, 0, 0, .05) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.marquee-slide-overlay span {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .4);
}

@keyframes homeMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}