/* ==============================
   RELI TECHNOLOGIES – style.css
   ============================== */

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

:root {
  --green-dark:   #1a4d2e;
  --green-main:   #2d6a4f;
  --green-mid:    #40916c;
  --green-light:  #74c69d;
  --green-pale:   #d8f3dc;
  --green-bg:     #f0faf4;
  --accent:       #e07b39;
  --accent-light: #f4a261;
  --gold:         #f5c842;
  --dark:         #1b1b1b;
  --text:         #2c3e35;
  --muted:        #6b7c73;
  --border:       #d4e8db;
  --white:        #ffffff;
  --off-white:    #f8fdf9;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-xl:    48px;
  --shadow-sm:    0 2px 8px rgba(45,106,79,.10);
  --shadow-md:    0 6px 24px rgba(45,106,79,.14);
  --shadow-lg:    0 16px 48px rgba(45,106,79,.18);
  --font-head:    'Outfit', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition:   .28s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { font-size: 1rem; color: var(--muted); }

/* --- Utility --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-green { color: var(--green-main); }
.tag {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 99px;
  background: var(--green-pale); color: var(--green-dark);
}
.badge-new {
  display: inline-block; font-size: .7rem; font-weight: 700;
  background: var(--accent); color: #fff; padding: 2px 8px; border-radius: 99px;
  vertical-align: middle; margin-left: 6px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-xl); font-size: 1rem;
  font-weight: 600; transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--green-main); color: #fff;
  box-shadow: 0 4px 16px rgba(45,106,79,.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--green-main);
  border: 2px solid var(--green-main);
}
.btn-outline:hover { background: var(--green-pale); }
.btn-white {
  background: #fff; color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { background: var(--green-pale); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(224,123,57,.3); }
.btn-accent:hover { background: #c8672b; transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: .9rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* --- Announcement Bar --- */
.announce-bar {
  background: var(--green-dark); color: #fff; text-align: center;
  padding: 10px 24px; font-size: .875rem; font-weight: 500; position: relative;
  z-index: 200;
}
.announce-bar a { color: var(--gold); font-weight: 700; margin-left: 6px; }
.announce-bar a:hover { text-decoration: underline; }

/* --- Header / Navigation --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo .logo-icon {
  width: 38px; height: 38px; background: var(--green-main);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.nav-logo .logo-text { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--green-dark); }
.nav-logo .logo-text span { color: var(--green-mid); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: .95rem; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm);
  color: var(--text); transition: all var(--transition); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-main); background: var(--green-pale); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: all var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .9rem; }
.nav-dropdown-menu a:hover { background: var(--green-pale); color: var(--green-main); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn-shop { padding: 10px 22px; font-size: .9rem; border-radius: var(--radius-xl); }
.nav-search-btn {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--text); transition: all var(--transition);
}
.nav-search-btn:hover { background: var(--green-pale); color: var(--green-main); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* --- Hero Section --- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  overflow: hidden; background: var(--green-dark);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: .45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,77,46,.85) 0%, rgba(45,106,79,.55) 55%, rgba(64,145,108,.2) 100%);
}
.hero-inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 0;
}
.hero-content { color: #fff; }
.hero-tag { margin-bottom: 18px; }
.hero-tag span {
  background: rgba(245,200,66,.2); border: 1px solid var(--gold);
  color: var(--gold); font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 99px;
}
.hero-content h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat { }
.hero-stat .num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: #fff; }
.hero-stat .lbl { font-size: .8rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .06em; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-product-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg);
  padding: 32px; text-align: center; max-width: 380px; width: 100%;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-product-card img { border-radius: var(--radius-md); margin: 0 auto 16px; width: 100%; max-height: 300px; object-fit: cover; }
.hero-product-card .prod-name { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.hero-product-card .prod-price { color: var(--gold); font-size: 1.3rem; font-weight: 800; }
.hero-product-card .prod-price .orig { font-size: .9rem; color: rgba(255,255,255,.5); text-decoration: line-through; margin-right: 8px; }
.hero-product-card .prod-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
}

/* --- Trust Bar --- */
.trust-bar { background: var(--green-pale); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; color: var(--green-dark); }
.trust-item svg { flex-shrink: 0; }
.trust-divider { width: 1px; height: 24px; background: var(--border); }

/* --- Section Headers --- */
.section-header { margin-bottom: 52px; }
.section-header .tag { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 560px; font-size: 1.05rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* --- Products Grid --- */
.products-section { background: var(--off-white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.product-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.product-card-img {
  position: relative; overflow: hidden; aspect-ratio: 1;
  background: var(--green-bg);
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
}
.product-card-badge.new-badge { background: var(--green-main); }
.product-card-badge.sale-badge { background: var(--accent); }
.product-card-wish {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  background: rgba(255,255,255,.9); border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem;
  transition: all var(--transition); opacity: 0;
}
.product-card:hover .product-card-wish { opacity: 1; }
.product-card-wish:hover { background: #fff; transform: scale(1.1); }

.product-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.product-card-body .prod-category { font-size: .75rem; color: var(--green-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.product-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.product-card-body .prod-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-top: 1px solid var(--border); }
.prod-price-group .price { font-size: 1.2rem; font-weight: 800; color: var(--green-dark); }
.prod-price-group .orig-price { font-size: .8rem; color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.prod-stars { display: flex; align-items: center; gap: 4px; font-size: .8rem; color: var(--muted); }
.prod-stars .stars { color: var(--gold); }
.btn-add {
  padding: 10px 20px; background: var(--green-main); color: #fff;
  border-radius: var(--radius-xl); font-size: .85rem; font-weight: 600;
  transition: all var(--transition);
}
.btn-add:hover { background: var(--green-dark); transform: translateY(-1px); }

/* --- Features Section --- */
.features-section { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--green-bg); border-radius: var(--radius-md); padding: 36px 28px;
  border: 1px solid var(--border); transition: all var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.feature-icon {
  width: 72px; height: 72px; background: var(--green-pale); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
  border: 2px solid var(--green-light);
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--green-dark); }
.feature-card p { font-size: .9rem; }

/* --- How It Works --- */
.how-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  position: relative; overflow: hidden;
}
.how-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.how-section .section-header h2, .how-section .section-header p { color: rgba(255,255,255,.9); }
.how-section .section-header .tag { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px);
  height: 2px; background: rgba(255,255,255,.2); z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.how-step-num {
  width: 72px; height: 72px; background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 20px;
  backdrop-filter: blur(8px);
}
.how-step h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.how-step p { color: rgba(255,255,255,.7); font-size: .875rem; }

/* --- App Section --- */
.app-section { background: var(--off-white); }
.app-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-content .tag { margin-bottom: 16px; }
.app-content h2 { margin-bottom: 16px; }
.app-content > p { margin-bottom: 32px; font-size: 1.05rem; }
.app-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.app-feature { display: flex; align-items: flex-start; gap: 14px; }
.app-feature-icon {
  width: 42px; height: 42px; background: var(--green-pale);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.app-feature-text h4 { font-size: .95rem; color: var(--dark); margin-bottom: 2px; }
.app-feature-text p { font-size: .85rem; }
.app-download-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.app-store-btn {
  display: flex; align-items: center; gap: 10px; padding: 12px 22px;
  background: var(--dark); color: #fff; border-radius: var(--radius-md);
  transition: all var(--transition);
}
.app-store-btn:hover { background: var(--green-dark); transform: translateY(-2px); }
.app-store-btn .store-icon { font-size: 1.6rem; }
.app-store-btn .store-text .small { font-size: .65rem; opacity: .8; display: block; }
.app-store-btn .store-text .big { font-size: 1rem; font-weight: 700; display: block; }
.app-visual { position: relative; display: flex; justify-content: center; }
.phone-mockup {
  width: 280px; background: var(--dark); border-radius: 40px; padding: 12px;
  box-shadow: var(--shadow-lg); position: relative;
}
.phone-screen { border-radius: 30px; overflow: hidden; aspect-ratio: 9/19; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.app-floating-badge {
  position: absolute; background: #fff; border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
}
.app-floating-badge.badge-1 { top: 20%; left: -60px; }
.app-floating-badge.badge-2 { bottom: 20%; right: -60px; }
.app-floating-badge .badge-icon { font-size: 1.5rem; }
.app-floating-badge .badge-label { font-size: .75rem; color: var(--muted); }
.app-floating-badge .badge-value { font-size: .95rem; font-weight: 700; color: var(--dark); }

/* --- Reviews Section --- */
.reviews-section { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--green-bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; transition: all var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-light); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.review-verified { font-size: .72rem; color: var(--green-mid); font-weight: 600; }
.review-text { font-size: .92rem; color: var(--text); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-pale); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.review-name { font-size: .9rem; font-weight: 700; color: var(--dark); }
.review-product { font-size: .75rem; color: var(--muted); }
.review-overall {
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-bg) 100%);
  border-radius: var(--radius-md); padding: 28px; text-align: center; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.review-overall .big-num { font-family: var(--font-head); font-size: 4rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.review-overall .out-of { font-size: .9rem; color: var(--muted); }
.review-overall .stars-big { font-size: 1.8rem; color: var(--gold); letter-spacing: 4px; display: block; }
.review-overall .total-reviews { font-size: .9rem; color: var(--muted); }
.review-bar-group { flex: 1; min-width: 220px; max-width: 320px; }
.review-bar { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-bar .bar-label { font-size: .8rem; color: var(--muted); width: 36px; flex-shrink: 0; }
.review-bar .bar-track { flex: 1; height: 8px; background: var(--border); border-radius: 99px; overflow: hidden; }
.review-bar .bar-fill { height: 100%; background: var(--gold); border-radius: 99px; }
.review-bar .bar-count { font-size: .8rem; color: var(--muted); width: 24px; text-align: right; }

/* --- Award / CES Section --- */
.award-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 70px 0;
}
.award-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; justify-content: center; }
.award-badge {
  width: 160px; height: 160px; background: rgba(245,200,66,.1);
  border: 3px solid var(--gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0; text-align: center; padding: 20px;
}
.award-badge .trophy { font-size: 2.5rem; display: block; margin-bottom: 6px; }
.award-badge .award-year { font-size: .7rem; color: var(--gold); font-weight: 700; letter-spacing: .1em; }
.award-badge .award-label { font-size: .65rem; color: rgba(255,255,255,.7); line-height: 1.3; margin-top: 4px; }
.award-content { max-width: 500px; }
.award-content .tag { background: rgba(245,200,66,.15); color: var(--gold); border: 1px solid rgba(245,200,66,.3); margin-bottom: 16px; }
.award-content h2 { color: #fff; margin-bottom: 14px; }
.award-content p { color: rgba(255,255,255,.7); font-size: 1rem; margin-bottom: 24px; }
.award-media { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.award-media-item {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px; border-radius: var(--radius-sm);
  font-size: .8rem; color: rgba(255,255,255,.7); font-weight: 600;
}

/* --- Blog Section --- */
.blog-section { background: var(--off-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--green-bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 22px; }
.blog-card-tag { font-size: .72rem; font-weight: 700; color: var(--green-mid); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body p { font-size: .875rem; color: var(--muted); margin-bottom: 16px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-date { font-size: .78rem; color: var(--muted); }
.blog-read-more { font-size: .85rem; font-weight: 600; color: var(--green-main); display: flex; align-items: center; gap: 4px; }
.blog-read-more:hover { color: var(--green-dark); }

/* --- Newsletter Section --- */
.newsletter-section {
  background: linear-gradient(135deg, var(--green-main) 0%, var(--green-dark) 100%);
  padding: 64px 0;
}
.newsletter-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; justify-content: space-between; }
.newsletter-content h2 { color: #fff; margin-bottom: 10px; }
.newsletter-content p { color: rgba(255,255,255,.75); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  flex: 1; min-width: 260px; padding: 14px 20px; border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.12);
  color: #fff; font-size: .95rem; outline: none; transition: border var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.18); }

/* --- Footer --- */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,.8); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .nav-logo .logo-text { color: #fff; }
.footer-brand .nav-logo .logo-text span { color: var(--green-light); }
.footer-brand p { font-size: .9rem; margin: 16px 0 24px; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--green-mid); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-bottom-links a:hover { color: var(--green-light); }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,.12); border-radius: 4px; padding: 4px 8px;
  font-size: .65rem; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: .04em;
}

/* --- Mobile Nav --- */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
}
.mobile-nav.open { display: flex; }
.mobile-nav-panel {
  width: 300px; background: #fff; height: 100%; padding: 24px;
  overflow-y: auto; transform: translateX(-100%); transition: transform .35s ease;
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-close { font-size: 1.5rem; padding: 4px 8px; border-radius: 6px; }
.mobile-nav-close:hover { background: var(--green-pale); }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 500; color: var(--text); transition: all var(--transition);
}
.mobile-nav a:hover { background: var(--green-pale); color: var(--green-main); }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 8px 0; }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 46px; height: 46px; background: var(--green-main); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .app-inner { grid-template-columns: 1fr; }
  .app-visual { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-shop { display: none; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 56px 0; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .how-steps { grid-template-columns: 1fr; }
  .award-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   SUBPAGE STYLES
   ============================================================ */

/* --- Breadcrumb --- */
.breadcrumb { padding: 14px 0; font-size: .85rem; color: var(--muted); }
.breadcrumb a { color: var(--green-mid); }
.breadcrumb a:hover { color: var(--green-main); text-decoration: underline; }
.breadcrumb span { margin: 0 8px; color: var(--border); }

/* --- Page Hero Banner (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  padding: 56px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 580px; }
.page-hero .tag { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); margin-bottom: 16px; }

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-header { padding: 40px 0 0; }
.collection-filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid var(--border); margin-bottom: 32px; flex-wrap: wrap; gap: 14px;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 16px; border-radius: 99px; font-size: .85rem; font-weight: 500;
  border: 1.5px solid var(--border); color: var(--muted); cursor: pointer;
  transition: all var(--transition); background: #fff;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--green-main); color: var(--green-main);
  background: var(--green-pale);
}
.sort-select {
  padding: 8px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border);
  font-size: .85rem; color: var(--text); outline: none; cursor: pointer;
  background: #fff; transition: border var(--transition);
}
.sort-select:focus { border-color: var(--green-main); }
.collection-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.collection-count { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }

/* Collection category banner */
.collection-banner {
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px;
  position: relative; min-height: 220px; display: flex; align-items: center;
}
.collection-banner img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.collection-banner-content {
  position: relative; z-index: 1; padding: 40px;
  background: linear-gradient(to right, rgba(26,77,46,.85) 40%, transparent 100%);
  width: 100%;
}
.collection-banner-content h2 { color: #fff; margin-bottom: 8px; }
.collection-banner-content p { color: rgba(255,255,255,.8); max-width: 400px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail { padding: 40px 0 80px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Gallery */
.product-gallery { position: sticky; top: 88px; }
.gallery-main {
  border-radius: var(--radius-md); overflow: hidden; background: var(--green-bg);
  aspect-ratio: 1; margin-bottom: 12px; border: 1px solid var(--border);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.gallery-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.gallery-thumb {
  width: 74px; height: 74px; border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid var(--border); cursor: pointer; background: var(--green-bg);
  transition: border-color var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--green-main); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-info .prod-category { font-size: .8rem; color: var(--green-mid); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.product-info h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0; }
.product-rating { display: flex; align-items: center; gap: 10px; }
.product-rating .stars { color: var(--gold); font-size: 1rem; }
.product-rating .rating-num { font-size: .9rem; font-weight: 700; color: var(--dark); }
.product-rating .rating-count { font-size: .85rem; color: var(--muted); }
.product-price-block { display: flex; align-items: baseline; gap: 12px; }
.product-price-block .price-main { font-size: 2rem; font-weight: 900; color: var(--green-dark); font-family: var(--font-head); }
.product-price-block .price-orig { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.product-price-block .price-save { font-size: .85rem; font-weight: 700; color: var(--accent); background: rgba(224,123,57,.1); padding: 3px 10px; border-radius: 99px; }

/* Options */
.product-option-group { display: flex; flex-direction: column; gap: 10px; }
.product-option-group label { font-size: .9rem; font-weight: 600; color: var(--dark); }
.product-option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill {
  padding: 8px 18px; border-radius: 99px; border: 1.5px solid var(--border);
  font-size: .85rem; cursor: pointer; transition: all var(--transition); background: #fff;
}
.option-pill:hover { border-color: var(--green-main); color: var(--green-main); }
.option-pill.active { border-color: var(--green-main); background: var(--green-main); color: #fff; }

/* Qty + Buy buttons */
.product-buy-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.qty-selector {
  display: flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn {
  width: 40px; height: 48px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: background var(--transition); color: var(--text);
}
.qty-btn:hover { background: var(--green-pale); }
.qty-input {
  width: 50px; height: 48px; text-align: center; border: none; outline: none;
  font-size: 1rem; font-weight: 600; color: var(--dark);
}
.btn-buy-now { flex: 1; min-width: 180px; padding: 15px 24px; }

/* Badges row */
.product-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.product-badge-item {
  display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted);
  background: var(--green-bg); border: 1px solid var(--border); padding: 6px 12px;
  border-radius: var(--radius-sm);
}
.product-badge-item span { font-size: 1rem; }

/* Key features list */
.product-key-features { display: flex; flex-direction: column; gap: 10px; }
.product-key-feat { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--text); }
.product-key-feat::before { content: '✓'; color: var(--green-main); font-weight: 800; flex-shrink: 0; margin-top: 2px; }

/* Tabs */
.product-tabs { border-top: 1px solid var(--border); padding-top: 60px; margin-top: 20px; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 32px; }
.tab-btn {
  padding: 12px 24px; font-size: .95rem; font-weight: 600; color: var(--muted);
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--transition);
  cursor: pointer;
}
.tab-btn:hover { color: var(--green-main); }
.tab-btn.active { color: var(--green-main); border-bottom-color: var(--green-main); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: var(--green-bg); }
.specs-table td { padding: 12px 16px; font-size: .9rem; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { font-weight: 600; color: var(--dark); width: 40%; }

/* Related Products */
.related-products { padding: 60px 0; background: var(--off-white); }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page { padding: 48px 0 80px; }
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.blog-main-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.blog-featured { grid-column: 1/-1; }
.blog-featured .blog-card-img { aspect-ratio: 2/1; }
.blog-featured .blog-card-body h3 { font-size: 1.3rem; }

/* Sidebar */
.blog-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--green-bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; }
.sidebar-widget h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--green-pale); }
.sidebar-tag { display: inline-block; background: #fff; border: 1.5px solid var(--border); border-radius: 99px; padding: 5px 14px; font-size: .8rem; font-weight: 500; color: var(--text); margin: 4px; cursor: pointer; transition: all var(--transition); }
.sidebar-tag:hover { border-color: var(--green-main); color: var(--green-main); background: var(--green-pale); }
.sidebar-recent li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.sidebar-recent li:last-child { border: none; }
.sidebar-recent a { color: var(--text); }
.sidebar-recent a:hover { color: var(--green-main); }
.sidebar-recent .date { font-size: .75rem; color: var(--muted); margin-top: 2px; }

/* Blog Article (single post) */
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; padding: 48px 0 80px; }
.article-body { max-width: 740px; }
.article-header { margin-bottom: 32px; }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: .85rem; color: var(--muted); margin-bottom: 14px; flex-wrap: wrap; }
.article-tag { background: var(--green-pale); color: var(--green-dark); font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 99px; text-transform: uppercase; }
.article-hero-img { width: 100%; border-radius: var(--radius-md); margin-bottom: 32px; aspect-ratio: 16/7; object-fit: cover; }
.article-body h2 { font-size: 1.5rem; margin: 32px 0 12px; color: var(--green-dark); }
.article-body h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--dark); }
.article-body p { font-size: 1rem; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.article-body ul { margin: 0 0 18px 20px; display: flex; flex-direction: column; gap: 8px; list-style: disc; }
.article-body li { font-size: .95rem; color: var(--text); line-height: 1.7; }
.article-body blockquote { border-left: 4px solid var(--green-main); background: var(--green-bg); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; font-style: italic; color: var(--green-dark); }
.article-share { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-top: 1px solid var(--border); margin-top: 40px; }
.article-share span { font-size: .9rem; font-weight: 600; color: var(--dark); }
.share-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--green-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .95rem; transition: all var(--transition); }
.share-btn:hover { background: var(--green-pale); border-color: var(--green-main); }

/* ============================================================
   STATIC PAGES (about, app, faq, contact)
   ============================================================ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { text-align: center; padding: 32px 24px; background: var(--green-bg); border: 1px solid var(--border); border-radius: var(--radius-md); }
.value-card .icon { font-size: 2.4rem; margin-bottom: 14px; }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--green-pale); }
.timeline-item { display: flex; gap: 24px; padding-bottom: 32px; position: relative; }
.timeline-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--green-main); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; }
.timeline-content h4 { color: var(--green-dark); margin-bottom: 4px; }
.timeline-content p { font-size: .9rem; }
.awards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.award-card { background: linear-gradient(135deg,#1a1a2e,#16213e); border-radius: var(--radius-md); padding: 28px; text-align: center; }
.award-card .icon { font-size: 2.4rem; margin-bottom: 12px; }
.award-card h4 { color: var(--gold); margin-bottom: 8px; }
.award-card p { color: rgba(255,255,255,.65); font-size: .85rem; }

/* App page */
.plan-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.plan-card { border-radius: var(--radius-md); padding: 32px; border: 2px solid var(--border); position: relative; }
.plan-card.featured { border-color: var(--green-main); background: linear-gradient(135deg, var(--green-bg) 0%, #fff 100%); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green-main); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 99px; }
.plan-price { font-size: 2.2rem; font-weight: 900; color: var(--green-dark); font-family: var(--font-head); }
.plan-price .period { font-size: 1rem; font-weight: 400; color: var(--muted); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.plan-features li::before { content: '✓'; color: var(--green-main); font-weight: 800; flex-shrink: 0; }
.plan-features li.no::before { content: '✕'; color: var(--muted); }
.plan-features li.no { color: var(--muted); }
.screenshots-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.screenshot-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 9/19; background: var(--dark); }
.screenshot-item img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; font-weight: 600; font-size: .95rem;
  background: #fff; transition: background var(--transition);
}
.faq-question:hover { background: var(--green-bg); }
.faq-question .faq-icon { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; color: var(--green-mid); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: .9rem; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; background: var(--green-bg); }
.faq-item.open .faq-answer { display: block; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .9rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: .95rem; outline: none; font-family: inherit; transition: border var(--transition);
  color: var(--dark); background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-main); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--green-pale); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: .95rem; color: var(--dark); margin-bottom: 4px; }
.contact-info-item p { font-size: .875rem; color: var(--muted); }

/* ============================================================
   RESPONSIVE — SUBPAGES
   ============================================================ */
@media (max-width: 1100px) {
  .collection-grid { grid-template-columns: repeat(3,1fr); }
  .related-grid { grid-template-columns: repeat(3,1fr); }
  .screenshots-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .blog-layout, .article-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .about-story { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .collection-grid { grid-template-columns: repeat(2,1fr); }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .about-values { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .screenshots-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .collection-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
