/* ========================================
   YAKSHARAT - Animations & Styles
   ======================================== */

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.85); } to { opacity: 1; transform: scale(1); } }
@keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { transform: scale(1.05); } 70% { transform: scale(0.95); } 100% { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes leafSway { 0%, 100% { transform: rotate(0deg); } 25% { transform: rotate(3deg); } 75% { transform: rotate(-3deg); } }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.page-loader { position: fixed; inset: 0; background: linear-gradient(135deg, #0a4c36 0%, #00b566 100%); z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader .loader-icon { font-size: 2rem; color: #fff; animation: leafSway 1.5s ease-in-out infinite; margin-bottom: 0.6rem; }
.page-loader .loader-text { font-family: 'Outfit', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.8); letter-spacing: 1px; text-transform: uppercase; max-width: 90vw; text-align: center; line-height: 1.6; word-break: break-word; background: linear-gradient(90deg, rgba(255,255,255,0.8), #fff, rgba(255,255,255,0.8)); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 2s linear infinite; }
.page-loader .loader-bar { width: 100px; height: 2px; background: rgba(255,255,255,0.2); border-radius: 2px; margin-top: 1rem; overflow: hidden; }
.page-loader .loader-bar::after { content: ''; display: block; width: 50%; height: 100%; background: #fff; border-radius: 2px; animation: shimmer 1.5s ease-in-out infinite; }

.announcement-bar { background: linear-gradient(90deg, #0a4c36, #00b566, #0a4c36); background-size: 200% 100%; animation: shimmer 4s linear infinite; color: #fff; padding: 5px 0; font-size: 11px; text-align: center; overflow: hidden; }
.announcement-bar .marquee-text { display: inline-flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.announcement-bar .marquee-text span { margin: 0 3rem; display: inline-flex; align-items: center; gap: 4px; }

.site-header { background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid #f0f0f0; position: sticky; top: 0; z-index: 1000; transition: all 0.3s ease; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 4px; text-decoration: none; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px; color: #0a4c36; flex-shrink: 0; }
.logo img {
  height: clamp(34px, 4.2vw, 46px);
  width: auto;
  display: block;
  border-radius: 10px;
  filter: drop-shadow(0 2px 5px rgba(0,181,102,0.18));
  animation: logoIn 0.7s cubic-bezier(0.22,1,0.36,1) both;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
}
.logo:hover img {
  transform: scale(1.08) rotate(-4deg);
  filter: drop-shadow(0 8px 18px rgba(0,181,102,0.45));
}
@keyframes logoIn {
  0% { opacity: 0; transform: translateY(-10px) scale(0.9) rotate(-8deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
.logo i { color: #00b566; font-size: 18px; transition: transform 0.3s ease; }
.logo:hover i { transform: rotate(15deg); }

/* ─── Sidebar Nav (always hidden, slides in on click) ─── */
.nav-links { display: none; position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; flex-direction: column; background: #fff; padding: 70px 16px 20px; z-index: 999; box-shadow: -4px 0 30px rgba(0,0,0,0.08); transition: right 0.35s cubic-bezier(0.23,1,0.32,1); gap: 2px; overflow-y: auto; list-style: none; margin: 0; }
.nav-links.mobile-open { right: 0; display: flex; }
.nav-links > li > a { text-decoration: none; color: #333; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500; padding: 10px 14px; border-radius: 8px; transition: all 0.3s ease; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover { color: #00b566; background: rgba(0,181,102,0.05); }
.nav-links .drop-arrow { font-size: 8px; margin-left: auto; transition: transform 0.3s ease; }
.nav-links .nav-dropdown.open .drop-arrow { transform: rotate(180deg); }

/* ─── Dropdown inside sidebar (accordion) ─── */
.nav-dropdown .dropdown-menu { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; background: #f8fdf9; border-radius: 8px; padding: 4px; margin: 2px 0 4px 8px; display: none; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; list-style: none; }
.nav-dropdown .dropdown-menu.open { display: block; max-height: 300px; }
.dropdown-menu::before { display: none; }
.dropdown-menu li a { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 8px; color: #444; text-decoration: none; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500; transition: all 0.2s ease; }
.dropdown-menu li a:hover { background: rgba(0,181,102,0.06); color: #00b566; transform: translateX(3px); }
.dropdown-menu li a i { width: 16px; text-align: center; font-size: 12px; color: #00b566; }
.dropdown-divider { display: none; }

@@media (min-width: 769px) {
  .nav-links { display: flex; position: static; width: auto; height: auto; background: none; padding: 0; box-shadow: none; flex-direction: row; gap: 4px; overflow: visible; }
  .nav-links > li > a { padding: 8px 12px; font-size: 13px; }
  .nav-dropdown { position: relative; }
  .nav-dropdown .dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 180px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); padding: 6px; display: none; max-height: none; margin: 4px 0 0; }
  .nav-dropdown .dropdown-menu.open { display: block; }
  .nav-dropdown .dropdown-menu li a { font-size: 13px; padding: 8px 12px; border-radius: 8px; }
  .nav-links .drop-arrow { margin-left: 4px; }
  .nav-backdrop { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ─── Header Icons ─── */
.header-icons { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.header-icon-btn { background: none; border: none; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #444; font-size: 14px; cursor: pointer; transition: all 0.3s ease; position: relative; }
.header-icon-btn:hover { background: rgba(0,181,102,0.08); color: #00b566; }
.header-icon-btn .badge { position: absolute; top: 0; right: 0; background: #00b566; color: #fff; font-size: 9px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; animation: bounceIn 0.4s ease; }
.header-user-name { font-size: 12px; color: #166534; font-weight: 600; white-space: nowrap; display: flex; align-items: center; gap: 4px; }

/* ─── Hamburger ─── */
.mobile-menu-toggle { display: flex; background: none; border: none; cursor: pointer; width: 30px; height: 30px; position: relative; z-index: 1001; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.hamburger-line { display: block; width: 20px; height: 2px; background: #333; border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.mobile-menu-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Nav ─── */
.nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998; opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.nav-backdrop.active { opacity: 1; pointer-events: auto; }

/* ─── Search Bar ─── */
.search-bar { position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid #f0f0f0; padding: 12px 24px; transform: translateY(-110%); opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.23,1,0.32,1); z-index: 99; }
.search-bar.open { transform: translateY(0); opacity: 1; visibility: visible; z-index: 1001; pointer-events: auto; }
.search-bar { pointer-events: none; }
.search-bar-inner { max-width: 600px; margin: 0 auto; display: flex; align-items: center; gap: 8px; background: #f5f5f5; border-radius: 10px; padding: 4px 12px; border: 1px solid #e8e8e8; transition: border-color 0.3s; }
.search-bar-inner:focus-within { border-color: #00b566; background: #fff; }
.search-bar-inner i { color: #999; font-size: 14px; }
.search-bar-inner input { flex: 1; border: none; background: transparent; padding: 8px 4px; font-family: 'Outfit', sans-serif; font-size: 13px; outline: none; color: #333; }
.search-bar-inner input::placeholder { color: #bbb; }
.search-close { background: none; border: none; color: #999; cursor: pointer; font-size: 14px; padding: 4px; transition: color 0.3s; }
.search-close:hover { color: #333; }

.hero-section { position: relative; min-height: 80vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #f0faf4 0%, #e8f5e9 50%, #f5fff8 100%); }
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-shapes .circle { position: absolute; border-radius: 50%; opacity: 0.1; }
.hero-bg-shapes .circle-1 { width: 350px; height: 350px; background: #00b566; top: -100px; right: -80px; animation: float 6s ease-in-out infinite; }
.hero-bg-shapes .circle-2 { width: 200px; height: 200px; background: #0a4c36; bottom: -60px; left: -50px; animation: float 8s ease-in-out infinite 1s; }
.hero-bg-shapes .circle-3 { width: 120px; height: 120px; background: #fed02f; top: 30%; right: 25%; animation: float 5s ease-in-out infinite 0.5s; }
.hero-content { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.hero-text { animation: fadeInLeft 0.8s ease forwards; }
.hero-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(0,181,102,0.08); border: 1px solid rgba(0,181,102,0.15); padding: 4px 12px; border-radius: 50px; font-size: 11px; color: #0a4c36; font-weight: 500; margin-bottom: 12px; }
.hero-badge i { color: #00b566; }
.hero-title { font-family: 'Outfit', sans-serif; font-size: 38px; font-weight: 700; line-height: 1.15; color: #1a1a1a; margin: 8px 0; }
.hero-title .highlight { color: #00b566; position: relative; display: inline-block; }
.hero-title .highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 6px; background: rgba(0,181,102,0.15); border-radius: 3px; z-index: -1; }
.hero-subtitle { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 16px; max-width: 420px; }
.hero-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 5px; padding: 9px 18px; background: linear-gradient(135deg, #00b566, #0a4c36); color: #fff; border: none; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.3s ease; position: relative; overflow: hidden; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,181,102,0.3); }
.btn-secondary { display: inline-flex; align-items: center; gap: 5px; padding: 9px 18px; background: transparent; color: #0a4c36; border: 1.5px solid #0a4c36; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.btn-secondary:hover { background: #0a4c36; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,76,54,0.2); }
.hero-stats { display: flex; gap: 2rem; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.06); }
.hero-stat { text-align: center; }
.hero-stat .stat-number { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 700; color: #00b566; display: block; }
.hero-stat .stat-label { font-size: 10px; color: #999; margin-top: 1px; }
.hero-image { position: relative; animation: fadeInRight 0.8s ease 0.3s forwards; opacity: 0; }
.hero-image img { width: 100%; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.08); transition: transform 0.5s ease; }
.hero-image:hover img { transform: scale(1.02); }
.hero-floating-card { position: absolute; background: #fff; border-radius: 12px; padding: 8px 12px; box-shadow: 0 6px 24px rgba(0,0,0,0.08); display: flex; align-items: center; gap: 6px; animation: float 4s ease-in-out infinite; }
.hero-floating-card.card-1 { bottom: -14px; left: -20px; }
.hero-floating-card.card-2 { top: 14px; right: -14px; animation-delay: 1s; }
.hero-floating-card .card-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.hero-floating-card .card-icon.green { background: rgba(0,181,102,0.1); color: #00b566; }
.hero-floating-card .card-icon.yellow { background: rgba(254,208,47,0.2); color: #d4a800; }
.hero-floating-card .card-text { font-size: 11px; font-weight: 600; color: #333; }
.hero-floating-card .card-subtext { font-size: 9px; color: #999; }

.features-bar { background: #fff; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; padding: 14px 0; }
.features-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.feature-item { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 8px; transition: all 0.3s ease; }
.feature-item:hover { background: rgba(0,181,102,0.03); transform: translateY(-1px); }
.feature-item .feature-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #00b566; background: rgba(0,181,102,0.06); flex-shrink: 0; transition: all 0.3s ease; }
.feature-item:hover .feature-icon { background: #00b566; color: #fff; transform: scale(1.08); }
.feature-item .feature-text h4 { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; color: #1a1a1a; margin: 0; }
.feature-item .feature-text p { font-size: 10px; color: #999; margin: 0; }

.section-title { text-align: center; margin-bottom: 2rem; }
.section-title .subtitle { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: #00b566; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.section-title h2 { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; color: #1a1a1a; margin: 4px 0; }
.section-title p { font-size: 13px; color: #999; max-width: 480px; margin: 0 auto; }

/* === 3D TOP SELLING SECTION === */
@keyframes card3dIn { from { opacity:0; transform:perspective(800px) rotateY(-8deg) translateY(40px) scale(0.9); } to { opacity:1; transform:perspective(800px) rotateY(0) translateY(0) scale(1); } }
@keyframes glowPulse { 0%,100% { opacity:0.4; transform:scale(1); } 50% { opacity:0.7; transform:scale(1.05); } }
@keyframes rankPop { 0% { transform:scale(0) rotate(-180deg); } 60% { transform:scale(1.2) rotate(10deg); } 100% { transform:scale(1) rotate(0); } }
@keyframes shine3d { 0% { transform:translateX(-100%) rotate(25deg); } 100% { transform:translateX(200%) rotate(25deg); } }
@keyframes borderGlow { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
@keyframes float3d { 0%,100% { transform:translateY(0) rotateX(0); } 50% { transform:translateY(-6px) rotateX(2deg); } }
@keyframes sparkle { 0%,100% { opacity:0; transform:scale(0) rotate(0deg); } 50% { opacity:1; transform:scale(1) rotate(180deg); } }
@keyframes img3dHover { 0% { transform:scale(1.05) rotateY(0); } 50% { transform:scale(1.1) rotateY(5deg); } 100% { transform:scale(1.08) rotateY(0); } }

.products-section {
  padding: 4rem 2rem; max-width: 1300px; margin: 0 auto; position: relative;
  perspective: 1200px;
}
.products-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 70%);
  transform: translate(-50%,-50%); pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.section-title .subtitle { position: relative; }
.section-title .subtitle i { transition: transform 0.4s ease; display: inline-block; }
.section-title .subtitle:hover i { transform: rotate(15deg) scale(1.2); }
.section-title h2 {
  background: linear-gradient(135deg, #0a4c36 0%, #00b566 40%, #10b981 60%, #0a4c36 100%);
  background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: borderGlow 4s ease infinite;
}

.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
  transform-style: preserve-3d;
}
.product-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
  transform-style: preserve-3d;
  animation: card3dIn 0.7s ease both;
}
.product-card:nth-child(1) { animation-delay:0.1s; }
.product-card:nth-child(2) { animation-delay:0.2s; }
.product-card:nth-child(3) { animation-delay:0.3s; }
.product-card:nth-child(4) { animation-delay:0.4s; }
.product-card:nth-child(5) { animation-delay:0.5s; }
.product-card:nth-child(6) { animation-delay:0.6s; }
.product-card:nth-child(7) { animation-delay:0.7s; }
.product-card:nth-child(8) { animation-delay:0.8s; }

.product-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: 22px; z-index: -1;
  background: linear-gradient(135deg, #10b981, #059669, #f59e0b, #10b981);
  background-size: 300% 300%; opacity: 0; transition: opacity 0.5s ease;
  animation: borderGlow 3s ease infinite;
}
.product-card:hover::before { opacity: 1; }
.product-card::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: rotate(25deg); z-index: 5; pointer-events: none;
  transition: left 0.7s ease;
}
.product-card:hover::after { left: 150%; }

.product-card:hover {
  transform: translateY(-12px) rotateX(4deg) rotateY(-2deg) scale(1.03);
  box-shadow: 0 30px 60px rgba(16,185,129,0.15), 0 10px 24px rgba(0,0,0,0.08),
              0 0 0 1px rgba(16,185,129,0.1);
}

.product-card .product-image {
  position: relative; overflow: hidden; aspect-ratio: 1;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}
.product-card .product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
  transform-style: preserve-3d;
}
.product-card:hover .product-image img {
  animation: img3dHover 0.8s ease forwards;
}
.product-card .product-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.06) 100%);
  pointer-events: none; z-index: 1;
}

/* Rank Badge */
.product-rank {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  width: 36px; height: 36px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 800;
  color: #fff; backdrop-filter: blur(8px);
  animation: rankPop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
.product-card:nth-child(1) .product-rank { animation-delay:0.6s; }
.product-card:nth-child(2) .product-rank { animation-delay:0.7s; }
.product-card:nth-child(3) .product-rank { animation-delay:0.8s; }
.product-rank.rank-1 { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 16px rgba(245,158,11,0.4); }
.product-rank.rank-2 { background: linear-gradient(135deg, #94a3b8, #64748b); box-shadow: 0 4px 16px rgba(148,163,184,0.3); }
.product-rank.rank-3 { background: linear-gradient(135deg, #cd7f32, #a0522d); box-shadow: 0 4px 16px rgba(205,127,50,0.3); }
.product-rank.rank-other { background: linear-gradient(135deg, rgba(16,185,129,0.85), rgba(5,150,105,0.85)); box-shadow: 0 4px 12px rgba(16,185,129,0.25); }

/* Badge */
.product-card .product-badge {
  position: absolute; top: 10px; right: 50px; z-index: 3;
  font-size: 9px; font-weight: 700; padding: 4px 10px; border-radius: 8px;
  letter-spacing: 0.5px; text-transform: uppercase;
  backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
}
.product-card .product-badge.badge-green { background: linear-gradient(135deg, rgba(16,185,129,0.9), rgba(5,150,105,0.9)); color: #fff; box-shadow: 0 2px 12px rgba(16,185,129,0.35); }
.product-card .product-badge.badge-red { background: linear-gradient(135deg, rgba(239,68,68,0.9), rgba(220,38,38,0.9)); color: #fff; box-shadow: 0 2px 12px rgba(239,68,68,0.35); }
.product-card .product-badge.badge-gift { background: linear-gradient(135deg, rgba(245,158,11,0.9), rgba(217,119,6,0.9)); color: #fff; box-shadow: 0 2px 12px rgba(245,158,11,0.35); }
.product-card .product-badge.badge-yellow { background: linear-gradient(135deg, rgba(245,158,11,0.9), rgba(217,119,6,0.9)); color: #fff; box-shadow: 0 2px 12px rgba(245,158,11,0.35); }

/* Wishlist */
.product-card .product-wishlist {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #94a3b8; font-size: 13px;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.product-card .product-wishlist:hover,
.product-card .product-wishlist.active {
  color: #ef4444; transform: scale(1.2) rotate(10deg);
  box-shadow: 0 6px 20px rgba(239,68,68,0.25);
  background: rgba(255,255,255,0.95);
}

/* Action Buttons */
.product-card .product-actions {
  position: absolute; bottom: 12px; left: 12px; right: 12px; z-index: 3;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(16px);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.product-card .product-actions button {
  flex: 1; padding: 10px; border: none; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 5px; transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  backdrop-filter: blur(12px); position: relative; overflow: hidden;
}
.product-card .product-actions button::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s; border-radius: 12px;
}
.product-card .product-actions button:hover::before { opacity: 1; }
.product-card .product-actions .add-cart-btn {
  background: linear-gradient(135deg, rgba(16,185,129,0.92), rgba(5,150,105,0.92));
  color: #fff; box-shadow: 0 4px 18px rgba(16,185,129,0.3);
}
.product-card .product-actions .add-cart-btn:hover {
  background: linear-gradient(135deg, #10b981, #059669);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(16,185,129,0.4);
}
.product-card .product-actions .add-cart-btn.added {
  background: linear-gradient(135deg, #10b981, #059669) !important; color: #fff !important;
}
.product-card .product-actions .quick-view-btn {
  background: rgba(255,255,255,0.88); color: #333;
  backdrop-filter: blur(12px); box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  flex: 0 0 42px;
}
.product-card .product-actions .quick-view-btn:hover {
  background: #fff; transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Info */
.product-card .product-info { padding: 14px 16px 16px; position: relative; }
.product-card .product-info .product-category {
  font-size: 10px; color: #10b981; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 4px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
}
.product-card .product-info .product-category::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #10b981; display: inline-block;
  animation: glowPulse 2s ease infinite;
}
.product-card .product-info .product-name {
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  color: #1e293b; margin-bottom: 6px; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  line-height: 1.4; transition: color 0.3s;
}
.product-card:hover .product-info .product-name { color: #0a4c36; }
.product-card .product-info .product-rating {
  display: flex; align-items: center; gap: 3px; margin-bottom: 8px;
}
.product-card .product-info .product-rating i { color: #f59e0b; font-size: 11px; transition: transform 0.3s; }
.product-card:hover .product-info .product-rating i { transform: scale(1.1); }
.product-card .product-info .product-rating span { font-size: 10px; color: #c0c0c0; margin-left: 3px; }
.product-card .product-info .product-price {
  display: flex; align-items: baseline; gap: 8px;
}
.product-card .product-info .price-current {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 800;
  color: #10b981; transition: all 0.3s;
}
.product-card:hover .product-info .price-current {
  transform: scale(1.05); display: inline-block;
}
.product-card .product-info .price-original {
  font-size: 12px; color: #d1d5db; text-decoration: line-through;
}
.product-card .product-info .price-discount {
  font-size: 10px; font-weight: 700; color: #ef4444;
  background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(239,68,68,0.04));
  padding: 3px 8px; border-radius: 6px; border: 1px solid rgba(239,68,68,0.1);
}
.product-card .product-info .size-badges {
  margin-top: 8px; display: flex; gap: 4px; flex-wrap: wrap;
}
.product-card .product-info .size-badge {
  font-size: 9px; padding: 2px 7px; border-radius: 5px;
  background: rgba(16,185,129,0.06); color: #059669;
  border: 1px solid rgba(16,185,129,0.1); font-weight: 600;
  transition: all 0.3s ease;
}
.product-card:hover .size-badge {
  background: rgba(16,185,129,0.12);
  transform: translateY(-1px);
}

/* 3D Hover Glow Orb */
.product-card .card-glow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 40px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.15) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.5s ease; z-index: -1; filter: blur(8px);
}
.product-card:hover .card-glow { opacity: 1; }

/* Sparkle Decoration */
.product-card .sparkle {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: #f59e0b; opacity: 0; z-index: 4; pointer-events: none;
}
.product-card:hover .sparkle { animation: sparkle 1.5s ease infinite; }
.product-card:hover .sparkle:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.product-card:hover .sparkle:nth-child(2) { top: 40%; right: 10%; animation-delay: 0.5s; }
.product-card:hover .sparkle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: 1s; }

/* === CATEGORY CARDS === */
@keyframes catFadeUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes catTagPop {
  from { opacity:0; transform:scale(0.85); }
  to { opacity:1; transform:scale(1); }
}
@keyframes catTitleGlow {
  0%,100% { background-position:0% 50%; }
  50% { background-position:100% 50%; }
}
@keyframes catLeafSpin {
  0% { transform:rotate(0deg) scale(1); }
  50% { transform:rotate(15deg) scale(1.15); }
  100% { transform:rotate(0deg) scale(1); }
}

.categories-section {
  padding: 4rem 2rem;
  background: #f8fdf9;
  position: relative;
}
.categories-section .section-title .subtitle i {
  animation: catLeafSpin 2s ease-in-out infinite;
  display: inline-block;
}
.categories-section .section-title h2 {
  background: linear-gradient(135deg, #0a4c36, #059669, #10b981, #0a4c36);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: catTitleGlow 4s ease infinite;
}
.categories-section .section-title .subtitle,
.categories-section .section-title h2,
.categories-section .section-title p {
  animation: catFadeUp 0.5s ease both;
}
.categories-section .section-title .subtitle { animation-delay:0s; }
.categories-section .section-title h2 { animation-delay:0.1s; }
.categories-section .section-title p { animation-delay:0.2s; }
.categories-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px;
  max-width: 1300px; margin: 0 auto; position: relative; z-index: 1;
}

/* Card */
.cat-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 340px; cursor: pointer;
  background: #fff;
  border: 1px solid #e8f5e9;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  animation: catFadeUp 0.5s ease both;
}
.cat-card:nth-child(1) { animation-delay:0.05s; }
.cat-card:nth-child(2) { animation-delay:0.1s; }
.cat-card:nth-child(3) { animation-delay:0.15s; }
.cat-card:nth-child(4) { animation-delay:0.2s; }
.cat-card:nth-child(5) { animation-delay:0.25s; }
.cat-card:nth-child(6) { animation-delay:0.3s; }
.cat-card:nth-child(7) { animation-delay:0.35s; }

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #c6f6d5;
}

/* Background image */
.cat-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.4s ease;
  filter: brightness(0.5);
}
.cat-card:hover .cat-card-bg { transform: scale(1.08); }

.cat-card[data-category="indoor"] .cat-card-bg { background-image:url('https://images.unsplash.com/photo-1509423350716-97f9360b4e09?w=600&h=500&fit=crop'); }
.cat-card[data-category="outdoor"] .cat-card-bg { background-image:url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=600&h=500&fit=crop'); }
.cat-card[data-category="flowering"] .cat-card-bg { background-image:url('https://images.unsplash.com/photo-1550583724-b2692b85b150?w=600&h=500&fit=crop'); }
.cat-card[data-category="fruit"] .cat-card-bg { background-image:url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?w=600&h=500&fit=crop'); }
.cat-card[data-category="herbal"] .cat-card-bg { background-image:url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?w=600&h=500&fit=crop'); }
.cat-card[data-category="succulents"] .cat-card-bg { background-image:url('/images/arm.jpeg'); }
.cat-card[data-category="air-purifying"] .cat-card-bg { background-image:url('https://images.unsplash.com/photo-1525498128493-380d1990a112?w=600&h=500&fit=crop'); }

/* Overlay */
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* Content */
.cat-card-content {
  position: relative; z-index: 2; padding: 20px;
  display: flex; flex-direction: column; height: 100%;
  justify-content: flex-end; min-height: 340px;
}

/* Badge */
.cat-card-badge {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; margin-bottom: 12px;
  transition: all 0.3s ease;
}
.cat-card:hover .cat-card-badge {
  background: rgba(255,255,255,0.25);
}

/* Title */
.cat-card-title {
  font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700;
  color: #fff; margin: 0 0 4px;
}
.cat-card-desc {
  font-size: 11px; color: rgba(255,255,255,0.7); margin: 0 0 12px;
  line-height: 1.4;
}

/* Tags */
.cat-card-tags {
  display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 14px;
}
.cat-card-tags span {
  font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 9px; border-radius: 20px; cursor: default;
  transition: all 0.2s ease;
  animation: catTagPop 0.3s ease both;
}
.cat-card-tags span:nth-child(1) { animation-delay:0.1s; }
.cat-card-tags span:nth-child(2) { animation-delay:0.14s; }
.cat-card-tags span:nth-child(3) { animation-delay:0.18s; }
.cat-card-tags span:nth-child(4) { animation-delay:0.22s; }
.cat-card-tags span:nth-child(5) { animation-delay:0.26s; }
.cat-card-tags span:nth-child(6) { animation-delay:0.3s; }
.cat-card-tags span:nth-child(7) { animation-delay:0.34s; }
.cat-card-tags span:nth-child(8) { animation-delay:0.38s; }
.cat-card-tags span:nth-child(9) { animation-delay:0.42s; }
.cat-card-tags span:nth-child(10) { animation-delay:0.46s; }

.cat-card-tags span:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* Link */
.cat-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 8px 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600;
  border-radius: 10px; text-decoration: none;
  transition: all 0.3s ease;
}
.cat-card-link:hover {
  background: #fff; color: #0a4c36;
  transform: translateX(3px);
}
.cat-card-link i { transition: transform 0.3s ease; font-size: 10px; }
.cat-card-link:hover i { transform: translateX(3px); }

.cta-banner { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.cta-banner-inner { background: linear-gradient(135deg, #0a4c36, #00b566); border-radius: 16px; padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; position: relative; overflow: hidden; }
.cta-banner-inner::before { content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -140px; right: -70px; }
.cta-banner-inner::after { content: ''; position: absolute; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.03); bottom: -90px; left: 60px; }
.cta-text h2 { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: #fff; margin: 0 0 8px; }
.cta-text p { font-size: 12px; color: rgba(255,255,255,0.8); margin: 0 0 14px; }
.cta-banner .btn-primary { background: #fff; color: #0a4c36; }
.cta-banner .btn-primary:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.cta-form { position: relative; z-index: 2; }
.cta-form .form-group { display: flex; background: rgba(255,255,255,0.15); border-radius: 10px; overflow: hidden; backdrop-filter: blur(8px); }
.cta-form input { flex: 1; padding: 10px 14px; border: none; background: transparent; font-family: 'Outfit', sans-serif; font-size: 12px; color: #fff; outline: none; }
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form button { padding: 10px 16px; background: #fff; color: #0a4c36; border: none; font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 4px; }
.cta-form button:hover { background: #f0faf4; }

.testimonials-section { padding: 3rem 2rem; background: #f8fdf9; }
.testimonials-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testimonial-card { background: #fff; border-radius: 12px; padding: 16px; border: 1px solid #f0f0f0; transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.06); }
.testimonial-card .quote-icon { font-size: 18px; color: rgba(0,181,102,0.15); margin-bottom: 6px; }
.testimonial-card .stars { display: flex; gap: 1px; margin-bottom: 6px; }
.testimonial-card .stars i { color: #ffb503; font-size: 9px; }
.testimonial-card .testimonial-text { font-size: 12px; color: #555; line-height: 1.6; margin-bottom: 12px; }
.testimonial-card .testimonial-author { display: flex; align-items: center; gap: 8px; }
.testimonial-card .testimonial-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #00b566, #0a4c36); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 12px; }
.testimonial-card .author-name { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; color: #1a1a1a; }
.testimonial-card .author-verified { display: flex; align-items: center; gap: 2px; font-size: 10px; color: #00b566; }

.site-footer { background: #0a1a14; color: #fff; padding: 3rem 2rem 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { color: #fff; margin-bottom: 8px; }
.footer-brand .logo i { color: #00b566; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 11px; line-height: 1.6; margin-bottom: 12px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.footer-social-item a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.3s ease; font-size: 14px; }
.footer-social-item a:hover { background: #00b566; color: #fff; transform: translateY(-2px); }
.footer-social-label { font-size: 9px; color: rgba(255,255,255,0.4); text-align: center; line-height: 1.3; }
.footer-social-label.soon small { display: block; font-size: 7px; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.3px; }
.footer-social-soon { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.04); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.3); font-size: 14px; cursor: default; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; margin: 0 0 10px; color: #fff; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 11px; transition: all 0.3s ease; display: flex; align-items: center; gap: 3px; }
.footer-col ul li a:hover { color: #00b566; transform: translateX(3px); }
.footer-newsletter .form-group { display: flex; background: rgba(255,255,255,0.06); border-radius: 8px; overflow: hidden; margin-bottom: 8px; }
.footer-newsletter input { flex: 1; padding: 8px; border: none; background: transparent; color: #fff; font-size: 11px; outline: none; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter button { padding: 8px 12px; background: #00b566; color: #fff; border: none; cursor: pointer; transition: all 0.3s ease; font-size: 11px; }
.footer-newsletter button:hover { background: #009a57; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 12px 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.35); font-size: 10px; }
.footer-bottom .payment-icons { display: flex; gap: 6px; }
.footer-bottom .payment-icons i { font-size: 16px; opacity: 0.35; transition: opacity 0.3s ease; }
.footer-bottom .payment-icons i:hover { opacity: 0.7; }

.back-to-top { position: fixed; bottom: 20px; right: 20px; width: 38px; height: 38px; background: linear-gradient(135deg, #00b566, #0a4c36); color: #fff; border: none; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 12px; cursor: pointer; z-index: 998; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(0,181,102,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(0,181,102,0.4); }

.product-list-section { padding: 2rem; }
.product-list-section .subcat { max-width: 1200px; margin: 0 auto 1.5rem; }
.product-list-section .subcat h3 { font-size: 15px; font-weight: 700; color: #00b566; margin-bottom: 4px; }
.product-list-section .subcat p { font-size: 11px; color: #888; margin-bottom: 10px; }
.product-list-section .subcat ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.product-list-section .subcat li { background: #f0faf4; border-radius: 6px; padding: 4px 10px; font-size: 11px; color: #333; font-weight: 500; }
.product-list-section .subcat li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #00b566; margin-right: 4px; font-size: 8px; }

.why-section { padding: 3rem 2rem; background: #f8fdf9; }
.why-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.why-item { background: #fff; border-radius: 12px; padding: 16px 12px; text-align: center; border: 1px solid #f0f0f0; transition: all 0.3s ease; }
.why-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,181,102,0.08); border-color: rgba(0,181,102,0.15); }
.why-item .why-icon { width: 40px; height: 40px; border-radius: 10px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; background: rgba(0,181,102,0.08); color: #00b566; transition: all 0.3s ease; }
.why-item:hover .why-icon { background: #00b566; color: #fff; transform: scale(1.08); }
.why-item h4 { font-size: 12px; font-weight: 600; color: #1a1a1a; margin-bottom: 2px; }
.why-item p { font-size: 10px; color: #999; margin: 0; }

.promise-section { padding: 3rem 2rem; background: linear-gradient(135deg, #f0faf4, #e8f5e9); }
.promise-inner { max-width: 800px; margin: 0 auto; text-align: center; background: #fff; border-radius: 16px; padding: 2.5rem; position: relative; overflow: hidden; box-shadow: 0 6px 24px rgba(0,0,0,0.04); }
.promise-inner::before { content: ''; position: absolute; top: -60px; right: -60px; width: 150px; height: 150px; border-radius: 50%; background: rgba(0,181,102,0.05); }
.promise-inner .promise-icon { font-size: 24px; color: #00b566; margin-bottom: 8px; }
.promise-inner h2 { font-size: 20px; color: #1a1a1a; margin-bottom: 8px; }
.promise-inner p { font-size: 12px; color: #666; line-height: 1.7; max-width: 600px; margin: 0 auto; }

.tips-section { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.tip-card { background: #f8fdf9; border-radius: 10px; padding: 12px 14px; display: flex; align-items: flex-start; gap: 10px; transition: all 0.3s ease; border: 1px solid #e8f5e9; }
.tip-card:hover { transform: translateX(4px); border-color: rgba(0,181,102,0.25); background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.tip-card .tip-icon { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,181,102,0.1); color: #00b566; font-size: 12px; }
.tip-card p { font-size: 11px; color: #555; line-height: 1.5; margin: 3px 0 0; }

.occasions-section { padding: 3rem 2rem; background: #f8fdf9; }
.occasions-grid { max-width: 1000px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.occasion-pill { background: #fff; border-radius: 50px; padding: 6px 16px; display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 500; color: #444; border: 1px solid #e0e0e0; transition: all 0.3s ease; cursor: default; }
.occasion-pill i { color: #00b566; font-size: 10px; }
.occasion-pill:hover { background: #00b566; color: #fff; border-color: #00b566; transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,181,102,0.2); }
.occasion-pill:hover i { color: #fff; }

.vm-section { padding: 3rem 2rem; }
.vm-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.vm-card { background: #fff; border-radius: 14px; padding: 2rem; border: 1px solid #f0f0f0; transition: all 0.3s ease; }
.vm-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.05); transform: translateY(-3px); }
.vm-card .vm-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.vm-card .vm-icon.green { background: rgba(0,181,102,0.1); color: #00b566; }
.vm-card .vm-icon.blue { background: rgba(59,130,246,0.1); color: #3b82f6; }
.vm-card h3 { font-size: 16px; color: #1a1a1a; margin-bottom: 6px; }
.vm-card p { font-size: 12px; color: #666; line-height: 1.6; }

.satisfaction-section { padding: 3rem 2rem; }
.satisfaction-inner { max-width: 900px; margin: 0 auto; text-align: center; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.satisfaction-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sat-stat { background: #f8fdf9; border-radius: 10px; padding: 16px; text-align: center; border: 1px solid #e8f5e9; transition: all 0.3s ease; }
.sat-stat:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,181,102,0.06); }
.sat-stat .sat-icon { font-size: 16px; color: #00b566; margin-bottom: 4px; }
.sat-stat .sat-number { font-size: 18px; font-weight: 700; color: #1a1a1a; display: block; }
.sat-stat .sat-label { font-size: 10px; color: #999; margin-top: 1px; }

.faq-section { padding: 3rem 2rem; background: #f8fdf9; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 8px; border: 1px solid #f0f0f0; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(0,181,102,0.15); }
.faq-question { width: 100%; padding: 12px 16px; background: none; border: none; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 600; color: #1a1a1a; text-align: left; }
.faq-question i { color: #00b566; font-size: 10px; transition: transform 0.3s ease; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 16px 14px; font-size: 11px; color: #666; line-height: 1.6; }

/* === ADVANCED CONTACT SECTION === */
@keyframes mapIn { from { opacity:0; transform:perspective(800px) rotateX(5deg) translateY(30px); } to { opacity:1; transform:perspective(800px) rotateX(0) translateY(0); } }
@keyframes cicBounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-3px); } }

.contact-section {
  padding: 4rem 2rem; max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, #0a4c36 0%, #00b566 50%, #059669 100%);
  border-radius: 24px; position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section .section-title .subtitle i { color: #fff; }
.contact-section .section-title p { color: rgba(255,255,255,0.75); }
.contact-section .section-title h2 { -webkit-text-fill-color: #fff; background: none; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  position: relative; z-index: 1; align-items: start;
}

/* Map Card */
.contact-card {
  perspective: 1200px;
  animation: mapIn 0.7s cubic-bezier(0.23,1,0.32,1) both;
}
.contact-card-inner {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
  transform-style: preserve-3d;
}
.contact-card-inner:hover {
  transform: translateY(-4px) rotateX(2deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.contact-card-header {
  padding: 20px 24px 12px;
  display: flex; align-items: center; gap: 14px;
}
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #059669; flex-shrink: 0;
}
.contact-card-header h3 { font-size: 17px; font-weight: 700; color: #1e293b; margin: 0 0 4px; }
.contact-address { font-size: 12px; color: #64748b; margin: 0; line-height: 1.5; }
.contact-address i { color: #10b981; margin-right: 4px; }
.contact-map-wrap { padding: 0 16px 12px; }
.contact-map-wrap iframe {
  border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.5s ease; display: block;
}
.contact-card-inner:hover .contact-map-wrap iframe { transform: scale(1.01); }
.contact-card-footer { padding: 0 24px 20px; }
.map-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; background: linear-gradient(135deg, #0a4c36, #00b566);
  color: #fff; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,181,102,0.3);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.map-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 28px rgba(0,181,102,0.4); }
.map-btn i { transition: transform 0.3s; }
.map-btn:hover i { transform: translateX(4px); }

/* Contact Info Cards */
.contact-info-grid {
  display: flex; flex-direction: column; gap: 12px;
}
.contact-info-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 16px;
  text-decoration: none; color: #fff;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.contact-info-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.contact-info-card:hover::before { opacity: 1; }
.contact-info-card:hover {
  transform: translateX(6px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.contact-info-card.phone { background: linear-gradient(135deg, #059669, #047857); }
.contact-info-card.email { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.contact-info-card.facebook { background: linear-gradient(135deg, #1877f2, #0d65d9); }
.contact-info-card.instagram {
  background: linear-gradient(135deg, #e1306c, #c13584, #833ab4);
}
.contact-info-card:nth-child(1) { animation: mapIn 0.5s ease 0.5s both; }
.contact-info-card:nth-child(2) { animation: mapIn 0.5s ease 0.6s both; }
.contact-info-card:nth-child(3) { animation: mapIn 0.5s ease 0.7s both; }
.contact-info-card:nth-child(4) { animation: mapIn 0.5s ease 0.8s both; }

.cic-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-info-card:hover .cic-icon { animation: cicBounce 0.5s ease; }
.cic-text { flex: 1; min-width: 0; }
.cic-label { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; opacity: 0.7; margin-bottom: 2px; }
.cic-value { display: block; font-size: 14px; font-weight: 700; }
.cic-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; transition: all 0.3s ease;
}
.contact-info-card:hover .cic-arrow { transform: translateX(4px); background: rgba(255,255,255,0.25); }

/* Responsive */
@media (max-width: 1024px) {
  .contact-section { margin: 0 1rem; padding: 2rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-card-inner { max-width: 600px; margin: 0 auto; }
  .contact-info-grid { max-width: 600px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  .contact-section { padding: 2rem 1rem; margin: 0 0.8rem; border-radius: 16px; }
  .contact-card-header { flex-direction: column; text-align: center; }
  .contact-map-wrap iframe { height: 240px; }
  .contact-card-footer { text-align: center; }
  .cic-value { font-size: 12px; }
}
@media (max-width: 480px) {
  .contact-section { padding: 1.5rem 0.8rem; margin: 0 0.6rem; border-radius: 14px; }
  .contact-map-wrap iframe { height: 200px; }
  .contact-info-card { padding: 12px 14px; gap: 10px; }
  .cic-icon { width: 36px; height: 36px; font-size: 15px; }
  .cic-value { font-size: 11px; }
}

/* ========== RESPONSIVE: Tablet (max-width: 1024px) ========== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
  .hero-title { font-size: 30px; }
  .hero-subtitle { margin: 0 auto 14px; max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { max-width: 400px; margin: 0 auto; }
  .hero-floating-card { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-form .form-group { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .satisfaction-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ========== RESPONSIVE: Mobile Landscape (max-width: 768px) ========== */
@media (max-width: 768px) {
  body { font-size: 12px; }

  .header-inner { padding: 8px 14px; }
  .header-icons { gap: 2px; }
  .header-icon-btn { width: 32px; height: 32px; font-size: 13px; }
  .hero-section { min-height: auto; padding: 1rem 0; }
  .hero-content { padding: 1.5rem 1rem; gap: 1.5rem; }
  .hero-title { font-size: 24px; }
  .hero-badge { font-size: 10px; padding: 3px 10px; }
  .hero-subtitle { font-size: 13px; margin-bottom: 12px; }
  .hero-image { max-width: 320px; margin: 0 auto; }
  .hero-floating-card { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .tips-grid { grid-template-columns: 1fr; }
  .occasions-grid { gap: 6px; }
  .occasion-pill { padding: 5px 12px; font-size: 10px; }
  .vm-grid { grid-template-columns: 1fr; gap: 1rem; }
  .vm-card { padding: 1.5rem; }
  .products-section, .categories-section, .why-section, .tips-section, .occasions-section, .vm-section, .satisfaction-section, .testimonials-section, .faq-section { padding: 2rem 1rem; }
  .cta-banner { padding: 2rem 1rem; }
  .cta-banner-inner { padding: 1.5rem; border-radius: 12px; }
  .cta-text h2 { font-size: 18px; }
  .promise-inner { padding: 1.5rem; }
  .promise-inner h2 { font-size: 18px; }
  .section-title h2 { font-size: 20px; }
  .section-title p { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom p { font-size: 9px; line-height: 1.5; }
  .why-item { padding: 12px 8px; }
  .why-item h4 { font-size: 11px; }
  .sat-stat { padding: 12px; }
}
/* ========== RESPONSIVE: Mobile Portrait (max-width: 480px) ========== */
@media (max-width: 480px) {
  body { font-size: 11px; }
  .header-inner { padding: 6px 10px; }
  .hero-content { padding: 1.2rem 0.8rem; gap: 1rem; }
  .hero-title { font-size: 20px; line-height: 1.2; }
  .hero-subtitle { font-size: 12px; margin-bottom: 10px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 6px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; max-width: 220px; justify-content: center; }
  .hero-stats { flex-direction: row; justify-content: center; gap: 1rem; }
  .hero-stat .stat-number { font-size: 16px; }
  .hero-image { max-width: 260px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-card .product-info { padding: 8px; }
  .product-card .product-info .product-name { font-size: 11px; }
  .product-card .product-info .price-current { font-size: 13px; }
  .product-card .product-actions { opacity: 1; transform: translateY(0); }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .occasions-grid { gap: 4px; }
  .occasion-pill { padding: 4px 10px; font-size: 9px; }
  .section-title h2 { font-size: 18px; }
  .products-section, .categories-section, .why-section, .tips-section, .occasions-section, .vm-section, .satisfaction-section, .testimonials-section, .faq-section { padding: 1.5rem 0.8rem; }
  .cta-banner { padding: 1.5rem 0.8rem; }
  .cta-banner-inner { padding: 1.2rem; }
  .cta-text h2 { font-size: 16px; }
  .cta-form .form-group { flex-direction: column; border-radius: 10px; }
  .cta-form input { padding: 10px; text-align: center; }
  .cta-form button { padding: 10px; justify-content: center; }
  .promise-inner { padding: 1.2rem; border-radius: 12px; }
  .promise-inner h2 { font-size: 16px; }
  .promise-inner p { font-size: 11px; }
  .vm-card { padding: 1.2rem; }
  .vm-card h3 { font-size: 14px; }
  .vm-card p { font-size: 11px; }
  .testimonial-card { padding: 12px; }
  .testimonial-card .testimonial-text { font-size: 11px; }
  .footer-grid { gap: 1.2rem; }
  .footer-col h4 { font-size: 11px; }
  .footer-col ul li a { font-size: 10px; }
  .back-to-top { width: 34px; height: 34px; bottom: 16px; right: 16px; font-size: 11px; }
}
/* ========== RESPONSIVE: Small Mobile (max-width: 360px) ========== */
@media (max-width: 360px) {
  .hero-title { font-size: 18px; }
  .hero-image { max-width: 220px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .why-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .header-icons { gap: 0; }
  .header-icon-btn { width: 30px; height: 30px; font-size: 12px; }
}

/* ─── Page Loader Responsive ─── */
@media (max-width: 480px) {
  .page-loader .loader-icon { font-size: 1.5rem; }
  .page-loader .loader-text { font-size: 0.6rem; }
  .page-loader .loader-bar { width: 70px; }
}

/* ─── Category Cards Responsive Min-Height ─── */
@media (max-width: 768px) {
  .cat-card, .cat-card-content { min-height: 240px; }
}
@media (max-width: 480px) {
  .cat-card, .cat-card-content { min-height: 200px; }
}

/* ─── Touch Device: always show product actions ─── */
@media (hover: none) and (pointer: coarse) {
  .product-card .product-actions { opacity: 1; transform: translateY(0); }
  .product-card:hover .product-image img { animation: none; transform: none; }
  .product-card:hover { transform: none; }
  .product-card:hover::before { opacity: 0; }
  .product-card:hover::after { left: -100%; }
}

/* ─── Cart open hides back-to-top ─── */
body.cart-open .back-to-top { opacity: 0; visibility: hidden; pointer-events: none; }

/* ─── Username overflow on mobile ─── */
@media (max-width: 480px) {
  .header-user-name { white-space: normal; font-size: 10px; max-width: 80px; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 360px) {
  .header-user-name { display: none; }
}

/* ─── Product badge right position on small cards ─── */
@media (max-width: 480px) {
  .product-card .product-badge { right: 42px; font-size: 7px; padding: 2px 6px; }
}

/* ─── iframe width fix ─── */
.contact-map-wrap iframe { width: 100%; max-width: 100%; }

/* ─── Small elements responsive on 360px screens ─── */
@media (max-width: 360px) {
  .product-rank { width: 28px; height: 28px; font-size: 10px; border-radius: 8px; }
  .product-card .product-wishlist { width: 28px; height: 28px; font-size: 11px; }
  .product-card .product-actions .quick-view-btn { flex: 0 0 34px; padding: 8px; }
  .cat-card-badge { width: 34px; height: 34px; font-size: 14px; }
}

/* ─── Dropdown overflow guard on tablet ─── */
@media (min-width: 769px) and (max-width: 1024px) {
  .dropdown-menu { max-width: 240px; }
}

/* ─── prefers-reduced-motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .announcement-bar .marquee-text { animation: none; white-space: normal; display: flex; flex-wrap: wrap; justify-content: center; }
  .page-loader .loader-text { animation: none; }
}
