@font-face {
  font-family: 'Akkurat';
  src: url('Akkurat.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Akkurat", -apple-system, BlinkMacSystemFont, system-ui,
    "SF Pro Text", "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

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

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px 40px;
}

.site-header {
  border-bottom: 1px solid #e5e5e5;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

body {
  padding-top: 80px;
}

.site-header-inner {
  display: flex;
  align-items: center;
  padding-block: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 32px;
}

.logo img {
  height: 54px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  font-size: 13px;
}

.header-actions-mobile {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cart {
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid #000000;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  background-color: #ffffff;
  transition: background-color 0.2s ease;
}

.nav-cart:active {
  background-color: #f5f5f5;
}

.nav-cart-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-cart-count {
  font-size: 11px;
  font-weight: 500;
  background-color: #000000;
  color: #ffffff;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 4px;
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #000000;
  background-color: #ffffff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  transition: background-color 0.18s ease, transform 0.08s ease;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 16px;
  height: 1px;
  background-color: #000000;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.nav-toggle:active {
  background-color: #f5f5f5;
  transform: translateY(1px);
}

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page[data-page="home"] .hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 32px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
  color: #222222;
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.page[data-page="home"] .hero-actions {
  justify-content: center;
}

.btn-primary, .btn-secondary {
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.16em;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  text-align: center;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  transform: translateY(-1px);
}

.btn-add-cart {
  width: 100%;
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  margin-top: 12px;
  transition: background-color 0.2s;
  border-radius: 4px;
}

.btn-add-cart:hover {
  background-color: #333333;
}

.section {
  padding-block: 32px;
  border-top: 1px solid #f0f0f0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 13px;
  max-width: 360px;
  color: #222222;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  border-radius: 16px;
  border: 1px solid #eeeeee;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.22s ease, transform 0.16s ease;
}

.product-card:hover {
  border-color: #dcdcdc;
  transform: translateY(-2px);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-image img { width: 100%; height: auto; display: block; }

.product-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-price {
  font-size: 13px;
}

.product-name {
  font-size: 14px;
  margin-top: 4px;
  min-height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-type {
  font-size: 11px;
  color: #555555;
  min-height: 16px;
}

.product-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.product-actions .btn-primary,
.product-actions .btn-secondary {
  flex: 1;
  text-align: center;
  padding: 8px 12px; /* più piccoli su desktop */
  font-size: 11px;
  min-width: 0;
}

.product-actions .btn-primary:active {
  background-color: #222222;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

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

.why-card {
  border-radius: 16px;
  border: 1px solid #eeeeee;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.22s ease, transform 0.16s ease;
  background-color: #f9f9f9;
  text-align: center;
  align-items: center;
}

.why-card:hover {
  border-color: #dcdcdc;
  transform: translateY(-2px);
}

.why-icon {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  border: 1px solid #eeeeee;
}

.why-icon svg {
  width: 32px;
  height: 32px;
}

.why-item-title {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}

.why-item-text {
  font-size: 12px;
  color: #555555;
  line-height: 1.4;
  max-width: 100%;
}

.category-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  text-decoration: none;
  background-color: #f5f5f5;
  transition: transform 0.2s ease;
}

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

.category-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.category-label {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  letter-spacing: -0.02em;
}

.category-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.category-link::after {
  content: "→";
  font-size: 14px;
  transition: transform 0.2s ease;
}

.category-card:hover .category-link::after {
  transform: translateX(4px);
}

.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 11px;
}

.filter-group label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.filter-group select {
  min-width: 130px;
  border-radius: 999px;
  border: 1px solid #dddddd;
  padding: 6px 28px 6px 10px;
  font-size: 12px;
  background-color: #ffffff;
}

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.product-detail-image {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  background: #ffffff;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-detail-image img { width: 100%; height: auto; display: block; }

.product-detail-name {
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.product-detail-price {
  font-size: 18px;
  margin-bottom: 16px;
  color: #222222;
}

.product-detail-short {
  font-size: 14px;
  line-height: 1.5;
  color: #555555;
  margin-bottom: 24px;
}

.product-benefits {
  margin-bottom: 24px;
}

.product-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-benefits li {
  font-size: 13px;
  position: relative;
  padding-left: 16px;
}

.product-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
}

.product-detail-usage {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eeeeee;
}

.product-detail-usage strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.product-detail-usage p {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 16px;
  gap: 12px;
}

.qty-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background-color 0.2s;
}

.qty-button:hover {
  background-color: #f5f5f5;
}

.qty-value {
  font-size: 14px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

/* Cart Page */
.cart-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.cart-thumb {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item-controls button {
  background: none;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 12px;
}

.cart-item-price {
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}

.cart-summary {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
}

.cart-summary-row.total {
  border-top: 1px solid #eeeeee;
  padding-top: 16px;
  font-weight: 600;
  font-size: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 13px;
}

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 40px 0;
  margin-top: auto;
  background-color: #ffffff;
}

.site-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 12px;
  color: #666666;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.site-footer-credit {
  margin-top: 12px;
  font-size: 11px;
  color: #999999;
}

.site-footer-credit a {
  color: inherit;
  text-decoration: underline;
}

/* WhatsApp Floating */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  z-index: 100;
  transition: transform 0.2s ease;
}

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

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

/* Cart Banner */
.cart-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: #000000;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: calc(100% - 40px);
  max-width: 400px;
}

.cart-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cart-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.cart-banner-text {
  font-size: 14px;
  font-weight: 500;
}

.cart-banner-actions {
  display: flex;
  gap: 10px;
  width: 100%;
}

.cart-banner-btn-primary,
.cart-banner-btn-secondary {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.cart-banner-btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.cart-banner-btn-secondary {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: 13px;
  color: #222222;
  text-align: center;
  line-height: 1.5;
  max-width: 600px;
}

.cookie-btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-btn:hover {
  background-color: #333333;
}

/* Newsletter & Social */
.newsletter-section {
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 40px 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
}

.social-icons svg {
  width: 20px; /* Smaller icons as requested */
  height: 20px;
}

.newsletter-content {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.newsletter-text {
  font-size: 13px;
  color: #555555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.newsletter-btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 767px) {
  .newsletter-section {
    padding: 32px 16px;
  }
  
  .social-icons svg {
    width: 18px; /* Even smaller on mobile */
    height: 18px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-btn {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .site-header-inner {
    display: flex;
    align-items: center;
    padding-block: 16px;
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-right: 40px;
  }

  .logo img {
    height: 54px;
    width: auto;
    display: block;
  }

  .cookie-banner {
    flex-direction: row;
    justify-content: center;
    padding: 16px 24px;
  }
  
  .cookie-text {
    text-align: left;
    margin-right: 24px;
  }

  .cart-banner-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
  
  .cart-banner-actions {
    width: auto;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    order: 2;
    position: static;
    flex-direction: row;
    background-color: transparent;
    padding: 0;
    width: auto;
    height: auto;
    border-bottom: none;
    justify-content: center;
    flex: 1;
  }

  .main-nav a {
    font-size: 13px;
    padding: 0;
    border-bottom: 1px solid transparent;
  }

  .nav-logo-mobile {
    display: none;
  }

  .header-actions-mobile {
    order: 3;
    margin-left: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

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

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

@media (max-width: 767px) {
  body {
    padding-top: 60px; /* Smaller header on mobile */
  }

  .site-header-inner {
    padding-inline: 16px;
    padding-block: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 44px;
  }

  .logo {
    order: 1; /* Logo on the left */
  }

  .header-actions-mobile {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 2; /* Actions on the right */
  }

  .nav-toggle {
    display: flex;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    order: 1; /* Toggle before cart */
    color: #000000;
  }

  .nav-toggle svg {
    stroke: #000000; /* linee hamburger nere su mobile */
  }
  .nav-toggle svg line {
    stroke: #000000;
  }

  .nav-cart {
    height: 36px;
    padding: 0 12px;
    order: 2; /* Cart at the very end */
    border: 1px solid #000000;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .main-nav {
    display: flex;
    position: fixed;
    top: 0; /* copre anche l'header */
    right: 0;
    bottom: 0;
    width: 70%; /* Sidebar width */
    max-width: 300px;
    background-color: #ffffff;
    flex-direction: column;
    padding: 80px 24px 40px; /* spazio per logo e link */
    gap: 24px;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.16);
    overflow-y: auto;
  }

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

  .main-nav a {
    position: relative;
    z-index: 1001; /* assicura che i link restino sopra eventuali effetti */
  }

  /* Blur del contenuto quando il menu è aperto (il menu resta nitido) */
  .page > * {
    transition: filter 0.3s ease;
  }

  body.nav-open .page > * {
    filter: blur(8px);
  }

  .nav-logo-mobile {
    display: block;
    margin-bottom: 20px;
  }
  .nav-logo-mobile img {
    height: 36px;
    width: auto;
  }

  .main-nav a {
    font-size: 16px; /* Slightly smaller nav links */
    padding-bottom: 10px;
  }

  .container {
    padding: 16px 16px 32px; /* Reduced container padding */
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-title {
    font-size: 26px; /* Smaller hero title */
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.5;
  }

  .btn-primary, .btn-secondary {
    padding: 12px 20px; /* Smaller buttons globally on mobile */
    font-size: 12px;
    min-width: 140px;
  }

  .layout-two {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-detail-image {
    margin: 0 auto;
    max-width: 100%; /* Allow full width */
    border-radius: 12px;
  }

  .product-detail-name {
    font-size: 20px;
    margin-top: 16px;
  }

  .product-detail-price {
    font-size: 16px;
  }
  
  /* Mobile product grid adjustments */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px; /* Tighter gap for 3 cols */
  }
  
  .product-card {
    padding: 6px; /* Minimal padding */
    border-radius: 8px;
  }
  
  .product-image {
    border-radius: 6px;
    margin-bottom: 6px;
  }

  .product-meta-top {
    margin-bottom: 2px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .product-tag {
    font-size: 8px;
  }
  
  .product-name {
    font-size: 10px;
    line-height: 1.2;
    margin-top: 4px;
    min-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  .product-type {
    font-size: 9px;
    margin-bottom: 4px;
    display: none; /* Hide type on mobile to save space */
  }
  
  .product-price {
    font-size: 10px;
    font-weight: 600;
  }

  .product-actions {
    flex-direction: row;
    gap: 4px;
    margin-top: auto;
  }
  
  .product-actions .btn-primary,
  .product-actions .btn-secondary {
    padding: 0;
    font-size: 9px;
    min-width: 0;
    height: 28px;
    border-radius: 4px;
  }

  .product-actions .btn-primary {
    flex: 0 0 28px;
  }
  
  .product-actions .btn-secondary {
    flex: 1;
  }
  
  .btn-icon {
    width: 14px;
    height: 14px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .why-card {
    padding: 14px 14px 16px;
    gap: 10px;
  }
  
  .why-icon {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  .why-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .why-item-title {
    font-size: 11px;
  }
  
  .why-item-text {
    display: block;
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.3;
  }

  .section-title {
    font-size: 16px;
  }

  .filters-bar {
    gap: 8px;
  }

  .filter-group label {
    font-size: 10px;
  }

  .filter-group select {
    font-size: 11px;
    padding: 6px 24px 6px 8px;
    min-width: 100px;
  }

  /* Cart Banner Mobile */
  .cart-banner {
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 12px 16px;
  }
  
  .cart-banner-text {
    font-size: 13px;
  }
  
  .cart-banner-btn-primary,
  .cart-banner-btn-secondary {
    padding: 6px 10px;
    font-size: 11px;
  }
}
