/* Riffspark — Suxnix-inspired green/white theme */
:root {
  --green: #12a049;
  --green-bright: #28a745;
  --green-dark: #0e7a37;
  --orange: #ff8a00;
  --orange-dark: #e67a00;
  --black: #111111;
  --heading: #1b1b1b;
  --body: #666666;
  --muted: #999999;
  --light: #f5f5f5;
  --border: #e8e8e8;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container: 1200px;
  --font: "Montserrat", "Segoe UI", sans-serif;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-label {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-text {
  max-width: 560px;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 13px;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-green {
  background: var(--green);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-dark);
  color: var(--white);
}

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

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

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.site-header.is-dark {
  background: var(--black);
}

.site-header.is-dark .nav-menu a {
  color: var(--white);
}

.site-header.is-dark .logo-text {
  color: var(--white);
}

.site-header.is-dark .nav-icon {
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  height: 48px;
  width: auto;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  color: var(--heading);
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo-text span {
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-menu a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--heading);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--orange);
}

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

.nav-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.15rem;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-grid-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
}

.site-header.is-dark .nav-toggle span {
  background: var(--white);
}

/* Page hero */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black) center/cover no-repeat;
  color: var(--white);
  padding: 5rem 1rem 6rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  color: var(--orange);
  margin: 0 0.4rem;
}

/* Torn paper edges */
.torn-bottom,
.torn-top {
  position: relative;
}

.torn-bottom::after,
.torn-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  z-index: 2;
  pointer-events: none;
}

.torn-bottom::after {
  bottom: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 28' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 18 Q30 8 60 18 T120 18 T180 18 T240 18 T300 18 T360 18 T420 18 T480 18 T540 18 T600 18 T660 18 T720 18 T780 18 T840 18 T900 18 T960 18 T1020 18 T1080 18 T1140 18 T1200 18 V28 H0Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.torn-top::before {
  top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 28' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0 10 Q30 20 60 10 T120 10 T180 10 T240 10 T300 10 T360 10 T420 10 T480 10 T540 10 T600 10 T660 10 T720 10 T780 10 T840 10 T900 10 T960 10 T1020 10 T1080 10 T1140 10 T1200 10 V0 H0Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.torn-bottom-dark::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 28' preserveAspectRatio='none'%3E%3Cpath fill='%23111111' d='M0 18 Q30 8 60 18 T120 18 T180 18 T240 18 T300 18 T360 18 T420 18 T480 18 T540 18 T600 18 T660 18 T720 18 T780 18 T840 18 T900 18 T960 18 T1020 18 T1080 18 T1140 18 T1200 18 V28 H0Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.torn-top-dark::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 28' preserveAspectRatio='none'%3E%3Cpath fill='%23111111' d='M0 10 Q30 20 60 10 T120 10 T180 10 T240 10 T300 10 T360 10 T420 10 T480 10 T540 10 T600 10 T660 10 T720 10 T780 10 T840 10 T900 10 T960 10 T1020 10 T1080 10 T1140 10 T1200 10 V0 H0Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

/* Home hero */
.home-hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(18, 160, 73, 0.18), transparent 45%),
    linear-gradient(180deg, #f8fff9 0%, #ffffff 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.home-hero .section-label {
  margin-bottom: 1rem;
}

.home-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.home-hero p {
  max-width: 42ch;
  margin-bottom: 2rem;
}

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

.hero-arc {
  position: absolute;
  width: min(420px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.95;
}

.hero-products {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.hero-products img {
  width: 140px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-products img:nth-child(2) {
  width: 160px;
  height: 260px;
  margin-bottom: 1.5rem;
}

.hero-deco {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-deco.left {
  left: 5%;
  bottom: 15%;
}

.hero-deco.right {
  right: 8%;
  top: 10%;
}

.partners {
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--border);
}

.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
  opacity: 0.45;
  filter: grayscale(1);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--heading);
  font-size: 0.9rem;
}

/* Feature green band */
.feature-band {
  background: var(--green);
  color: var(--white);
  padding: 4.5rem 0;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.2rem;
}

.feature-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

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

.feature-circle {
  width: min(360px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  border: 8px solid rgba(255, 255, 255, 0.25);
}

.feature-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product showcase rows */
.showcase {
  padding: 5rem 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.showcase-row:nth-child(even) .showcase-media {
  order: 2;
}

.showcase-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-media::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #f0f0f0;
  z-index: 0;
}

.showcase-media img {
  position: relative;
  z-index: 1;
  width: min(280px, 80%);
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
}

.showcase-content h2 {
  margin-bottom: 0.5rem;
}

.showcase-content .price {
  margin: 1rem 0 1.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
}

.showcase-content .price del {
  color: var(--muted);
  font-weight: 500;
  font-size: 1rem;
  margin-left: 0.5rem;
}

/* Product cards / carousel */
.product-section {
  padding: 4rem 0 5rem;
  background: #fafafa;
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card-media {
  position: relative;
  height: 240px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
}

.product-card-media .arch {
  position: absolute;
  inset: 0 10% auto;
  height: 70%;
  border-radius: 0 0 50% 50% / 0 0 40% 40%;
}

.arch-blue { background: #5dade2; }
.arch-green { background: #58d68d; }
.arch-yellow { background: #f4d03f; }
.arch-orange { background: #f5b041; }
.arch-pink { background: #f1948a; }
.arch-teal { background: #48c9b0; }
.arch-purple { background: #af7ac5; }
.arch-lime { background: #82e0aa; }

.product-card-media img {
  position: relative;
  z-index: 1;
  height: 190px;
  width: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card-body {
  padding: 1.25rem;
  text-align: center;
}

.product-card-body h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: none;
  letter-spacing: 0;
}

.product-card-body .price {
  color: var(--green);
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.product-card-body .add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
}

/* Video band */
.video-band {
  position: relative;
  min-height: 360px;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.play-btn {
  position: relative;
  z-index: 1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(18, 160, 73, 0.85);
  border: 3px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
}

/* Ingredients */
.ingredients {
  padding: 5rem 0;
}

.ingredients-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 3.5rem;
}

.ing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.ing-list {
  display: grid;
  gap: 1.25rem;
}

.ing-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ing-item img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ing-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  text-transform: none;
}

/* Why choose */
.why-band {
  background: var(--green);
  color: var(--white);
  padding: 4.5rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-band h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.why-list {
  margin-bottom: 2rem;
}

.why-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}

.why-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
}

/* Packages */
.packages {
  padding: 5rem 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.package-card.featured {
  transform: scale(1.05);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  position: relative;
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 1.1rem;
  margin: 0.75rem 0;
}

.package-card .pkg-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  margin: 1rem 0;
}

.package-card ul {
  text-align: left;
  margin: 1.25rem 0 1.75rem;
}

.package-card li {
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
}

.package-card li::before {
  content: "• ";
  color: var(--green);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.testimonials blockquote {
  max-width: 720px;
  margin: 0 auto 1.5rem;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonials img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--green);
}

.testimonials cite {
  font-style: normal;
  font-weight: 700;
  color: var(--orange);
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.gallery-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter var(--transition);
}

.gallery-strip a:hover img {
  filter: brightness(1);
}

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 3rem;
}

.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.site-footer p {
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
}

.site-footer .logo-text {
  color: var(--white);
}

.footer-links li {
  margin-bottom: 0.65rem;
}

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

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
}

.social-links a:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.payment-icons span {
  background: var(--white);
  color: var(--heading);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: var(--orange);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow);
}

.back-to-top.show {
  display: flex;
}

/* Forms */
.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--heading);
  transition: border-color var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--green);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-control.is-invalid + .form-error,
.form-group.has-error .form-error {
  display: block;
}

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

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: #e8f8ee;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.form-success.show {
  display: block;
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: -3rem auto 3rem;
  position: relative;
  z-index: 3;
}

.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(18, 160, 73, 0.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
}

.contact-card .icon .check {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 50%;
  color: var(--white);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.contact-map-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2rem 0 4rem;
}

.map-box {
  min-height: 420px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--light) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  font-weight: 700;
  text-align: center;
  padding: 2rem;
}

/* Auth / form boxes */
.auth-section {
  padding: 4rem 0 5rem;
}

.auth-box {
  max-width: 520px;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}

.auth-box h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-box > p {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.25rem;
}

.auth-footer a {
  color: var(--orange);
  font-weight: 700;
}

/* Shop */
.shop-section {
  padding: 4rem 0 5rem;
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: center;
}

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

.shop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.shop-card:hover {
  box-shadow: var(--shadow);
}

.shop-card-img {
  height: 260px;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.shop-card-img img {
  max-height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: 8px;
}

.shop-card-body {
  padding: 1.25rem;
}

.shop-card .cat {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  display: block;
}

.shop-card h3 {
  font-size: 1rem;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.shop-card .price {
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* Product detail */
.product-detail {
  padding: 4rem 0 5rem;
}

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

.product-gallery {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.product-gallery img {
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.product-info .cat-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  text-transform: none;
}

.product-info .price-row {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  margin: 1rem 0;
}

.product-info .price-row del {
  color: var(--muted);
  font-size: 1.1rem;
  margin-left: 0.5rem;
}

.qty-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
}

.qty-control {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  border: none;
  background: var(--light);
  cursor: pointer;
  font-weight: 700;
}

.qty-control input {
  width: 56px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.product-tabs {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.product-tabs h3 {
  margin-bottom: 1rem;
}

.checklist li {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.checklist li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
}

/* Cart / checkout */
.cart-section {
  padding: 4rem 0 5rem;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.coupon-bar {
  background: var(--light);
  border: 1px dashed var(--border);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
}

.cart-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  min-width: 560px;
}

.cart-table th {
  text-align: left;
  padding: 0.85rem;
  border-bottom: 2px solid var(--border);
  color: var(--heading);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.cart-table td {
  padding: 1rem 0.85rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.cart-product {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cart-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.order-box {
  border: 2px solid rgba(255, 138, 0, 0.45);
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--white);
  position: sticky;
  top: 100px;
}

.order-box h3 {
  margin-bottom: 1.25rem;
}

.order-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.order-row.total {
  font-weight: 800;
  color: var(--heading);
  font-size: 1.1rem;
  border-bottom: none;
  margin-top: 0.5rem;
}

.order-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: #e8f8ee;
  border-radius: 12px;
  border: 1px solid var(--green);
}

.order-success.show {
  display: block;
}

.order-success h2 {
  color: var(--green);
  margin-bottom: 1rem;
  text-transform: none;
}

/* FAQ */
.faq-section {
  padding: 4rem 0 5rem;
}

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

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-q:hover,
.faq-item.open .faq-q {
  color: var(--green);
}

.faq-a {
  display: none;
  padding: 0 1.25rem 1.25rem;
}

.faq-item.open .faq-a {
  display: block;
}

/* Legal pages */
.legal-section {
  padding: 4rem 0 5rem;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.85rem;
  text-transform: none;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.65rem;
  text-transform: none;
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.85rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-content ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* About */
.about-section {
  padding: 4rem 0;
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-box {
  background: var(--light);
  padding: 1.5rem 1rem;
  border-radius: 12px;
}

.stat-box strong {
  display: block;
  font-size: 2rem;
  color: var(--green);
  font-weight: 800;
}

/* Content section helpers */
.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head .section-text {
  margin-inline: auto;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

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

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.search-overlay.show {
  display: flex;
}

.search-overlay form {
  width: min(560px, 100%);
  display: flex;
  gap: 0.5rem;
}

.search-overlay input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: var(--radius);
}

.search-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(300px, 85vw);
  background: var(--white);
  z-index: 1500;
  padding: 5rem 1.5rem 2rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1400;
}

.mobile-nav-backdrop.show {
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .package-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .home-hero-grid,
  .feature-band-grid,
  .showcase-row,
  .ingredients-grid,
  .why-grid,
  .about-grid,
  .product-detail-grid,
  .cart-layout,
  .contact-map-form {
    grid-template-columns: 1fr;
  }
  .showcase-row:nth-child(even) .showcase-media {
    order: 0;
  }
  .shop-grid,
  .package-grid,
  .contact-cards,
  .ingredients-top {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-strip a:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 640px) {
  .form-row,
  .shop-grid,
  .package-grid,
  .contact-cards,
  .ingredients-top,
  .about-stats,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-products img {
    width: 100px;
    height: 160px;
  }
  .hero-products img:nth-child(2) {
    width: 120px;
    height: 190px;
  }
  .header-inner {
    min-height: 70px;
  }
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cards {
    margin-top: -2rem;
  }
  .qty-row {
    flex-wrap: wrap;
  }
  .page-hero {
    min-height: 220px;
    padding: 4rem 1rem 5rem;
  }
  .logo-text span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
