/* ==========================================
   MEDVANCE PHARMACY
   Modern Static Ecommerce Website
========================================== */

:root {
  --primary: #d81b60;
  --primary-dark: #b91350;
  --primary-light: #fce7ef;

  --brown: #a98b7b;
  --brown-dark: #80685c;
  --brown-light: #f6eee9;

  --black: #171417;
  --text: #3d383b;
  --muted: #777074;

  --white: #ffffff;
  --off-white: #fcfaf9;
  --border: #eadfe0;

  --success: #20b85a;

  --container: 1240px;
  --radius: 16px;

  --shadow: 0 20px 60px rgba(50, 25, 35, 0.08);
}


/* ==========================================
   RESET
========================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ==========================================
   TOP BAR
========================================== */

.top-bar {
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 500;
}

.top-bar-inner {
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.separator {
  opacity: 0.45;
}


/* ==========================================
   NAVBAR
========================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo > span:last-child {
  display: flex;
  flex-direction: column;
}

.logo strong {
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.8px;
}

.logo small {
  margin-top: 4px;
  font-size: 8px;
  line-height: 1;
  color: var(--brown-dark);
  letter-spacing: 0.2px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border: 2px solid var(--primary);
  border-radius: 9px;
  position: relative;
  display: block;
}

.logo-icon::before,
.logo-icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
}

.logo-icon::before {
  width: 17px;
  height: 4px;
  left: 7px;
  top: 13px;
}

.logo-icon::after {
  width: 4px;
  height: 17px;
  left: 13px;
  top: 7px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 28px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
}

.desktop-nav a.active::after {
  content: "";
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: 17px;
  left: 0;
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.cart-button,
.mobile-menu-button {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}

.icon-button:hover,
.cart-button:hover {
  background: var(--primary-light);
}

.icon-button svg,
.cart-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--black);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.cart-button span {
  position: absolute;
  top: 2px;
  right: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.mobile-menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu-button span {
  width: 19px;
  height: 2px;
  background: var(--black);
}


/* ==========================================
   MOBILE NAV
========================================== */

.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid var(--border);
  padding: 10px 24px 20px;
}

.mobile-nav a {
  padding: 13px 0;
  font-size: 15px;
  border-bottom: 1px solid #f2eded;
}

.mobile-nav.open {
  display: flex;
}


/* ==========================================
   SEARCH
========================================== */

.search-panel {
  display: none;
  background: white;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: var(--shadow);
}

.search-panel.open {
  display: block;
}

.search-inner {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-inner input {
  flex: 1;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 18px;
  outline: none;
}

.search-inner input:focus {
  border-color: var(--primary);
}

.search-inner button {
  border: 0;
  background: transparent;
  font-size: 30px;
}


/* ==========================================
   HERO
========================================== */

.hero {
  min-height: 610px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      100deg,
      #fff7f9 0%,
      #fdf0f4 50%,
      #f8ebe6 100%
    );
}

.hero-background {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    radial-gradient(
      circle at 15% 30%,
      rgba(216, 27, 96, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(169, 139, 123, 0.14),
      transparent 35%
    );
}

.hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 70px 0;
  max-width: 590px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.01;
  letter-spacing: -3.5px;
  max-width: 600px;
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.hero-content > p {
  max-width: 510px;
  margin: 25px 0 30px;
  color: #5f575b;
  font-size: 16px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.button-primary {
  color: white;
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(216, 27, 96, 0.18);
}

.button-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.button-whatsapp {
  border-color: #c9aea2;
  color: var(--brown-dark);
  background: rgba(255,255,255,0.5);
}

.button-whatsapp:hover {
  background: white;
  border-color: var(--brown);
}

.button span {
  font-size: 17px;
}

.whatsapp-icon {
  font-size: 19px !important;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 38px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.trust-item div:last-child {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 11px;
  color: var(--black);
}

.trust-item span {
  font-size: 9px;
  color: var(--muted);
}


/* ==========================================
   HERO PRODUCT ART
========================================== */

.hero-visual {
  height: 560px;
  position: relative;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

.circle-one {
  width: 480px;
  height: 480px;
  background: rgba(255,255,255,0.5);
  right: 50px;
  top: 40px;
}

.circle-two {
  width: 270px;
  height: 270px;
  background: rgba(216, 27, 96, 0.05);
  right: 130px;
  top: 120px;
}

.hero-platform {
  position: absolute;
  width: 550px;
  height: 65px;
  right: 0;
  bottom: 85px;
  background: linear-gradient(
    180deg,
    #f1ddd4,
    #d8b9aa
  );
  border-radius: 50%;
  transform: perspective(500px) rotateX(50deg);
  box-shadow: 0 35px 40px rgba(120, 80, 60, 0.13);
}

.medicine-bottle {
  position: absolute;
  z-index: 4;
}

.vitamin-bottle {
  right: 290px;
  bottom: 135px;
}

.bottle-cap {
  width: 112px;
  height: 34px;
  margin: auto;
  background: linear-gradient(#eee, #bbb);
  border-radius: 10px 10px 4px 4px;
}

.bottle-body {
  width: 140px;
  height: 240px;
  background: linear-gradient(90deg, #c88c5c, #a96239, #d39a66);
  border-radius: 12px 12px 18px 18px;
  box-shadow: 15px 20px 35px rgba(90, 50, 30, 0.18);
  padding: 70px 10px 10px;
  text-align: center;
  position: relative;
}

.bottle-body::before {
  content: "";
  position: absolute;
  inset: 45px 8px 12px;
  background: #fff;
  border-radius: 5px;
}

.bottle-body span,
.bottle-body strong,
.bottle-body small,
.bottle-body i {
  position: relative;
  z-index: 1;
  display: block;
}

.bottle-body span {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
}

.bottle-body strong {
  color: var(--black);
  font-size: 14px;
  margin-top: 6px;
}

.bottle-body small {
  font-size: 10px;
}

.bottle-body i {
  font-size: 7px;
  margin-top: 25px;
  font-style: normal;
}

.medicine-box {
  width: 210px;
  height: 135px;
  position: absolute;
  z-index: 5;
  right: 120px;
  bottom: 155px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 15px 20px 35px rgba(70, 40, 40, 0.12);
  transform: rotate(3deg);
}

.medicine-box::before {
  content: "MEDVANCE";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 32px;
  padding: 7px 15px;
  background: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
}

.box-label {
  position: absolute;
  left: 15px;
  top: 65px;
}

.box-label strong {
  display: block;
  font-size: 16px;
  color: var(--black);
}

.box-label small {
  display: block;
  font-size: 11px;
}

.box-label em {
  display: block;
  margin-top: 10px;
  font-size: 8px;
  font-style: normal;
}

.sanitizer {
  position: absolute;
  z-index: 6;
  right: 20px;
  bottom: 130px;
}

.pump {
  width: 65px;
  height: 30px;
  margin-left: 25px;
  background: white;
  border-radius: 5px 12px 0 0;
  position: relative;
}

.pump::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 8px;
  background: #eee;
  right: -42px;
  top: 0;
  border-radius: 10px;
}

.sanitizer-body {
  width: 115px;
  height: 230px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #ddd;
  border-radius: 12px 12px 18px 18px;
  text-align: center;
  padding-top: 55px;
  box-shadow: 10px 20px 30px rgba(50, 30, 30, 0.08);
}

.sanitizer-body span {
  color: var(--primary);
  display: block;
  font-size: 8px;
  font-weight: 800;
}

.sanitizer-body strong {
  display: block;
  color: var(--black);
  font-size: 14px;
  margin: 10px 0;
}

.sanitizer-body small {
  font-size: 9px;
}


/* ==========================================
   GENERAL SECTIONS
========================================== */

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading.centered {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -1.8px;
  margin-top: 10px;
}

.section-heading p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 14px;
}


/* ==========================================
   CATEGORIES
========================================== */

.categories-section {
  background: white;
}

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

.category-card {
  min-height: 175px;
  padding: 25px 15px;
  border: 1px solid #f1e5e6;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.25s ease;
}

.category-card:hover {
  border-color: rgba(216, 27, 96, 0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 27, 96, 0.35);
  color: var(--primary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.category-card h3 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-size: 12px;
  line-height: 1.4;
}

.category-card p {
  color: var(--muted);
  font-size: 10px;
  margin-top: 5px;
}


/* ==========================================
   PRODUCTS
========================================== */

.products-section {
  background: var(--off-white);
}

.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.product-filters {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.filter-button {
  background: white;
  border: 1px solid var(--border);
  padding: 9px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 11px;
  transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.product-card {
  background: white;
  border: 1px solid #eee3e4;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.product-image {
  height: 220px;
  background: #faf6f5;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.product-box-art {
  width: 165px;
  height: 105px;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 8px 15px 25px rgba(60, 30, 30, 0.08);
  transform: rotate(-2deg);
  position: relative;
  padding-top: 42px;
  text-align: left;
  padding-left: 12px;
}

.product-box-art::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: var(--primary);
}

.product-box-art.teal::before {
  background: #219b9d;
}

.product-box-art span {
  position: absolute;
  top: 7px;
  left: 10px;
  color: white;
  font-size: 7px;
  font-weight: 800;
}

.product-box-art strong {
  display: block;
  color: var(--black);
  font-size: 12px;
}

.product-box-art small {
  display: block;
  font-size: 9px;
}

.product-box-art em {
  display: block;
  font-size: 6px;
  margin-top: 7px;
  font-style: normal;
}

.product-bottle-art {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-bottle-art .cap {
  width: 80px;
  height: 25px;
  background: #ccc;
  border-radius: 7px 7px 2px 2px;
}

.product-bottle-art .bottle {
  width: 100px;
  height: 145px;
  background: linear-gradient(90deg, #c88c5c, #a96239, #d39a66);
  border-radius: 8px 8px 13px 13px;
  position: relative;
  padding-top: 40px;
  text-align: center;
  box-shadow: 10px 15px 25px rgba(70, 40, 30, 0.14);
}

.product-bottle-art .bottle::before {
  content: "";
  position: absolute;
  inset: 30px 7px 8px;
  background: white;
  border-radius: 4px;
}

.product-bottle-art span,
.product-bottle-art strong,
.product-bottle-art small,
.product-bottle-art em {
  position: relative;
  z-index: 2;
  display: block;
}

.product-bottle-art span {
  color: var(--primary);
  font-size: 7px;
  font-weight: 800;
}

.product-bottle-art strong {
  color: var(--black);
  font-size: 11px;
}

.product-bottle-art small {
  font-size: 7px;
}

.product-bottle-art em {
  font-size: 6px;
  font-style: normal;
  margin-top: 15px;
}

.sanitizer-art {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mini-pump {
  width: 48px;
  height: 23px;
  background: #eee;
  border-radius: 5px 8px 0 0;
}

.mini-bottle {
  width: 85px;
  height: 145px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px 8px 13px 13px;
  text-align: center;
  padding-top: 40px;
  box-shadow: 8px 15px 25px rgba(70, 40, 30, 0.1);
}

.mini-bottle span {
  display: block;
  color: var(--primary);
  font-size: 6px;
  font-weight: 800;
}

.mini-bottle strong {
  display: block;
  font-size: 10px;
  margin: 10px 0;
}

.mini-bottle small {
  font-size: 7px;
}

.lotion-art {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lotion-cap {
  width: 72px;
  height: 20px;
  background: #ddd;
  border-radius: 7px 7px 2px 2px;
}

.lotion-body {
  width: 95px;
  height: 155px;
  border: 1px solid #ddd;
  border-radius: 8px 8px 15px 15px;
  background: linear-gradient(135deg, #fff, #f8e7df);
  text-align: center;
  padding-top: 40px;
  box-shadow: 8px 15px 25px rgba(70, 40, 30, 0.08);
}

.lotion-body span {
  display: block;
  font-size: 6px;
  color: var(--primary);
  font-weight: 800;
}

.lotion-body strong {
  display: block;
  font-size: 11px;
  margin: 12px 0;
}

.lotion-body small {
  font-size: 7px;
}

.product-info {
  padding: 17px;
}

.product-category {
  color: var(--brown-dark);
  font-size: 9px;
  font-weight: 600;
}

.product-info h3 {
  color: var(--black);
  font-size: 14px;
  margin-top: 4px;
}

.product-info > p {
  color: var(--muted);
  font-size: 10px;
  margin-top: 2px;
}

.product-bottom {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.product-bottom strong {
  color: var(--primary);
  font-size: 15px;
}

.add-cart {
  border: 0;
  color: white;
  background: var(--primary);
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.add-cart:hover {
  background: var(--primary-dark);
}

.products-empty {
  display: none;
  text-align: center;
  padding: 60px 0;
}

.products-empty.show {
  display: block;
}

.products-empty h3 {
  font-family: "Manrope", sans-serif;
}

.products-empty p {
  color: var(--muted);
  font-size: 13px;
}


/* ==========================================
   WHY US
========================================== */

.why-section {
  background: white;
}

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

.benefit-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.benefit-number {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #f2e7e3;
  font-family: "Manrope", sans-serif;
  font-size: 50px;
  font-weight: 800;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  position: relative;
}

.benefit-card h3 {
  font-family: "Manrope", sans-serif;
  color: var(--black);
  font-size: 16px;
}

.benefit-card p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 9px;
  line-height: 1.7;
}


/* ==========================================
   ABOUT
========================================== */

.about-section {
  background: var(--brown-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.about-card-main {
  width: 370px;
  height: 360px;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(255,255,255,0.2),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      var(--primary),
      #b80f51
    );
  color: white;
  border-radius: 25px;
  padding: 45px;
  box-shadow: 30px 30px 60px rgba(120, 50, 70, 0.18);
  transform: rotate(-3deg);
}

.medical-cross {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 40px;
  margin-bottom: 50px;
}

.about-card-main > span {
  font-size: 10px;
  letter-spacing: 2px;
}

.about-card-main h3 {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  line-height: 1.15;
  margin-top: 8px;
}

.about-card-main p {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 14px;
}

.floating-card {
  position: absolute;
  right: 15px;
  bottom: 15px;
  background: white;
  width: 150px;
  padding: 20px;
  border-radius: 13px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  color: var(--primary);
  font-family: "Manrope", sans-serif;
  font-size: 28px;
}

.floating-card span {
  color: var(--muted);
  font-size: 10px;
}

.about-content {
  max-width: 570px;
}

.about-content h2 span {
  color: var(--primary);
  display: block;
}

.about-lead {
  font-size: 17px !important;
  color: var(--text) !important;
  margin-top: 25px !important;
}

.about-content > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 15px;
}

.about-points {
  display: grid;
  gap: 11px;
  margin: 25px 0 30px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-points span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-size: 10px;
}

.about-points p {
  font-size: 12px;
}


/* ==========================================
   CONTACT
========================================== */

.contact-section {
  background: white;
}

.contact-card {
  min-height: 350px;
  border-radius: 25px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(255,255,255,0.13),
      transparent 25%
    ),
    linear-gradient(
      115deg,
      #bd1457,
      var(--primary)
    );
  color: white;
  padding: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.contact-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.contact-content .section-label {
  color: #ffd8e5;
}

.contact-content h2 {
  color: white;
  font-size: 45px;
}

.contact-content h2 span {
  color: #ffd8e5;
}

.contact-content p {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  margin: 18px 0 25px;
  max-width: 510px;
}

.button-light {
  background: white;
  color: var(--primary);
}

.button-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.contact-decoration {
  width: 400px;
  height: 400px;
  position: relative;
  flex-shrink: 0;
}

.contact-circle {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  position: absolute;
  right: -60px;
  top: -30px;
}

.contact-cross {
  position: absolute;
  right: 70px;
  top: 55px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 40px;
  display: grid;
  place-items: center;
  font-size: 120px;
  font-weight: 200;
  transform: rotate(10deg);
}


/* ==========================================
   NEWSLETTER
========================================== */

.newsletter {
  background: var(--primary);
  color: white;
}

.newsletter-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-inner > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
}

.newsletter-icon {
  width: 43px;
  height: 43px;
  background: white;
  color: var(--primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.newsletter strong {
  font-size: 13px;
}

.newsletter p {
  font-size: 10px;
  opacity: 0.75;
}

.newsletter-form {
  width: 430px;
  height: 43px;
  display: flex;
  background: white;
  border-radius: 6px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 15px;
  font-size: 11px;
  min-width: 0;
}

.newsletter-form button {
  width: 120px;
  border: 0;
  background: var(--primary-dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
}


/* ==========================================
   FOOTER
========================================== */

.footer {
  background: #fffaf8;
  padding-top: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 55px;
}

.footer-brand {
  max-width: 290px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.social-links {
  display: flex;
  gap: 7px;
  margin-top: 22px;
}

.social-links a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 12px;
  transition: 0.2s;
}

.social-links a:hover {
  background: var(--primary);
  color: white;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  color: var(--black);
  font-size: 12px;
  margin-bottom: 7px;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  min-height: 60px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
}


/* ==========================================
   CART DRAWER
========================================== */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 15, 0.45);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  right: -450px;
  top: 0;
  bottom: 0;
  width: min(430px, 100%);
  background: white;
  z-index: 2100;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.1);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 25px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

.cart-header span {
  font-size: 9px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1.5px;
}

.cart-header h2 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  color: var(--black);
}

.cart-header button {
  border: 0;
  background: transparent;
  font-size: 28px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart div {
  font-size: 40px;
  margin-bottom: 15px;
}

.empty-cart h3 {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
}

.empty-cart p {
  color: var(--muted);
  font-size: 12px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item h3 {
  font-size: 13px;
}

.cart-item p {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
}

.remove-item {
  border: 0;
  background: transparent;
  color: #999;
  font-size: 11px;
}

.cart-footer {
  padding: 22px;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cart-total span {
  color: var(--muted);
  font-size: 13px;
}

.cart-total strong {
  color: var(--primary);
  font-size: 18px;
}

.checkout-button {
  width: 100%;
}

.cart-footer small {
  display: block;
  text-align: center;
  color: var(--muted);
  font-size: 9px;
  margin-top: 12px;
}


/* ==========================================
   FLOATING WHATSAPP
========================================== */

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 31px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}


/* ==========================================
   TOAST
========================================== */

.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 100px);
  background: var(--black);
  color: white;
  padding: 13px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  opacity: 0;
  transition: 0.3s;
  font-size: 12px;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.toast span {
  color: #5de58a;
  font-weight: 800;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

  .desktop-nav {
    gap: 18px;
  }

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

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

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

  .footer-brand {
    grid-row: span 2;
  }
}


@media (max-width: 900px) {

  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

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

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-content > p {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    height: 420px;
    margin-top: -20px;
  }

  .circle-one {
    width: 380px;
    height: 380px;
    right: 50%;
    transform: translateX(50%);
  }

  .vitamin-bottle {
    right: calc(50% + 100px);
  }

  .medicine-box {
    right: calc(50% - 130px);
  }

  .sanitizer {
    right: calc(50% - 210px);
  }

  .hero-platform {
    right: 50%;
    transform: translateX(50%) perspective(500px) rotateX(50deg);
    width: 500px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-visual {
    max-width: 500px;
    width: 100%;
    margin: auto;
  }

  .about-content {
    margin: auto;
  }

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

  .contact-card {
    padding: 50px;
  }

  .contact-decoration {
    display: none;
  }
}


@media (max-width: 700px) {

  .container {
    width: min(100% - 32px, var(--container));
  }

  .top-bar {
    display: none;
  }

  .nav-inner {
    height: 68px;
  }

  .logo strong {
    font-size: 19px;
  }

  .logo small {
    font-size: 7px;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav-actions {
    gap: 0;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-content {
    padding: 65px 0 20px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .hero-content > p {
    font-size: 14px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    text-align: left;
  }

  .hero-trust .trust-item:last-child {
    grid-column: span 2;
    justify-content: center;
  }

  .hero-visual {
    height: 340px;
    transform: scale(0.82);
    transform-origin: top center;
    margin-bottom: -50px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2,
  .about-content h2,
  .contact-content h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

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

  .product-heading {
    display: block;
  }

  .product-filters {
    margin-top: 20px;
  }

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

  .product-image {
    height: 170px;
  }

  .product-info {
    padding: 13px;
  }

  .product-info h3 {
    font-size: 12px;
  }

  .product-bottom {
    display: block;
  }

  .product-bottom strong {
    display: block;
    margin-bottom: 8px;
  }

  .add-cart {
    width: 100%;
  }

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

  .about-visual {
    height: 350px;
  }

  .about-card-main {
    width: 290px;
    height: 300px;
    padding: 30px;
  }

  .medical-cross {
    margin-bottom: 30px;
  }

  .about-card-main h3 {
    font-size: 22px;
  }

  .floating-card {
    right: 5px;
  }

  .contact-card {
    padding: 40px 25px;
    border-radius: 18px;
  }

  .newsletter-inner {
    padding: 25px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .newsletter-form {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }

  .footer-brand {
    grid-column: span 2;
    grid-row: auto;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 15px 0;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 17px;
    bottom: 17px;
    font-size: 27px;
  }
}


@media (max-width: 420px) {

  .hero h1 {
    font-size: 42px;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .hero-trust .trust-item:last-child {
    grid-column: auto;
    justify-content: flex-start;
  }

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

  .product-image {
    height: 145px;
  }

  .category-card {
    min-height: 150px;
  }

  .category-card h3 {
    font-size: 11px;
  }
}