:root {
  --primary: #ff75b5;
  --secondary: #4cc9f0;
  --background-image: none;
  --background-overlay: rgba(255, 255, 255, 0.85);
  --text: #2b2b2b;
  --muted: #6c6c6c;
  --card-bg: #ffffff;
  --border: #f0d9e7;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Quicksand", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff5fb 0%, #f7fbff 100%);
  min-height: 100vh;
  padding-bottom: 5rem;
}

.background-overlay {
  position: fixed;
  inset: 0;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  pointer-events: none;
  z-index: -2;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 6vw;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Baloo 2", cursive;
}

.brand-logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  border-radius: 16px;
  font-size: 1.6rem;
  overflow: hidden;
}

.brand-logo__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.is-hidden {
  display: none;
}

.hidden {
  display: none;
}
.site-nav {
  display: flex;
  gap: 1.5rem;
}

.tab-link {
  border: none;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.tab-link.active {
  background: rgba(255, 117, 181, 0.18);
  color: var(--primary);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 117, 181, 0.18);
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
  overflow: hidden;
}

.social-link__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 6vw;
  align-items: center;
}

.tag {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 117, 181, 0.15);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--muted);
}

.section {
  padding: 3rem 6vw;
}

.tab-section {
  display: none;
}

.tab-section.is-active {
  display: block;
}
.section-title {
  margin-bottom: 2rem;
}

.section-title h2 {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  color: var(--muted);
}

.product-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff7fb;
  padding: 0.5rem;
  cursor: pointer;
}

.product-description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.product-quantity {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.product-card h3 {
  font-size: 1.1rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.product-meta span {
  color: var(--primary);
}

.quantity-label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.quantity-input {
  width: 90px;
}

.card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}


label {
  display: grid;
  gap: 0.5rem;
  font-weight: 600;
}

input,
select,
textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
}


.primary-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-2px);
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
}

.checkout-form {
  display: grid;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.full-width {
  grid-column: 1 / -1;
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem 6vw;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.footer-instagram__logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.floating-cart {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 15;
}

.cart-count {
  background: white;
  color: var(--secondary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  right: 2rem;
  bottom: 6rem;
  width: min(360px, 90vw);
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  z-index: 20;
}

.cart-drawer.open {
  display: flex;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items {
  display: grid;
  gap: 1rem;
  max-height: 320px;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-actions button {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.cart-actions input {
  width: 64px;
  text-align: center;
}

.cart-footer {
  display: grid;
  gap: 1rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 18;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.image-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 22;
}

.image-modal.open {
  display: flex;
}

.image-modal__content {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 1.5rem;
  width: min(720px, 95vw);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.image-modal__img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 16px;
  background: #fff7fb;
}

.image-modal__close {
  justify-self: end;
}


@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .floating-cart {
    right: 1rem;
  }

  .cart-drawer {
    right: 1rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 1.5rem 5vw;
  }

  .brand {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
  }

  .primary-btn,
  .ghost-btn {
    width: auto;
  }

  .product-card img {
    height: 160px;
  }

  .cart-drawer {
    width: min(320px, 92vw);
    bottom: 5.5rem;
  }
}