:root {
  --bg: #ffffff;
  --surface: #f6f7fb;
  --text: #12131a;
  --muted: #5b5f6a;
  --border: rgba(18, 19, 26, 0.12);
  --accent: #ff3ea5;
  --accent2: #00d4ff;
  --accent3: #ffe24a;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-soft: 0 10px 35px rgba(18, 19, 26, 0.1);
  --card-shadow: 0 15px 35px rgba(18, 19, 26, 0.08);
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  gap: 1rem;
}

.brand {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

nav.desktop-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

nav.desktop-nav a {
  font-weight: 500;
  position: relative;
  padding-bottom: 0.35rem;
}

nav.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

nav.desktop-nav a:hover::after,
nav.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-actions button,
.header-actions .icon-button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 999px;
  transition: var(--transition);
  color: var(--muted);
}

.icon-button:hover {
  color: var(--text);
  background: var(--surface);
}

.icon-button svg {
  width: 1.3rem;
  height: 1.3rem;
}

.cart-icon {
  position: relative;
}

.cart-icon .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  padding: 0.4rem 0.6rem;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle:hover {
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: clamp(420px, 68vh, 520px);
  background: linear-gradient(125deg, rgba(255, 62, 165, 0.2), rgba(0, 212, 255, 0.25), rgba(255, 226, 74, 0.15)), var(--hero-image, #f9f9f9);
  background-size: cover;
  background-position: center;
  padding: clamp(2.5rem, 4vw, 4rem);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.1), rgba(255, 255, 255, 0.7));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.hero-overlay {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2vw, 2.5rem);
  color: var(--text);
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 1;
}

.hero-overlay h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 0.8rem;
}

.hero-overlay p {
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn.primary {
  background: linear-gradient(130deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 62, 165, 0.4);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}

.hero-mini-carousel {
  position: absolute;
  bottom: -35px;
  left: 5%;
  right: 5%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  z-index: 2;
}

.hero-mini-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: var(--card-shadow);
}

.hero-mini-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-mini-card strong {
  font-size: 1rem;
}

.section {
  padding: clamp(3rem, 4vw, 4.5rem) clamp(1.25rem, 5vw, 5rem);
}

.section-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.label-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 62, 165, 0.12);
  color: var(--accent);
}

.section-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-headline h2 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin: 0;
}

.section-headline p {
  color: var(--muted);
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.feature-card .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  position: relative;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  min-height: 200px;
  overflow: hidden;
  padding: 1.2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 19, 26, 0.05), rgba(18, 19, 26, 0.7));
}

.category-card h3,
.category-card span {
  position: relative;
  z-index: 1;
}

.category-card span {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
}

.category-card button {
  margin-top: 0.8rem;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  width: fit-content;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.product-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.product-meta h3 {
  margin: 0;
  font-size: 1.15rem;
}

.product-meta p {
  margin: 0;
  color: var(--muted);
}

.product-meta .price {
  font-weight: 600;
  font-size: 1.2rem;
}

.color-dots {
  display: flex;
  gap: 0.3rem;
}

.color-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-group button {
  flex: 1;
}

.featured-editorial {
  background: linear-gradient(135deg, rgba(255, 62, 165, 0.15), rgba(0, 212, 255, 0.15));
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  align-items: center;
}

.editorial-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 100%;
  object-fit: cover;
}

.editorial-content h3 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}

.editorial-content ul {
  padding-left: 1rem;
  color: var(--muted);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid var(--border);
}

.rating {
  color: var(--accent3);
  font-size: 0.9rem;
}

.newsletter {
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 3vw, 3rem);
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(130deg, var(--accent), var(--accent2));
  z-index: -1;
}

.newsletter form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter input {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  width: min(320px, 100%);
  font-size: 1rem;
}

.newsletter button {
  min-width: 180px;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin-top: 1rem;
}

.site-footer {
  background: #090b13;
  color: #fff;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100%;
  width: min(320px, 80vw);
  background: #fff;
  box-shadow: -10px 0 35px rgba(18, 19, 26, 0.35);
  transition: right 0.3s ease;
  z-index: 120;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drawer.open {
  right: 0;
}

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer nav a {
  font-weight: 600;
  font-size: 1.1rem;
}

.drawer .social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 110;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  z-index: 130;
}

.search-modal.active {
  visibility: visible;
  opacity: 1;
}

.search-modal .search-box {
  background: #fff;
  padding: 1rem;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  display: flex;
  gap: 0.5rem;
}

.search-modal input {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  flex: 1;
}

.quick-view {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 140;
}

.quick-view.active {
  display: flex;
}

.quick-view-content {
  background: #fff;
  border-radius: var(--radius-lg);
  width: min(960px, 95vw);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.quick-view-content img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  min-height: 260px;
}

.quick-view-content h3 {
  margin: 0;
}

.quick-view-content .color-dots {
  margin-top: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.reveal {
  opacity: 1;
  transform: translateY(20px);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.reveal.visible {
  transform: translateY(0);
}

.newsletter input:invalid {
  border-color: #ff3ea5;
}

.filters-button {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 960px) {
  .header-inner {
    padding: 0.8rem 1.25rem;
  }

  nav.desktop-nav {
    display: none;
  }

  .header-actions .icon-button:not(.cart-icon) {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 1.5rem 4.5rem;
  }

  .hero-mini-carousel {
    left: 1rem;
    right: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .drawer {
    width: 100%;
  }

  .filters-button {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Shop page structure */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.filter-sidebar {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-group h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-group button {
  width: 100%;
  margin-top: 0.5rem;
  border: none;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.6rem 0.8rem;
  text-align: left;
  border: 1px solid var(--border);
}

.filter-group button.active,
.filter-drawer .drawer-panel button.active {
  border-color: var(--accent);
  background: rgba(255, 62, 165, 0.08);
}

.filter-group .price-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: flex-end;
}

.filter-drawer.active {
  display: flex;
}

.filter-drawer .drawer-panel {
  width: 100%;
  max-height: 80%;
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 1.5rem;
  overflow-y: auto;
}

.shop-results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.shop-results select {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
}

.product-grid-shop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pagination button {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: #fff;
  cursor: pointer;
}

/* Product page */
.product-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-gallery {
  display: grid;
  gap: 0.8rem;
}

.product-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
}

.product-gallery-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.product-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
}

.product-thumbnails button {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  background: transparent;
}

.product-thumbnails img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 16px;
}

.product-details h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 0.8rem;
}

.product-details .price {
  font-size: 1.5rem;
  font-weight: 600;
}

.product-details .swatches {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.product-details .swatches button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}

.product-details .swatches button.active {
  border-color: var(--accent);
}

.product-details .sizes {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.product-details .sizes button {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  background: #fff;
}

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

.qty-stepper button {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.4rem 0.8rem;
  background: #fff;
  cursor: pointer;
}

.accordion {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 1rem;
  overflow: hidden;
}

.accordion button {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  padding: 0 1rem 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  display: none;
}

.accordion-content.active {
  display: block;
}

.you-may-also {
  margin-top: 2rem;
}

.you-may-also .scroll-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.scroll-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.you-may-also .card {
  min-width: 220px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border);
}

/* Collections */
.collection-block {
  margin-bottom: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.collection-block .collection-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.collection-hero div {
  border-radius: var(--radius-md);
}

.collection-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.collection-grid .mini-card {
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.blog-card img {
  height: 160px;
  object-fit: cover;
}

.blog-card .blog-body {
  padding: 1rem;
}

.blog-card .tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.timeline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.timeline-step {
  flex: 1;
  min-width: 160px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border);
}

.timeline-step h4 {
  margin: 0;
}

.timeline-step p {
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  font-size: 1rem;
}

.contact-details {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

/* Cart */
.cart-layout {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(18, 19, 26, 0.05);
  padding: 0.8rem 0;
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-row strong {
  font-size: 1rem;
}

.cart-actions span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  text-align: left;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(18, 19, 26, 0.05);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-actions {
  display: flex;
  gap: 0.3rem;
}

.remove-button {
  border: none;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
}

.checkout-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.suggested-row {
  margin-top: 2rem;
}

.suggested-row .scroll-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}

.suggested-row .card {
  min-width: 200px;
  border-radius: 18px;
  background: #fff;
  padding: 1rem;
  border: 1px solid var(--border);
}

/* Utilities */
.hidden {
  display: none !important;
}

.no-scroll {
  overflow: hidden;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}

main {
  display: block;
  visibility: visible;
  opacity: 1;
  padding-top: 1rem;
}
