:root {
  --ink: #0E1416;
  --ink-soft: #182024;
  --paper: #F5F7F5;
  --card: #FFFFFF;
  --accent-green: #00C853;
  --accent-green-deep: #00A847;
  --accent-blue: #2F6FED;
  --text-main: #12181B;
  --text-muted: #6B7280;
  --text-faint: #6a7370;
  --border: #E3E7E4;
  --discount-bg: #aef7cc;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-card: 0 1px 2px rgba(14, 20, 22, 0.04), 0 8px 24px rgba(14, 20, 22, 0.06);
  --shadow-card-hover: 0 4px 10px rgba(14, 20, 22, 0.06), 0 16px 36px rgba(14, 20, 22, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-main);
  background: linear-gradient(135deg, #DFFFE8 0%, #FFFFFF 100%);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.display {
  font-family: 'Space Grotesk', sans-serif;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

img,
svg {
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout shell ---------- */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand-mark img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 2px;
}

.brand-mark-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #7DE3A8;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.brand-mark-text b {
  color: #f9f7f7;
  font-weight: 600;
}

.brand-center {
  justify-self: center;
  text-align: center;
  line-height: 1.15;
}

.brand-center .line1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fdfdfd;
  letter-spacing: -0.01em;
}

.brand-center .line1 .cursor {
  display: inline-block;
  width: 9px;
  height: 18px;
  margin-left: 3px;
  background: var(--accent-green);
  vertical-align: -3px;
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.brand-center .line2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: #8A9994;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

.whatsapp-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: #04220F;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  transition: background .18s ease, transform .18s ease;
  white-space: nowrap;
}

.whatsapp-cta:hover {
  background: #17E164;
  transform: translateY(-1px);
}

.whatsapp-cta svg {
  width: 17px;
  height: 17px;
}

.whatsapp-cta .full-label {
  display: inline;
}

.whatsapp-cta .short-label {
  display: none;
}

@media (max-width:640px) {
  .header-grid {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 12px 16px;
  }

  .brand-mark-text {
    display: none;
  }

  .brand-center .line1 {
    font-size: 20px;
  }

  .brand-center .line2 {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .whatsapp-cta .full-label {
    display: none;
  }

  .whatsapp-cta .short-label {
    display: inline;
  }

  .whatsapp-cta {
    padding: 9px 12px;
  }
}

/* ---------- Section eyebrow ---------- */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--accent-green-deep);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 5px 0;
}

.eyebrow .prompt {
  color: var(--text-faint);
}

/* ---------- Category section ---------- */
.category-section {
  padding: 10px 0 8px;
}

.category-heading {
  font-size: 23px;
  font-weight: 900;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
}

.category-sub {
  color: var(--text-muted);
  font-size: 11.5px;
  margin: 0 0 15px 0;
}

/* Always 1 row / 5 columns, on every screen size. Only sizing shrinks on mobile. */
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 8px 16px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
  min-width: 0;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.category-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEF2EE;
  color: var(--text-main);
  transition: background .18s ease, color .18s ease, width .18s ease, height .18s ease;
  flex-shrink: 0;
}

.category-card .icon-box svg {
  width: 22px;
  height: 22px;
}

.category-card .cat-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.category-card.active {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(0, 200, 83, 0.10);
}

.category-card.active .icon-box {
  background: var(--accent-green);
  color: #04220F;
}

.category-card.active .cat-label {
  color: var(--accent-green-deep);
}

.category-card.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-green);
}

/* Compact but still 5-across on tablets/phones */
@media (max-width:820px) {
  .category-grid {
    gap: 8px;
  }

  .category-card {
    padding: 14px 4px 10px;
    border-radius: 12px;
  }

  .category-card .icon-box {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .category-card .icon-box svg {
    width: 18px;
    height: 18px;
  }

  .category-card .cat-label {
    font-size: 11.5px;
  }
}

@media (max-width:480px) {
  .category-grid {
    gap: 6px;
  }

  .category-card {
    padding: 10px 2px 8px;
    border-radius: 10px;
    gap: 6px;
  }

  .category-card .icon-box {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .category-card .icon-box svg {
    width: 15px;
    height: 15px;
  }

  .category-card .cat-label {
    font-size: 9.5px;
    letter-spacing: -0.01em;
  }

  .category-card.active::after {
    width: 16px;
    height: 2px;
  }
}

@media (max-width:360px) {
  .category-card .cat-label {
    font-size: 8.5px;
  }
}

/* ---------- Products ---------- */
.products-section {
  padding: 10px 0 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 20px;
}

.mobile-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s ease, transform .2s ease;
  animation: cardIn .4s ease both;
}

.mobile-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-image {
  flex: 0 0 118px;
  width: 118px;
  height: 118px;
}

.mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.mobile-details {
  flex: 1;
  min-width: 0;
}

.mobile-name {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
  font-family: 'Space Grotesk', sans-serif;
}

.mobile-variant {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0 0 12px 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-wrap: wrap;
}

.selling-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
}

.offer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 16px;
  flex-wrap: wrap;
}

.discount-badge {
  font-size: 13px;
  font-weight: 700;
  color: green;
  background: var(--discount-bg);
  padding: 2px 8px;
  border-radius: 5px;
}

.mrp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
  color: var(--text-faint);
  text-decoration: line-through;
}

.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: #04220F;
  font-weight: 600;
  font-size: 14px;
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  transition: background .18s ease, transform .18s ease;
}

.order-btn:hover {
  background: #17E164;
  transform: translateY(-1px);
}

@media (max-width:640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .mobile-card {
    padding: 10px;
    gap: 8px;
  }

  .mobile-image {
    flex-basis: 88px;
    width: 88px;
    height: 88px;
    border-radius: 13px;
  }

  .mobile-name {
    font-size: 16.5px;
  }

  .selling-price {
    font-size: 19px;
  }

  .order-btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--ink);
  color: #DDE6E2;
  padding: 64px 0 0;
  margin-top: 20px;
}

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

@media (max-width:860px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-heading {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px 0;
  letter-spacing: -0.01em;
}

.contact-list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #B7C4BF;
  line-height: 1.5;
}

.contact-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--accent-green);
}

.contact-list li a {
  color: #DDE6E2;
  transition: color .15s ease;
}

.contact-list li a:hover {
  color: var(--accent-green);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s ease;
}

.social-row a:hover {
  background: var(--accent-green);
  color: #04220F;
  transform: translateY(-2px);
}

.social-row a svg {
  width: 17px;
  height: 17px;
}

.map-box {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.map-box iframe {
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.directions-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(0, 200, 83, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .18s ease, color .18s ease;
}

.directions-link svg {
  width: 15px;
  height: 15px;
}

.directions-link:hover {
  background: var(--accent-green);
  color: #04220F;
}

.hours-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
}

.hours-box h4 {
  margin: 0 0 10px 0;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7DE3A8;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  padding: 5px 0;
  color: #B7C4BF;
}

.hours-row b {
  color: #EDEDED;
  font-weight: 500;
}

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

@media (max-width:860px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #FFC94A;
}

.stars svg {
  width: 14px;
  height: 14px;
}

.testimonial-quote {
  font-size: 13.8px;
  line-height: 1.6;
  color: #CBD6D1;
  margin: 0;
  flex: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-green);
  color: #04220F;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-person .p-name {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}

.testimonial-person .p-role {
  font-size: 11.5px;
  color: #8A9994;
}

.footer-bottom {
  padding: 11px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12.5px;
  color: #7A8A85;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
}

.footer-bottom a {
  color: #B7C4BF;
}

.footer-bottom a:hover {
  color: var(--accent-green);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
  border-radius: 6px;
}