/** Shopify CDN: Minification failed

Line 2457:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:404 (INDEX:0) */
.error-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.error-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
}

.error-illustration {
  position: relative;
  margin-bottom: 2rem;
}

.error-code-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.error-digit {
  font-size: 8rem;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
  font-family: 'Arial Black', Arial, sans-serif;
}

.error-magnifying-glass {
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
}

.search-icon {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.error-content {
  position: relative;
  z-index: 2;
}

.error-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.error-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 2rem 0;
}

.error-search {
  margin-bottom: 2rem;
}

.search-form {
  display: flex;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
}

.search-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  color: #0f172a;
  background: #fff;
  transition: all 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.search-input::placeholder {
  color: #94a3b8;
}

.search-btn {
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.search-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.action-btn.primary {
  background: #0ea5e9;
  color: #fff;
  border: 2px solid #0ea5e9;
}

.action-btn.primary:hover {
  background: #0284c7;
  border-color: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.action-btn.secondary {
  background: #fff;
  color: #475569;
  border: 2px solid #e2e8f0;
}

.action-btn.secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.popular-categories {
  text-align: left;
  background: #f8fafc;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
}

.popular-categories h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 1rem 0;
  text-align: center;
}

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

.category-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.category-card:hover {
  background: #f8fafc;
  border-color: #0ea5e9;
  color: #0ea5e9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.1);
}

.category-card svg {
  flex-shrink: 0;
  color: inherit;
}

/* Responsive Design */
@media (max-width: 640px) {
  .error-container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .error-digit {
    font-size: 6rem;
  }
  
  .error-magnifying-glass svg {
    width: 90px;
    height: 90px;
  }
  
  .error-title {
    font-size: 1.5rem;
  }
  
  .error-description {
    font-size: 1rem;
  }
  
  .search-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .action-btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .error-container {
    padding: 1.5rem 1rem;
  }
  
  .error-digit {
    font-size: 4rem;
  }
  
  .error-magnifying-glass svg {
    width: 60px;
    height: 60px;
  }
  
  .popular-categories {
    padding: 1rem;
  }
}
/* END_SECTION:404 */

/* START_SECTION:band (INDEX:9) */
.band-section {
  width: 100vw;
  background: linear-gradient(90deg, #002855 100%, #00e6e6 0%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  font-family: inherit;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
  box-shadow: 0 4px 24px 0 rgba(0, 179, 252, 0.08);
  overflow: hidden;
}
.band-items-wrapper {
  display: flex;
  gap: 3.5rem;
  animation: band-slide-in 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  animation-fill-mode: forwards;
}
.band-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.7rem 1.5rem 0.7rem 1.1rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  min-width: 120px;
  opacity: 0;
  transform: translateY(30px);
  animation: band-fade-in 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.band-item:nth-child(1) { animation-delay: 0.2s; }
.band-item:nth-child(2) { animation-delay: 0.4s; }
.band-item:nth-child(3) { animation-delay: 0.6s; }
.band-item:nth-child(4) { animation-delay: 0.8s; }
.band-item:nth-child(5) { animation-delay: 1.0s; }

.band-item i {
  font-size: 1.5rem;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
}
  .band-inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 1.25rem;
  }
  /* make text wrap nicely when content is too long */
.band-item-text {
  white-space: nowrap;
}
@media (max-width: 900px) {
  .band-items-wrapper {
    gap: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }
  .band-item {
    font-size: 0.7rem;
    gap: 0.35rem;
    min-width: 0;
    flex: 1;
    padding: 0.5rem 0.25rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .band-item i {
    font-size: 1.1rem;
  }
  .band-item-text {
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .band-section {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .band-item {
    font-size: 0.62rem;
  }
  .band-item i {
    font-size: 0.95rem;
  }
}

@keyframes band-slide-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes band-fade-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
/* marquee animation for large number of items */
@keyframes band-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* END_SECTION:band */

/* START_SECTION:blog (INDEX:10) */
.blog-section {
  padding: 4rem 0;
  height: 50vh;
  background: #fafbfc;
}

.blog-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-section__title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e3a8a;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.blog-section__description {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-article {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-article:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-article__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.blog-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-article:hover .blog-article__image img {
  transform: scale(1.05);
}

.blog-article__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

.blog-article__date {
  font-weight: 500;
}

.blog-article__author {
  position: relative;
}

.blog-article__author::before {
  content: '•';
  margin-right: 0.75rem;
  color: #cbd5e1;
}

.blog-article__title {
  margin: 0 0 1rem 0;
  flex: 1;
}

.blog-article__title a {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.blog-article__title a:hover {
  color: #1e3a8a;
}

.blog-article__excerpt {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-article__read-more {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.blog-article__read-more:hover {
  color: #0f766e;
}

.blog-section__pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.blog-section__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #64748b;
}

.blog-section__empty h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #475569;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-section {
    padding: 3rem 0;
  }
  
  .blog-section__container {
    padding: 0 1rem;
  }
  
  .blog-section__title {
    font-size: 2rem;
  }
  
  .blog-articles {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-article__content {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .blog-section__title {
    font-size: 1.75rem;
  }
  
  .blog-section__description {
    font-size: 1rem;
  }
  
  .blog-article__content {
    padding: 1rem;
  }
}
/* END_SECTION:blog */

/* START_SECTION:cart (INDEX:13) */
.delivery-cutoff-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #475569;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.delivery-cutoff-notice svg {
  color: #0ea5e9;
  flex-shrink: 0;
}
.custom-page-header {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
  min-height: 80px;
  height: 80px;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
}
.custom-page-header__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.custom-page-header__content--left { text-align: left; }
.custom-page-header__breadcrumb { font-size: 0.9rem; color: white; margin-bottom: 0.6rem; opacity: 0.95; text-decoration: none; word-wrap: break-word; overflow-wrap: break-word; }
.custom-page-header__breadcrumb a { font-size: 0.9rem; color: white; margin-bottom: 0.6rem; opacity: 0.95; text-decoration: none; word-wrap: break-word; overflow-wrap: break-word; }
.custom-page-header__title { font-size: 2.25rem; font-weight: 800; font-family: 'Poppins', Arial, sans-serif; letter-spacing: -0.5px; line-height: 1.2; word-wrap: break-word; overflow-wrap: break-word; max-width: 100%; }

.cart-container { max-width: 1200px; margin: 0 auto 2rem auto; padding: 1rem; width: 100%; max-width: 100vw; box-sizing: border-box; overflow-x: hidden; }
.cart-layout { display: grid; grid-template-columns: 1fr 400px; gap: 2rem; width: 100%; box-sizing: border-box; }

.cart-items { background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 20px 40px rgba(15,23,42,0.08); }
.cart-items-header { padding: 1.5rem 2rem; border-bottom: 1px solid #f1f5f9; }
.cart-items-header h2 { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin: 0; }
.cart-items-list { padding: 0; }

.cart-item { display: flex; gap: 1.5rem; padding: 1.5rem 2rem 1.5rem 4rem; border-bottom: 1px solid #f1f5f9; position: relative; transition: all 0.2s ease; }
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #f8fafc; }

/* 6. Larger image */
.cart-item-image { flex-shrink: 0; width: 160px; height: 130px; border-radius: 12px; overflow: hidden; background: #f8fafc; border: 1px solid #e2e8f0; display: flex; align-items: center; justify-content: center; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.cart-item-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #94a3b8; }

.cart-item-details { flex: 1; display: flex; justify-content: space-between; align-items: flex-start; }
.cart-item-info { flex: 1; }
.cart-item-title { margin: 0 0 0.5rem 0; font-size: 1.05rem; font-weight: 600; line-height: 1.4; word-wrap: break-word; overflow-wrap: break-word; }
.cart-item-title a { color: #0f172a; text-decoration: none; transition: color 0.2s ease; }
.cart-item-title a:hover { color: #0ea5e9; }

.cart-item-variants { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.cart-item-variant { background: #f1f5f9; color: #475569; padding: 0.25rem 0.75rem; border-radius: 6px; font-size: 0.875rem; font-weight: 500; }

/* 7. Edit link */
.cart-item-edit-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; color: #0ea5e9; text-decoration: none; margin-bottom: 0.5rem; }
.cart-item-edit-link:hover { text-decoration: underline; }

/* Savings badge */
.cart-item-savings { display: inline-block; font-size: 0.78rem; background: #e0f2fe; color: #0369a1; border-radius: 4px; padding: 2px 8px; font-weight: 500; margin-bottom: 0.5rem; }

.cart-item-sku { font-size: 0.875rem; color: #64748b; margin-bottom: 1rem; }
.cart-item-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; min-width: 160px; }

.quantity-control { display: flex; align-items: center; border: 1px solid #e2e8f0; border-radius: 6px; background: #fff; overflow: hidden; }
.qty-btn { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: #f8fafc; border: none; cursor: pointer; font-weight: 600; font-size: 14px; color: #475569; transition: all 0.2s ease; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.qty-btn:hover { background: #0ea5e9; color: #fff; }
.qty-btn.disabled, .qty-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.quantity-input { width: 44px; height: 28px; text-align: center; border: none; font-weight: 600; font-size: 0.95rem; background: transparent; color: #0f172a; -webkit-appearance: none; appearance: none; }
.quantity-input:focus { outline: none; background: #f8fafc; }

.cart-item-price { text-align: right; }
.cart-item-original-price { display: block; font-size: 0.875rem; color: #94a3b8; text-decoration: line-through; margin-bottom: 0.25rem; }
.cart-item-final-price { display: block; font-size: 1.125rem; font-weight: 700; color: #0f172a; }
.cart-item-line-price { font-size: 0.875rem; color: #64748b; margin-top: 0.25rem; }

.cart-item-remove { position: absolute; top: 50%; left: 1rem; transform: translateY(-50%); background: none; border: none; color: #94a3b8; cursor: pointer; padding: 0.5rem; border-radius: 6px; transition: all 0.2s ease; z-index: 2; }
.cart-item-remove:hover { background: #fef2f2; color: #ef4444; }
.cart-item-remove i { font-size: 16px; line-height: 1; }

/* Cart Summary */
.cart-summary { position: sticky; top: 2rem; height: fit-content; }
.cart-summary-card { background: #fff; border-radius: 16px; border: 1px solid #e2e8f0; padding: 1.5rem; box-shadow: 0 20px 40px rgba(15,23,42,0.08); }
.cart-summary-card h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin: 0 0 1.25rem 0; }

/* 3. Express checkout */
.express-checkout-section { margin-bottom: 0.75rem; }
.express-checkout-section .shopify-payment-button { display: flex; flex-direction: column; gap: 8px; }
.express-checkout-section .shopify-payment-button__button { border-radius: 10px !important; min-height: 42px !important; font-size: 0.9rem !important; }
.express-divider { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; }
.express-divider::before, .express-divider::after { content: ''; flex: 1; height: 1px; background: #e2e8f0; }
.express-divider span { font-size: 0.8rem; color: #94a3b8; }

/* 1. Promo code */
.promo-section { margin-bottom: 1rem; }
.promo-label { display: block; font-size: 0.8rem; color: #475569; margin-bottom: 6px; font-weight: 500; }
.promo-row { display: flex; gap: 8px; }
.promo-input { flex: 1; height: 38px; border: 1px solid #e2e8f0; border-radius: 8px; padding: 0 10px; font-size: 0.875rem; color: #0f172a; background: #fff; outline: none; transition: border 0.2s; }
.promo-input:focus { border-color: #0ea5e9; }
.promo-btn { height: 38px; padding: 0 16px; background: #002855; color: #fff; border: none; border-radius: 8px; font-size: 0.875rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.promo-btn:hover { background: #001f3f; }
.promo-feedback { font-size: 0.78rem; margin-top: 4px; min-height: 16px; }
.promo-feedback.success { color: #16a34a; }
.promo-feedback.error { color: #ef4444; }

/* 2. Delivery progress */
.delivery-progress-wrap { background: #f0fdf4; border-radius: 10px; padding: 12px; margin-bottom: 1rem; }
.delivery-progress-label { font-size: 0.8rem; color: #475569; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.delivery-progress-label strong { color: #16a34a; }
.delivery-progress-label svg { color: #16a34a; flex-shrink: 0; }
.delivery-progress-track { height: 6px; background: #d1fae5; border-radius: 3px; overflow: hidden; margin-bottom: 5px; }
.delivery-progress-fill { height: 100%; background: #16a34a; border-radius: 3px; transition: width 0.4s ease; }
.delivery-progress-hint { font-size: 0.72rem; color: #64748b; }

.cart-summary-line { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.95rem; color: #475569; }
.cart-discount { color: #10b981; }
.cart-summary-shipping { padding: 0.75rem 0; border-bottom: 1px solid #f1f5f9; }
.shipping-info { display: flex; align-items: center; gap: 0.5rem; color: #10b981; font-size: 0.875rem; font-weight: 500; }
.cart-summary-total { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 0; font-size: 1.2rem; font-weight: 700; color: #0f172a; border-bottom: 1px solid #f1f5f9; }
.cart-summary-actions { padding-top: 1rem; }

.checkout-btn { width: 100%; background: #002855; color: #fff; border: none; padding: 0.875rem 1.5rem; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.2s ease; margin-bottom: 1rem; min-height: 44px; touch-action: manipulation; }
.checkout-btn:hover { background: #001f3f; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,40,85,0.3); }

/* 4. Trust signals */
.cart-guarantees { padding-top: 1rem; border-top: 1px solid #f1f5f9; display: flex; flex-direction: column; gap: 8px; }
.guarantee-item { display: flex; align-items: center; gap: 8px; color: #475569; font-size: 0.8rem; }
.guarantee-item svg { color: #0ea5e9; flex-shrink: 0; }

/* 10. Recently viewed */
.recently-viewed-section { margin-top: 2.5rem; }
.recently-viewed-title { font-size: 1.1rem; font-weight: 700; color: #0f172a; margin-bottom: 1rem; }
.recently-viewed-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.rv-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.rv-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,23,42,0.1); }
.rv-card-img { aspect-ratio: 4/3; background: #f8fafc; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rv-card-img img { width: 100%; height: 100%; object-fit: contain; }
.rv-card-info { padding: 10px 12px; }
.rv-card-name { font-size: 0.8rem; font-weight: 600; color: #0f172a; line-height: 1.3; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rv-card-price { font-size: 0.8rem; color: #0ea5e9; font-weight: 600; }

/* Empty Cart */
.cart-empty { display: flex; align-items: center; justify-content: center; min-height: 400px; }
.cart-empty-content { text-align: center; max-width: 400px; }
.cart-empty-icon { color: #cbd5e1; margin-bottom: 1.5rem; }
.cart-empty h2 { font-size: 1.5rem; font-weight: 700; color: #0f172a; margin: 0 0 0.5rem 0; }
.cart-empty p { color: #64748b; margin-bottom: 2rem; }
.continue-shopping-btn { display: inline-flex; align-items: center; background: #0ea5e9; color: #fff; text-decoration: none; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; transition: all 0.2s ease; }
.continue-shopping-btn:hover { background: #0284c7; transform: translateY(-1px); }

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

@media (max-width: 1024px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .recently-viewed-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .collection-page-header {
  min-height: unset !important;
  height: auto !important;
  padding: 1.25rem 1rem !important;
}
  .cart-container {
    padding: 0.75rem;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
  }
  .cart-items {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .cart-item {
    flex-direction: row;
    gap: 0.75rem;
    padding: 0.75rem;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
  }
  .cart-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    align-self: flex-start;
  }
  .cart-item-details {
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .cart-item-info {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  .cart-item-title {
    font-size: 0.8rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cart-item-variant {
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
  }
  .cart-item-edit-link {
    font-size: 0.72rem;
  }
  .cart-item-sku {
    font-size: 0.72rem;
    margin-bottom: 0.25rem;
  }
 .cart-item-controls {
  flex-direction: column;
  align-items: flex-start;
  min-width: auto;
  width: 100%;
  box-sizing: border-box;
  gap: 0.4rem;
}
  .cart-item-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    left: auto;
    transform: none;
    padding: 0.25rem;
    min-height: unset;
    min-width: unset;
  }
  .cart-item-remove i {
    font-size: 13px;
  }
  .cart-item-final-price {
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .cart-item-price {
  flex-shrink: 0;
  text-align: left;
}
  .quantity-control {
    flex-shrink: 0;
  }
  .qty-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 1rem;
  }
  .quantity-input {
    width: 30px;
    min-height: 28px;
    font-size: 0.9rem;
    padding: 0;
  }
  .checkout-btn {
    min-height: 48px;
  }
  .recently-viewed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .custom-page-header {
  min-height: unset !important;
  height: auto !important;
}
  .custom-page-header { min-height: 120px; height: 120px; margin-bottom: 1.5rem; }
  .custom-page-header__title { font-size: 1.6rem; }
  .cart-container { padding: 0.75rem; }
  .cart-items-header { padding: 1.25rem 1rem; }
  .cart-items-header h2 { font-size: 1.25rem; }
  .cart-item { padding: 0.75rem; }
  .cart-item-image { width: 90px; height: 80px; }
  .cart-summary-card { padding: 1.25rem 1rem; }
  .recently-viewed-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .custom-page-header__title { font-size: 2rem; }
}
@media (max-width: 600px) {
  .custom-page-header__title { font-size: 1.2rem; }
  .custom-page-header__breadcrumb { font-size: 0.85rem; }
}
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:14) */
.product-badge--new {
  background: #002855;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.multi-option-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fff;
  color: #001f3f;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 0;
  z-index: 2;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .multi-option-badge {
    font-size: 0.5rem;
    padding: 3px 7px;
    letter-spacing: 0.03em;
  }
}
.product-spec-badge--connectivity {
  border: 2px solid #0ea5e9 !important;
  color: #0ea5e9;
  background: #f0f9ff !important;
}
.color-swatch--static {
  cursor: default;
  pointer-events: none;
}
.product-spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-spec-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 0 !important; 
  background: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.product-spec-badge--colour {
  border: 2px solid #0ea5e9 !important;
  color: #0ea5e9;
  background: #f0f9ff !important;
}

.product-spec-badge--keyboard {
  border: 2px solid #0ea5e9 !important;
  color: #0ea5e9;
  background: #f0f9ff !important;
}
.collection-sold-out-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.collection-sold-out-icon {
  font-size: 3.5rem;
  line-height: 1;
}

.collection-sold-out-message h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #001f3f;
  margin: 0;
}

.collection-sold-out-message p {
  font-size: 1rem;
  color: #64748b;
  max-width: 460px;
  line-height: 1.7;
  margin: 0;
}

.collection-sold-out-btn {
  display: inline-flex;
  align-items: center;
  background: #0e5175;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 1.8rem;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: opacity 0.2s ease;
}

.collection-sold-out-btn:hover {
  opacity: 0.9;
  background: #0ea5e9;
}  

a.color-swatch {
  display: inline-block;
  text-decoration: none;
}

a.color-swatch:hover {
  transform: scale(1.1);
  border-color: #0ea5e9;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.color-swatch--unavailable {
  opacity: 0.5;
  position: relative;
}

.color-swatch--unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  background: #6b7280;
  transform: rotate(-45deg);
  transform-origin: center;
  border-radius: 1px;
}
.collection-page-header {
  width: 100%;
  min-height: 160px;
  padding: 1.5rem 4vw 1.5rem 4vw;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.collection-page-header__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.collection-page-header__content--left {
  text-align: left;
}
.collection-page-header__breadcrumb {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
  opacity: 0.95;
  text-decoration: none;
}
.collection-page-header__breadcrumb a {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
  opacity: 0.95;
  text-decoration: none;
}
.collection-page-header__title {
  font-size: 2.2rem;
  font-weight: 500 !important;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.01em !important;
}
.collection-page-header__subtitle {
  font-size: 1.1rem;
  color: #eaf6fa;
  font-weight: 500;
  max-width: 1100px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .collection-page-header {
    padding: 2rem 2vw 2rem 2vw;
  }
  .collection-page-header__title {
    font-size: 2rem;
  }
  .collection-page-header__subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .collection-page-header {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
  .collection-page-header__title {
    font-size: 1.8rem;
  }
  .collection-page-header__subtitle {
    font-size: 1rem;
  }
  .collection-page-header__breadcrumb {
    font-size: 0.9rem;
  }
}

.collection-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2rem 2vw;
  box-sizing: border-box;
  font-family: inherit;
  background: #ffffff;
}

.collection-header {
  margin-bottom: 3rem;
  text-align: center;
}

.collection-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #003333;
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.collection-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.text-muted {
  color: #6c757d !important;
  font-weight: 100;
  font-size: 0.8rem;
}
.collection-filters {
  background: #ffffff;
  border-radius: 0;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-right: 1px solid #f1f5f9;
}

.filter-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

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

.filter-group-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

.filter-clear {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.filter-clear:hover {
  background: #c82333;
}

.filter-toggle {
  margin-left: auto;
  font-size: 0.8rem;
  color: #00c6fb;
  transition: transform 0.2s ease;
}

.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-input {
  flex: 1;
  padding: 0.4rem 0.6rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 0.9rem;
}

.price-separator {
  color: #6c757d;
  font-weight: 600;
}

.price-range-slider {
  position: relative;
  height: 20px;
}

.price-slider {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #dee2e6;
  outline: none;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #00c6fb;
  border-radius: 50%;
  cursor: pointer;
}

.filter-summary {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #e3f2fd;
  border-radius: 8px;
  text-align: center;
}

.filter-summary-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1565c0;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.filter-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.3rem 0;
}

.filter-checkbox {
  margin-right: 0.8rem;
  accent-color: #00c6fb;
}

.filter-label {
  flex: 1;
  font-size: 0.9rem;
  color: #495057;
}

.filter-group[data-filter-type="availability"] .filter-count {
  display: inline-block;
}

.filter-group:not([data-filter-type="availability"]) .filter-count {
  display: none;
}

.filter-count {
  background: #e9ecef;
  color: #6c757d;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  min-width: 24px;
  text-align: center;
}

.color-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.color-option {
  cursor: pointer;
}

.color-checkbox {
  display: none;
}

.color-swatch {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #dee2e6;
  transition: all 0.05s ease;
}

.color-checkbox:checked + .color-swatch {
  border-color: #00c6fb;
  box-shadow: 0 0 0 2px rgba(0, 198, 251, 0.2);
}

.color-swatch-with-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.color-swatch-with-text:hover {
  background-color: rgba(0, 198, 251, 0.1);
}

.color-label {
  font-size: 0.9rem;
  color: #495057;
  font-weight: 500;
}

.color-checkbox:checked + .color-swatch-with-text {
  background-color: rgba(0, 198, 251, 0.15);
  padding: 0.4em;
  transition: background-color 0.2s ease;
}

.color-checkbox:checked + .color-swatch-with-text .color-swatch {
  border-color: #00c6fb;
  box-shadow: 0 0 0 2px rgba(0, 198, 251, 0.3);
}

.color-checkbox:checked + .color-swatch-with-text .color-label {
  color: #00c6fb;
  font-weight: 600;
}

.collection-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.collection-product-card {
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: none;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.collection-product-card:hover {
  transform: none;
  box-shadow: none;
}

.collection-product-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.collection-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease;
}

.collection-product-card:hover .collection-product-image {
  transform: scale(1.05);
}

.collection-badge-over-image {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0ea5e9;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #0ea5e9;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.collection-product-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Color Swatches */
.collection-product-colors {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.color-swatch:hover {
  transform: scale(1.1);
  border-color: #0ea5e9;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.color-swatch:active {
  transform: scale(0.95);
}

/* Color mapping for common Apple colors */
.color-swatch[data-color="space-grey"],
.color-swatch[data-color="space-gray"] {
  background-color: #6e6e73 !important;
}

.color-swatch[data-color="silver"] {
  background-color: #c0c0c0 !important;
}

.color-swatch[data-color="gold"] {
  background-color: #D4C9B1 !important;
}

.color-swatch[data-color="rose-gold"],
.color-swatch[data-color="rose-gold"] {
  background-color: #e8b4b8 !important;
}

.color-swatch[data-color="midnight"] {
  background-color: #2c3441 !important;
}

.color-swatch[data-color="starlight"] {
  background-color: #f5f5dc !important;
}

.color-swatch[data-color="blue"] {
  background-color: #95bee9ff !important;
}

.color-swatch[data-color="purple"] {
  background-color: #c9a3dcff !important;
}

.color-swatch[data-color="pink"] {
  background-color: #f6a4ccff !important;
}

.color-swatch[data-color="red"] {
  background-color: #ff3b30 !important;
}

.color-swatch[data-color="orange"] {
  background-color: #ff9500 !important;
}

.color-swatch[data-color="yellow"] {
  background-color: #f9e48fff !important;
}

.color-swatch[data-color="green"] {
  background-color: #bdf4cbff !important;
}

.color-swatch[data-color="mint"] {
  background-color: #00c7be !important;
}

.color-swatch[data-color="teal"] {
  background-color: #30b0c7 !important;
}

.color-swatch[data-color="cyan"] {
  background-color: #32d74b !important;
}

.color-swatch[data-color="indigo"] {
  background-color: #5856d6 !important;
}

.color-swatch[data-color="white"] {
  background-color: #ffffff !important;
  border-color: #d1d5db !important;
}

.color-swatch[data-color="black"] {
  background-color: #000000 !important;
}

.color-swatch[data-color="black-titanium"] {
  background-color: #333333 !important;
}

.color-swatch[data-color="blue-titanium"] {
  background-color: #4a6274 !important;
}
.color-swatch[data-color="white-titanium"] {
  background-color: #e8e4dc !important;
  border-color: #d1d5db !important;
}
.color-swatch[data-color="natural-titanium"] {
  background-color: #b0a090 !important;
}
.color-swatch[data-color="desert-titanium"] {
  background-color: #c5a882 !important;
}
.color-swatch[data-color="starlight"] {
  background-color: #f2efe7 !important;
  border-color: #d1d5db !important;
}
.color-swatch[data-color="space-black"] {
  background-color: #2e2e2e !important;
}
.color-swatch[data-color="deep-purple"] {
  background-color: #4b3b6e !important;
}
.color-swatch[data-color="alpine-green"] {
  background-color: #4b6b52 !important;
}
.color-swatch[data-color="graphite"] {
  background-color: #5c5c5c !important;
}
.color-swatch[data-color="pacific-blue"] {
  background-color: #2e6b8a !important;
}
.color-swatch[data-color="deep-blue"] {
  background-color: #003153 !important;
}
.color-swatch[data-color="cosmic-orange"] {
  background-color: #c85a2a !important;
}
.color-swatch[data-color="black-slate"],
.color-swatch[data-color="black-and-slate"] {
  background-color: #2c2c2e !important;
}
.color-swatch[data-color="white-silver"],
.color-swatch[data-color="white-and-silver"] {
  background-color: #e8e8e8 !important;
  border-color: #d1d5db !important;
}
.color-swatch[data-color="sky-blue"] {
  background-color: #5eb8e8 !important;
}
.color-swatch[data-color="matte-black"] {
  background-color: #000000 !important;
}
.color-swatch[data-color="bora-purple"] {
  background-color: #c8a4d4 !important;
}
.color-swatch[data-color="phantom-silver"] {
  background-color: #c8c8cc !important;
}
.color-swatch[data-color="phantom-green"] {
  background-color: #2d6a4f !important;
}
.color-swatch[data-color="cosmic-black"] {
  background-color: #1a1a1a !important;
}
.color-swatch[data-color="mystic-white"] {
  background-color: #f5f5f0 !important;
  border-color: #d1d5db !important;
}
.color-swatch[data-color="mystic-bronze"] {
  background-color: #b5926b !important;
}
.color-swatch[data-color="mystic-black"] {
  background-color: #1c1c1e !important;
}
.color-swatch[data-color="cloud-pink"] {
  background-color: #f4c2c2 !important;
}
.color-swatch[data-color="cloud-blue"] {
  background-color: #a8c8e8 !important;
}
.color-swatch[data-color="cosmic-grey"],
.color-swatch[data-color="cosmic-gray"] {
  background-color: #8e8e93 !important;
}
.color-swatch[data-color="titanium-orange"] {
  background-color: #d46a2a !important;
}
.color-swatch[data-color="titanium-green"] {
  background-color: #4a7c59 !important;
}
.color-swatch[data-color="titanium-blue"] {
  background-color: #4a6274 !important;
}
.color-swatch[data-color="titanium-black"] {
  background-color: #2c2c2e !important;
}
.color-swatch[data-color="titanium-gray"],
.color-swatch[data-color="titanium-grey"] {
  background-color: #8a8a8e !important;
}
.color-swatch[data-color="titanium-violet"] {
  background-color: #7d6b9e !important;
}
.color-swatch[data-color="titanium-yellow"] {
  background-color: #d4a843 !important;
}
.color-swatch[data-color="navy"] {
  background-color: #1b2a4a !important;
}
.color-swatch[data-color="phantom-black"] {
  background-color: #1a1a1a !important;
}
.color-swatch[data-color="icy-blue"] {
  background-color: #b8d4e8 !important;
}
.color-swatch[data-color="jet-black"] {
  background-color: #0a0a0a !important;
}
.color-swatch[data-color="blue-shadow"] {
  background-color: #3a5068 !important;
}
.color-swatch[data-color="lavender"] {
  background-color: #c8b8d8 !important;
}
.color-swatch[data-color="cream"] {
  background-color: #f5f0e8 !important;
  border-color: #d1d5db !important;
}
.color-swatch[data-color="silver-shadow"] {
  background-color: #a8a8b0 !important;
}
.color-swatch[data-color="mint"] {
  background-color: #98d4c0 !important;
}
.collection-product-title {
  margin-bottom: 0.8rem;
}
.colour-group-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.3rem 0;
}

.colour-group-swatch-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.colour-group-swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #dee2e6;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.filter-checkbox:checked + .colour-group-swatch-wrap .colour-group-swatch {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.25);
}

.filter-checkbox:checked + .colour-group-swatch-wrap .filter-label {
  color: #0ea5e9;
  font-weight: 600;
}

.product-title-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  display: block;
}

.product-title-link:hover {
  color: #0b6b66;
}

.collection-product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b6b66;
}

.collection-pagination {
  grid-column: 1 / -1;
  margin-top: 2rem;
  text-align: center;
}

/* Grade badge styles */
.option-badge-fair {
  background: #e3f2fd;
  color: #1565c0;
}

.option-badge-good {
  background: #e8f5e8;
  color: #2e7d32;
}

.option-badge-excellent {
  background: #fff3e0;
  color: #ef6c00;
}

.option-badge-premium {
  background: #f3e5f5;
  color: #7b1fa2;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .collection-layout {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
  
  .collection-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 1000px) {
  .collection-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .collection-filters {
    position: static;
    max-height: none;
    order: 2;
  }
  
  .collection-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    order: 1;
  }
  
  .collection-title {
    font-size: 2rem;
  }
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  background: #ffffff;
  color: #002855;
  border: 1.5px solid #e2e8f0;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  align-items: center;
  gap: 0.75rem;
  width: auto;
  justify-content: flex-start;
  min-height: 44px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.mobile-filter-toggle:hover {
  border-color: #0ea5e9;
  box-shadow: 0 2px 12px rgba(14,165,233,0.15);
}

.mobile-filter-toggle i {
  font-size: 1rem;
  color: #002855;
}
.mobile-filter-toggle span:first-of-type {
  font-size: 1.1rem;
  font-weight: 600;
  color: #002855;
}

.filter-count-badge {
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.mobile-filter-close {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-filter-toggle {
    display: flex !important;
    background: #ffffff !important;
    color: #002855 !important;
    border: 1.5px solid #e2e8f0 !important;
    width: auto !important;
    min-height: 44px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    align-self: start !important;
    justify-self: start !important;
  }
  
 .collection-filters {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
  }
  .collection-filters.open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: -1;
    pointer-events: none;
  }
  
  .collection-filters.open {
    transform: translateX(0);
  }
  
  .mobile-filter-close {
    display: flex;
  }
  
  .filter-header {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
  }
  
  .filter-title {
    margin-right: 3rem;
  }
  
  .mobile-filter-close {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media (max-width: 600px) {
  .collection-container {
    padding: 1.5rem 1rem;
  }
  
 .collection-products {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
  
  .collection-title {
    font-size: 1.8rem;
  }
  
  .collection-product-content {
    padding: 1.2rem;
  }
  .collection-page-header__subtitle {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .collection-page-header__subtitle.expanded {
    display: block;
    overflow: visible;
  }

 .subtitle-read-more {
  display: inline-block !important;
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  opacity: 0.85;
}
  
 /* Mobile color swatches */
.collection-product-colors {
  padding: 0.25rem 0 0.5rem;
  gap: 0.4rem;
}
  
  .color-swatch {
    width: 18px;
    height: 18px;
    border-width: 1.5px;
  }
  
  /* Optimize touch targets for mobile */

 
.filter-checkbox {
  margin-right: 0.8rem;
  accent-color: #00c6fb;
}
  
  .filter-option {
    min-height: 44px;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
  }
  
  .filter-group-title {
    min-height: 44px;
    padding: 0.75rem 0;
  }
  
  .collection-product-card {
    min-height: auto;
  }
  
  .collection-product-btn {
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .collection-product-title {
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .collection-product-price {
    font-size: 1.1rem;
    font-weight: 600;
  }
}

@media (min-width: 1400px) {
  .collection-container {
    padding: 3rem 5vw;
  }
  
  .collection-products {
    gap: 2.5rem;
  }
  
  .collection-title {
    font-size: 3rem;
  }
}
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:15) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-page-header (INDEX:18) */
.custom-page-header {
  width: 100%;
  min-height: 240px;
  /* vertical padding only to keep alignment with content grid */
  padding: 2.5rem 0;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  /* align inner content to the same grid as the rest of the page */
  display: grid;
  grid-template-columns: var(--content-grid);
}
.custom-page-header__content {
  /* place content in central column so left edge aligns with page content */
  grid-column: 2;
  position: relative;
  z-index: 1;
}
.custom-page-header__content--left {
  text-align: left;
}
.custom-page-header__breadcrumb {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
  opacity: 0.95;
  text-decoration: none;
}
.custom-page-header__breadcrumb a {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
  opacity: 0.95;
  text-decoration: none;
}
.custom-page-header__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: -1px;
}
.custom-page-header__subtitle {
  font-size: 1.1rem;
  color: #eaf6fa;
  font-weight: 500;
  max-width: 1100px;
}
@media (max-width: 900px) {
  .custom-page-header__title {
    font-size: 2rem;
  }
  .custom-page-header__subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .custom-page-header__title {
    font-size: 1.2rem;
  }
  .custom-page-header__subtitle {
    font-size: 0.95rem;
  }
  .custom-page-header__breadcrumb {
    font-size: 0.85rem;
  }
}
/* END_SECTION:custom-page-header */

/* START_SECTION:custom-section (INDEX:19) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faq-header (INDEX:21) */
.custom-page-header {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
  min-height: 240px;
  padding: 3rem 0;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.custom-page-header__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.custom-page-header__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-page-header__content {
  position: relative;
  margin-left: 3rem;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.custom-page-header__content--left {
  text-align: left;
}
.custom-page-header__breadcrumb {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
  opacity: 0.95;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.custom-page-header__breadcrumb a {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.2rem;
  opacity: 0.95;
  text-decoration: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.custom-page-header__title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}
.custom-page-header__subtitle {
  font-size: 1.1rem;
  color: #eaf6fa;
  font-weight: 500;
  max-width: 1100px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (max-width: 1024px) {
  .custom-page-header {
    min-height: 200px;
    padding: 2.5rem 0;
  }
  
  .custom-page-header__content {
    margin-left: 2rem;
  }
  
  .custom-page-header__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .custom-page-header {
    min-height: 160px;
    padding: 2rem 0;
    margin-bottom: 1.5rem;
  }
  
  .custom-page-header__content {
    margin-left: 1.5rem;
  }
  
  .custom-page-header__title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  
  .custom-page-header__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .custom-page-header {
    min-height: 140px;
    padding: 1.5rem 0;
    margin-bottom: 1rem;
  }
  
  .custom-page-header__content {
    margin-left: 1rem;
    padding: 0 0.75rem;
  }
  
  .custom-page-header__title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    /* remove letter-spacing: -0.5px */
  }
  
  .custom-page-header__subtitle {
    font-size: 0.9rem;
  }
  
  .custom-page-header__breadcrumb a {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .custom-page-header {
    min-height: 120px;
    padding: 1rem 0;
    margin-bottom: 0.75rem;
  }
  
  .custom-page-header__content {
    margin-left: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .custom-page-header__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .custom-page-header__subtitle {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .custom-page-header__breadcrumb a {
    font-size: 0.75rem;
  }
}

@media (max-width: 900px) {
  .custom-page-header__title {
    font-size: 2rem;
  }
  .custom-page-header__subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .custom-page-header__title {
    font-size: 1.2rem;
  }
  .custom-page-header__subtitle {
    font-size: 0.95rem;
  }
  .custom-page-header__breadcrumb {
    font-size: 0.85rem;
  }
}
/* END_SECTION:faq-header */

/* START_SECTION:footer (INDEX:22) */
.shopify-section:has(> .footer) {
  --content-margin: 0px;
  --page-margin: 0px;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  grid-column: 1 / -1 !important;
}
.footer.full-width {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.footer__brand-badges {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html, body { height: 100%; margin: 0; padding: 0; }
body { display: flex; flex-direction: column; }
main { flex: 1; }

.footer {
  background: #0a1628;
  margin-top: auto;
  padding: 0;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 13px;
  flex-shrink: 0;
}
.footer__main {
  display: grid;
  grid-template-columns: 220px 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 3vw 1.5rem 1.5rem;
}
.footer__brand {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-right: 0;
}
.footer__logo {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.footer__certified {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__certified img {
  filter: brightness(0) invert(1);
  height: 60px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
.footer__iso img {
  height: 50px;
  width: auto;
  max-width: 110px;
  display: block;
  filter: none;
}
.footer__col {
  color: #ffffffa8;
  margin-right: 1rem;
}
.footer__col strong {
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer__col br {
  display: none;
}
.footer__col a {
  display: block;
  margin-bottom: 0.4rem;
  color: #ffffffa8;
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.footer__col a:hover { text-decoration: underline; }
.footer__newsletter-form {
  display: flex;
  margin-top: 0.7rem;
}
.footer__newsletter-form input[type="email"] {
  border: 1px solid #00e6e6;
  border-right: none;
  border-radius: 4px 0 0 4px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  outline: none;
  min-width: 160px;
}
.footer__newsletter-btn {
  background: #00e6e6;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.footer__newsletter-btn:hover { background: #00bfbf; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 3vw 0.7rem 3vw;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
}
.footer__copyright {
  color: #ffffffa8;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  font-size: 13px;
}
.footer__payments {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

@media (max-width: 1100px) {
  .footer__main { grid-template-columns: auto repeat(5, 1fr); gap: 1.5rem; }
}

@media (max-width: 800px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 1.25rem; padding: 1.5rem 5vw 1rem 5vw; }
  .footer__brand { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 1.5rem; margin-right: 0; margin-bottom: 0.25rem; }
  .footer__logo { width: 70px; height: 70px; }
  .footer__certified img { height: 40px; }
  .footer__iso img { height: 40px; }
  .footer__col { margin-right: 0; font-size: 12px; }
  .footer__col strong { font-size: 13px; margin-bottom: 0.4rem; }
  .footer__newsletter { grid-column: 1 / -1; }
  .footer__newsletter-form input[type="email"] { min-width: 0; flex: 1; font-size: 0.9rem; }
  .footer__bottom { flex-direction: column; gap: 0.75rem; padding-top: 0.75rem; text-align: center; }
  .footer__payments { justify-content: center; }
}

@media (max-width: 480px) {
  .footer__main { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.25rem 4vw 0.75rem 4vw; }
  .footer__brand { flex-direction: row; gap: 1rem; }
  .footer__logo { width: 55px; height: 55px; }
  .footer__certified img { height: 32px; }
  .footer__iso img { height: 32px; }
  .footer__col { font-size: 11px; line-height: 1.7; }
}
.footer__localization {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 3vw;
  display: flex;
  justify-content: flex-end;
}

.footer__localization-selector {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__localization-selector label {
  color: #ffffffa8;
  font-size: 13px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  cursor: default;
}

.footer__localization-selector select {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 13px;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  cursor: pointer;
  appearance: auto;
}

.footer__localization-selector select:hover {
  border-color: rgba(255,255,255,0.5);
}

.footer__localization-selector select option {
  background: #0a1628;
  color: #ffffff;
}

@media (max-width: 800px) {
  .footer__localization {
    justify-content: center;
    padding: 0.75rem 5vw;
  }
}
/* END_SECTION:footer */

/* START_SECTION:grading-example (INDEX:23) */
.ms-grading__spec--warn {
  margin-top: 0.5rem;
}

.ms-grading {
  max-width: 100%;
  padding: 2.5rem 4vw 3rem;
  font-family: inherit;
}

/* ── Section labels ── */
.ms-grading__table .ms-grading__dot {
  display: none;
}
.ms-grading__section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 1rem;
}
.ms-grading__section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

/* ── Comparison table ── */
.ms-grading__table {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.ms-grading__table-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
}
.ms-grading__table-row:last-child { border-bottom: none; }
.ms-grading__table-row--header { background: #f8fafc; }
.ms-grading__table-cell {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: #334155;
  border-right: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ms-grading__table-cell:last-child { border-right: none; }
.ms-grading__table-cell--col-label {
  font-weight: 700;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ms-grading__table-cell--row-label {
  font-weight: 600;
  color: #334155;
}
.ms-grading__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.ms-grading__dot--green { background: #10b981; }
.ms-grading__dot--amber { background: #f59e0b; }
.ms-grading__footnote {
  font-size: 0.75rem;
  color: #94a3b8;
  font-style: italic;
  margin-bottom: 2rem;
}

/* ── Grade cards ── */
.ms-grading__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ms-grading__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.375rem;
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.ms-grading__card--featured {
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.ms-grading__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}
.ms-grading__card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}
.ms-grading__card-sub { font-size: 0.75rem; color: #64748b; }
.ms-grading__card-meta { text-align: right; }
.ms-grading__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ms-grading__badge--premium  { background: #d1fae5; color: #065f46; }
.ms-grading__badge--excellent { background: #e0f2fe; color: #0369a1; }
.ms-grading__badge--good      { background: #fef3c7; color: #92400e; }
.ms-grading__badge--fair      { background: #f1f5f9; color: #475569; }
.ms-grading__stars {
  font-size: 0.65rem;
  color: #f59e0b;
  margin-top: 4px;
  letter-spacing: 1px;
}
.ms-grading__star-off { color: #e2e8f0; }
.ms-grading__card-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.ms-grading__spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  margin: 0;
}
.ms-grading__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
}
.ms-grading__spec--ok   { color: #065f46; }
.ms-grading__spec--warn { color: #92400e; }
.ms-grading__spec svg { flex-shrink: 0; }
.ms-grading__card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.ms-grading__batt-label {
  font-size: 0.7rem;
  color: #94a3b8;
  white-space: nowrap;
}
.ms-grading__batt-label--premium  { color: #065f46; font-weight: 600; }
.ms-grading__batt-label--excellent { color: #0369a1; font-weight: 600; }
.ms-grading__batt-label--good     { color: #92400e; font-weight: 600; }
.ms-grading__batt-label--fair     { color: #475569; font-weight: 600; }
.ms-grading__batt-track {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: #e2e8f0;
  overflow: hidden;
}
.ms-grading__batt-fill { height: 100%; border-radius: 2px; }
.ms-grading__batt-fill--premium   { width: 95%; background: #10b981; }
.ms-grading__batt-fill--excellent { width: 83%; background: #0ea5e9; }
.ms-grading__batt-fill--good      { width: 83%; background: #f59e0b; }
.ms-grading__batt-fill--fair      { width: 83%; background: #94a3b8; }

/* ── Carousel ── */
.ms-grading__carousel { margin-bottom: 2rem; }
.ms-grading__carousel-outer { overflow: hidden; border-radius: 12px; }
.ms-grading__carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.ms-grading__cond-card {
  flex: 0 0 calc(25% - 0.75rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
}
.ms-grading__cond-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: #f8fafc;
}
.ms-grading__cond-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ms-grading__cond-placeholder--premium  { background: #d1fae5; color: #065f46; }
.ms-grading__cond-placeholder--excellent { background: #e0f2fe; color: #0369a1; }
.ms-grading__cond-placeholder--good     { background: #fef3c7; color: #92400e; }
.ms-grading__cond-placeholder--fair     { background: #f1f5f9; color: #475569; }
.ms-grading__cond-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ms-grading__cond-badge--premium  { background: #d1fae5; color: #065f46; }
.ms-grading__cond-badge--excellent { background: #e0f2fe; color: #0369a1; }
.ms-grading__cond-badge--good     { background: #fef3c7; color: #92400e; }
.ms-grading__cond-badge--fair     { background: #f1f5f9; color: #475569; }
.ms-grading__cond-info { padding: 1rem; }
.ms-grading__cond-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}
.ms-grading__cond-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.ms-grading__wear-row {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ms-grading__wear-label { font-size: 0.7rem; color: #94a3b8; white-space: nowrap; }
.ms-grading__wear-track {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  background: #e2e8f0;
  overflow: hidden;
}
.ms-grading__wear-fill { height: 100%; border-radius: 2px; }
.ms-grading__wear-fill--premium   { background: #10b981; }
.ms-grading__wear-fill--excellent { background: #0ea5e9; }
.ms-grading__wear-fill--good      { background: #f59e0b; }
.ms-grading__wear-fill--fair      { background: #94a3b8; }
.ms-grading__carousel-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.875rem;
}
.ms-grading__carousel-dots { display: flex; gap: 6px; align-items: center; }
.ms-grading__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e2e8f0;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ms-grading__dot--active {
  background: #0ea5e9;
  width: 18px;
  border-radius: 3px;
}
.ms-grading__carousel-btns { display: flex; gap: 6px; }
.ms-grading__nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.ms-grading__nav-btn:hover:not(:disabled) { border-color: #0ea5e9; color: #0ea5e9; }
.ms-grading__nav-btn:disabled { opacity: 0.35; cursor: default; }

/* ── CTA strip ── */
.ms-grading__cta {
  background: linear-gradient(90deg, #0ea5e9 0%, #2ec4b6 100%);
  border-radius: 12px;
  padding: 1.375rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.ms-grading__cta-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.ms-grading__cta-text p { font-size: 0.85rem; color: rgba(255,255,255,0.85); margin: 0; }
.ms-grading__cta-btn {
  display: inline-block;
  background: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0284c7;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ms-grading__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  color: #0284c7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ms-grading__table-row { grid-template-columns: 90px 1fr 1fr 1fr 1fr; }
  .ms-grading__table-cell { padding: 0.6rem 0.6rem; font-size: 0.7rem; }
  .ms-grading__cond-card { flex: 0 0 calc(50% - 0.5rem); }
}
@media (max-width: 768px) {
  .ms-grading__hero-title { font-size: 1.5rem; }
  .ms-grading__cards { grid-template-columns: 1fr; }
  .ms-grading__table-row { grid-template-columns: 80px 1fr 1fr 1fr 1fr; }
  .ms-grading__cta { flex-direction: column; text-align: center; }
  .ms-grading__cta-btn { width: 100%; text-align: center; }
}
@media (max-width: 540px) {
  .ms-grading { padding: 1.5rem 1rem 2rem; }
  .ms-grading__hero { padding: 1.75rem 1.25rem; }
  .ms-grading__hero-title { font-size: 1.25rem; }
  .ms-grading__table-row { grid-template-columns: 70px 1fr 1fr 1fr 1fr; }
  .ms-grading__table-cell { padding: 0.5rem 0.4rem; font-size: 0.65rem; }
  .ms-grading__cond-card { flex: 0 0 100%; }
}
/* END_SECTION:grading-example */

/* START_SECTION:grading-explained (INDEX:24) */
.grading-explained-section {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  box-sizing: border-box;
  overflow-x: hidden;
  background: #e0f2fe;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grading-explained-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.grading-explained-badge {
  display: inline-block;
  background: rgba(14,165,233,0.15);
  color: #0284c7;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 1rem;
  border: 1px solid rgba(14,165,233,0.3);
}
.grading-explained-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1rem 0;
  line-height: 1.15;
}
.grading-explained-divider {
  width: 48px;
  height: 3px;
  background: #0ea5e9;
  border-radius: 100px;
  margin: 0 auto 1.25rem auto;
}
.grading-explained-desc {
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}
.grading-explained-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
  box-sizing: border-box;
}
.grading-card {
  background: #fff;
  border: 1px solid #bae6fd;
  border-radius: 16px;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.grading-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e0f2fe;
  border: 1px solid #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.grading-card-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
}
.grading-card-name {
  color: #0284c7;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}
.grading-card-desc {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.grading-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grading-modal-backdrop {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,10,35,0.85);
  z-index: 1;
}
.grading-modal-content {
  position: relative;
  z-index: 2;
  background: #061a36;
  border-radius: 12px;
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.grading-modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  position: absolute;
  top: 0.7rem;
  right: 1.2rem;
  cursor: pointer;
  z-index: 3;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grading-modal-video-wrap {
  width: 560px;
  max-width: 80vw;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.grading-modal-video-wrap iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #000;
}
@media (max-width: 900px) {
  .grading-explained-grid { grid-template-columns: repeat(2, 1fr); }
  .grading-explained-title { font-size: 1.75rem; }
}
@media (max-width: 640px) {
  .grading-explained-section { padding: 3rem 1.5rem; }
  .grading-explained-grid { grid-template-columns: 1fr; }
  .grading-explained-title { font-size: 1.5rem; }
}
/* END_SECTION:grading-explained */

/* START_SECTION:header-backup (INDEX:26) */
/* Reset body margins */
body {
  margin: 0;
  padding: 0;
}

/* Trustpilot bar */
.header__trustpilot-bar {
  width: 100%;
  background-color: #002855;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
}

.trustpilot__stars {
  color: #00B67A;
  font-size: 1.2rem;
}

.trustpilot__brand {
  color: #00B67A;
  font-weight: 600;
}

/* Header */
.header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #00BFFF;
}

.header__container {
  max-width: 1200px; /* center content */
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo-image {
  border-radius: 8px;
}

/* Search */
.header__search {
  flex: 1;
  display: flex;
  max-width: 600px;
  margin: 0 2rem;
  border: 0.3px solid #002855;
  border-radius: 4px;
}

.header__search-input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  outline: none;
}

.header__search-btn {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* Icons */
.header__icons {
  display: flex;
  gap: 1.5rem;
}

.header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
}

.header__icon:hover, .header__icon:focus {
  transform: scale(1.18) rotate(-6deg);
  box-shadow: 0 4px 16px 0 rgba(0,191,255,0.10);
  z-index: 2;
}

.header__icon-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: #00BFFF;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
}

/* Nav */
.header__nav {
  width: 100%;
  /* border-top: 1px solid #e0e0e0; */
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 1rem 0;
  margin: 0;
   position: relative;
}
/* Mega Menu Styles */
.has-mega-menu {
  position: relative;
}
.mega-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100vw;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.10);
  border-radius: 0 0 10px 10px;
  padding: 2rem 6vw 2rem 6vw;
  z-index: 100;
  gap: 2.5rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0.5rem;
}
.has-mega-menu:hover > .mega-menu {
  display: flex;
}
.mega-menu__column {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 150px;
}
.mega-menu__title {
  font-weight: 700;
  color: #003333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.mega-menu a {
  color: #222;
  text-decoration: none;
  font-size: 0.98rem;
  padding: 2px 0;
  transition: color 0.2s;
}
.mega-menu a:hover {
  color: #00BFFF;
}

.header__nav-list a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header__nav-list a:hover {
  color: #00BFFF;
}

/* Trending badge */
.nav__trending {
  background: #1a1aff;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
  margin-right: 4px;
  position: absolute;
  top: -18px;
  left: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .header__container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .header__search {
    margin: 1rem 0;
    max-width: 100%;
  }

  .header__nav-list {
    gap: 1rem;
    font-size: 0.95rem;
  }

  .mega-menu {
    width: 100vw;
    padding: 1.2rem 2vw;
    flex-direction: column;
    gap: 1.2rem;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
  }
  .mega-menu__column {
    min-width: 0;
  }
}
/* END_SECTION:header-backup */

/* START_SECTION:header (INDEX:27) */
.header-localization__toggle {
  border-radius: 0 !important;
}

.header-localization__dropdown {
  border-radius: 0 !important;
}

.header-localization__option {
  border-radius: 0 !important;
}
.header-localization {
  position: relative;
  display: flex;
  align-items: center;
}

.header-localization__toggle {
  background: none;
  border: 1px solid rgba(0,40,85,0.2);
  border-radius: 0;
  padding: 5px 10px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #002855;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.header-localization__toggle:hover {
  border-color: #002855;
}

.header-localization__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 200px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  padding: 6px;
}

.header-localization__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
  font-family: inherit;
  color: #0f172a;
}

.header-localization__option:hover {
  background: #f1f5f9;
}

.header-localization__option.active {
  background: #e8f7f9;
  color: #0a1628;
  font-weight: 600;
}

.header-localization__option span {
  color: #94a3b8;
  font-size: 12px;
}

@media (max-width: 768px) {
  .header-localization {
    display: none;
  }
}
.announcement-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header__logo-gradient {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #00a7ff 0%, #00edac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  display: inline-block;
}
@media (max-width: 768px) {
  .header__logo-gradient {
    font-size: 1.3rem;
  }
}
.header__logo-text {
  display: none;
}

/* Reset body margins */
body {
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  border-bottom: none;
  box-shadow: none;
  position: relative;
  z-index: 300;
  padding-left: 0;
  padding-right: 0;
}

.header__container {
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  box-sizing: border-box;
  max-width: none;
  margin: 0;
  position: relative;
}
.header,
.header.full-width {
  border-bottom: none !important;
  box-shadow: none !important;
}

.header::after,
.header.full-width::after,
.header__nav::after,
.header__container::after {
  display: none !important;
  content: none !important;
}

.header__nav,
.header__nav-list {
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-image {
  border-radius: 8px;
  width: 60px;
  height: 60px;
}
@media (max-width: 768px) {
.header__search-dropdown {
  position: absolute;
  top: 0;
  left: 50px;
  right: 0;
  width: auto !important;
  height: 60px !important;
  max-height: 60px !important;
  padding: 0 0.75rem;
  z-index: 500;
  background: #fff;
  box-sizing: border-box;
}
.header {
  overflow: hidden;
}
.header__search-dropdown.open {
  display: flex;
  align-items: center;
}

.header__search-dropdown-form {
  width: 100%;
}

.header__search-dropdown-input {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
}
   .header__logo a {
    text-decoration: none;
  }
  .header__logo-image {
    display: none;
  }
    .header__logo-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #002855;
    letter-spacing: -0.02em;
    white-space: nowrap;
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  }

.header__container {
  flex-direction: row;
  height: 60px;
  padding: 0 1rem;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
   
  .header__logo {
    display: flex;
    align-items: center;
    height: 100%;
    order: 2;
  }

.header__icons {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    height: 100%;
    order: 3;
    margin-left: auto;
    flex-shrink: 0;
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .header__icons > form,
  .header__icons > div {
    display: none !important;
  }

.header__icons .fa-solid,
  .header__icons .fa-regular,
  .header__icons i {
    font-size: 18px !important;
    display: block;
    width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
  }

  .header__icon {
    width: 22px !important;
    height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    order: 1;
  }

  .hamburger-line {
    width: 20px;
  }
}

/* Search */
/* Search icon dropdown */
.header__search-dropdown {
  display: none;
  position: absolute;
  top: 0;
  right: 180px;
  height: 70px;
  width: 400px;
  background: #fff;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
  z-index: 400;
}

.header__search-dropdown.open {
  display: flex;
  align-items: center;
}

.header__search-dropdown-form {
  display: flex;
  width: 100%;
  border: 1.5px solid #002855;
  border-radius: 4px;
  overflow: hidden;
}
.header__search-dropdown-input {
  flex: 1;
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  outline: none;
}
.header__search-dropdown-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}
/* Icons */
.header__icons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 24px;
  height: 24px;
  transition: transform 0.2s cubic-bezier(0.4,0,0.2,1), box-shadow 0.2s cubic-bezier(0.4,0,0.2,1);
}

.header__icon:hover, .header__icon:focus {
  transform: scale(1.18) rotate(-6deg);
  box-shadow: 0 4px 16px 0 rgba(0,191,255,0.10);
  z-index: 2;
}

.header__icon-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #00BFFF;
  color: #fff;
  font-size: 0.6rem;
  font-weight: bold;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  line-height: 1;
}

/* Nav */
.header__nav {
  width: 100%;
  /* border-top: 1px solid #e0e0e0; */
  overflow: visible; /* allow dropdown to overlay content */
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0.4rem 0;
  margin: 0;
  position: relative;
  width: 100%;
}
.header__nav {
  border-bottom: none !important;
  box-shadow: none !important;
}

.header__nav-list {
  border-bottom: none !important;
}

.header {
  border-bottom: none !important;
  box-shadow: none !important;
}
/* Mega Menu Styles */

a.mega-menu__title {
  text-decoration: none;
  display: block;
  color: #002855;
  font-weight: 900 !important;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(0, 191, 255, 0.4);
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

a.mega-menu__title:hover {
  color: #00BFFF;
  border-bottom-color: #00BFFF;
}
.has-mega-menu { 
  position: static; 
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 8px); /* Overlap slightly to eliminate gap */
  width: 100%;
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 0;
  padding: 2.5rem 6vw 3rem 6vw;
  padding-top: calc(2.5rem + 8px); /* Add padding back to top for spacing */
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-15px) scaleY(0.95);
  transform-origin: top center;
  transition: none;
  border-top: 3px solid #00BFFF;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 40px; /* Extended bridge area */
  background: transparent;
}

/* open on hover and keyboard focus */
.has-mega-menu:hover > .mega-menu,
.has-mega-menu:focus-within > .mega-menu,
.has-mega-menu.is-open > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scaleY(1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav__sublink--heading {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
}

.mobile-nav__sublink--heading:hover {
  color: #00BFFF;
}

/* highlight parent nav item when open */
.has-mega-menu > a {
  position: relative;
  padding-bottom: 8px;
}

.has-mega-menu:hover > a,
.has-mega-menu:focus-within > a,
.has-mega-menu.is-open > a {
  color: #00BFFF;
}

.has-mega-menu > a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
  transition: background-color 0.2s ease;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.mega-menu__content {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.mega-menu__image {
  flex-shrink: 0;
  width: 140px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.mega-menu__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 160px;
  padding: 1rem;
  border-radius: 0;
  background:  #ffffff;
  border: 0.5px solid #e2e8f0;
  transition: background 0.4s ease, 
              box-shadow 0.4s ease, 
              transform 0.4s ease;
  will-change: transform;
}

.mega-menu__column:hover {
  background: #ffffff;;
  box-shadow: 0 4px 12px rgba(0, 40, 85, 0.15);
  transform: translateY(-2px);
}

.mega-menu__title {
  font-weight: 700;
  color: #002855;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e0f2fe;
  transition: color 0.3s ease;
}

.mega-menu a {
  color: #334155;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  padding-left: 1rem; /* Fixed padding to prevent layout shift */
  line-height: 1.5;
  border-radius: 0;
  transition: color 0.3s ease,
              background 0.3s ease,
              transform 0.3s ease;
  position: relative;
  overflow: hidden;
  transform: translateX(0);
  will-change: transform;
}

.mega-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 70%;
  background: #00BFFF;
  border-radius: 3px;
  transition: transform 0.3s ease;
  transform-origin: center;
}

.mega-menu a:hover,
.mega-menu a:focus {
  color: #00BFFF;
  background: rgba(0, 191, 255, 0.08);
  transform: translateX(4px);
  outline: none;
}

.mega-menu a:hover::before,
.mega-menu a:focus::before {
  transform: translateY(-50%) scaleY(1);
}

.header__nav-list a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 0.25rem;
}
.header__nav-list li {
  padding: 0.5rem 0;
}

.header__nav-list a:hover {
  color: #00BFFF;
}

/* Trending badge */
.nav__trending {
  background: #1a1aff;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 6px;
  margin-right: 4px;
  position: absolute;
  top: -18px;
  left: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #002855;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  background: white;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-nav-overlay.open {
  display: block;
}

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

.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mobile-nav__header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.mobile-nav__close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
}

.mobile-nav__link:hover {
  background: #f8fafc;
  color: #00BFFF;
}

.mobile-nav__submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f8fafc;
}

.mobile-nav__submenu.open {
  display: block;
}

.mobile-nav__submenu-heading {
  padding: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: none;
  border-bottom: none;
}

.mobile-nav__submenu-heading .mobile-nav__sublink--heading {
  padding: 0.75rem 2rem;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
  border-bottom: 1px solid #e2e8f0;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav__sublink {
  display: block;
  padding: 0.75rem 2rem;
  text-decoration: none;
  color: #475569;
  font-size: 0.9rem;
  border-bottom: 1px solid #e2e8f0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav__sublink:hover {
  background: #e2e8f0;
  color: #00BFFF;
}

.mobile-nav__toggle i {
  transition: transform 0.3s ease;
}

.mobile-nav__toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}
.mobile-nav__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav__item-row .mobile-nav__link {
  flex: 1;
  border-bottom: none;
}

.mobile-nav__chevron {
  background: none;
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  color: #64748b;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #f1f5f9;
}

.mobile-nav__chevron i {
  transition: transform 0.3s ease;
}

.mobile-nav__chevron[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 900px) and (min-width: 769px) {
  .header__container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .header__nav-list {
    gap: 1rem;
    font-size: 0.95rem;
  }

  .mega-menu {
    width: 100%;
    padding: 2rem 4vw;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  
  .mega-menu__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mega-menu__image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
  
  .mega-menu__column {
    min-width: 0;
    padding: 0.75rem;
  }
  
  .mega-menu__title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .mega-menu a {
    font-size: 0.85rem;
    padding: 0.4rem 0.5rem;
  }
 
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header__nav {
    display: none;
  }
  
  .mobile-nav {
    display: block;
  }
}

@media (max-width: 600px) {
  .mega-menu__columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:28) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

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

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:home-advert (INDEX:29) */
.advert-section-wrapper {
  width: 100%;
  background: #ffffff;
  box-sizing: border-box;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.home-advert-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  grid-template-rows: 280px 280px;
  gap: 2rem;
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 0 3rem;
  box-sizing: border-box;
  overflow: hidden;
}
.advert-description {
  font-size: 16px;
  line-height: 1.7;
  color: #5f6f86;
  margin: 18px 0 24px;
  max-width: 340px;
}
.advert-brands-content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.2rem 1.2rem 1.5rem;
  width: 100%;
}

.advert-brands .advert-side-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 100%);
}

.advert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.advert-main-content h2 {
  color: #003333;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.advert-tags span {
  padding: 10px 16px;
  border: 1px solid #d7e7f3;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  color: #0d2b52;
  background: rgba(255,255,255,0.7);
}


.advert-main, .advert-side {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advert-main:hover, .advert-side:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.advert-main {
  grid-row: 1 / span 2;
  grid-column: 1 / 2;
  min-height: 420px;
  animation-delay: 0.1s;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  background: linear-gradient(135deg, #f8fbfc 0%, #edf6f8 100%);
}
.advert-main-img, .advert-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}

.advert-main-img {
  position: relative;
  width: 115%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: none;
  top: auto;
  left: -10px;
}
.advert-main-image-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  overflow: visible;
}

.advert-main:hover .advert-main-img {
  transform: scale(1.04);
}

.advert-side:hover .advert-side-img {
  transform: scale(1.05);
}
.advert-main-content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 2.5rem 0 2.5rem 3rem;
  width: 100%;
  max-width: 100%;
  transition: transform 0.3s ease;
}
.advert-main:hover .advert-main-content {
  transform: translateY(-8px);
}
.advert-main-label {
  color: #003333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.advert-main-title {
  font-size: 1rem;
  font-weight: 600;
  color: #003333;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  transition: color 0.3s ease, transform 0.3s ease;
}
.advert-main:hover .advert-main-title {
  color: #004d4d;
  transform: translateX(4px);
}
.advert-link {
  color: #00baff;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.90rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.advert-link:hover {
  color: #0077a6;
  text-decoration: none;
  transform: translateX(4px);
}
.advert-link i {
  transition: transform 0.2s;
}
.advert-link:hover i {
  transform: translateX(4px);
}
.advert-side {
  min-height: 280px;
  color: #fff;
  flex-direction: column;
  justify-content: flex-end;
}
.advert-airpods {
  grid-row: 1 / 2;
  grid-column: 2 / 4;
  animation-delay: 0.2s;
}
.advert-watch {
  grid-row: 2 / 3;
  grid-column: 3 / 4;
  animation-delay: 0.4s;
}
.advert-side-img {
  z-index: 1;
}
.advert-side-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,rgba(24,28,31,0.65) 60%,rgba(24,28,31,0.70) 100%);
  z-index: 2;
}
.advert-side-content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.2rem 1.2rem 1.5rem;
  width: 100%;
  transition: transform 0.3s ease;
}

.advert-side:hover .advert-side-content {
  transform: translateY(-6px);
}
.advert-side-label {
  color: #00baff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.advert-side-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.advert-brands {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  border-radius: 0;
  padding: 0;
  min-height: 180px;
  animation-delay: 0.3s;
}

.advert-brands-content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.2rem 1.2rem 1.5rem;
  width: 100%;
}

.advert-brands-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00baff;
  margin-bottom: 0.75rem;
}

.advert-brands-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.25rem;
}

.advert-brands-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.advert-brands-logos span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 0;
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .advert-main, .advert-side {
    animation: none;
    opacity: 1;
  }
  .advert-main:hover, .advert-side:hover {
    transform: none;
  }
  .advert-main:hover .advert-main-img,
  .advert-side:hover .advert-side-img {
    transform: none;
  }
  .advert-main:hover .advert-main-content,
  .advert-side:hover .advert-side-content {
    transform: none;
  }
  .advert-main:hover .advert-main-title {
    transform: none;
  }
  .advert-link:hover {
    transform: none;
  }
  .advert-link:hover i {
    transform: none;
  }
  .advert-cert-badge i {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .home-advert-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 1.2rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
  }

  .advert-main {
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    grid-template-columns: unset !important;
    min-height: 200px;
    background-image: var(--imac-bg);
    background-size:120%;
    background-position: center center;
    background-color: #edf6f8;
  }

  .advert-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,248,255,0.92) 40%, rgba(200,230,245,0.5) 100%);
    z-index: 1;
  }

  .advert-main-image-wrap {
    display: none !important;
  }

  .advert-main-content {
    position: relative;
    z-index: 2;
    padding: 1.2rem 1rem !important;
    width: 100%;
  }

  .advert-main-content h2 {
    font-size: 1.2rem !important;
    color: #002855 !important;
  }

  .advert-description,
  .advert-tags,
  .advert-main-label {
    display: none !important;
  }

  .advert-side {
    grid-row: auto !important;
    grid-column: auto !important;
    min-height: 200px;
  }

  .advert-airpods, .advert-watch, .advert-brands {
    grid-row: auto !important;
    grid-column: auto !important;
  }

  .advert-side-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: 1;
  }

  .advert-side-content {
    padding: 1.2rem 1rem;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .home-advert-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 1.5rem 0.75rem;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .advert-main {
    grid-column: 1 / -1;
    min-height: 180px;
  }

  .advert-main-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
  }

  .advert-side {
    min-height: 180px;  /* enough room for content */
    border-radius: 0;
  }

  .advert-main-content,
  .advert-side-content,
  .advert-brands-content {
    padding: 0.9rem 0.8rem;
  }

  .advert-side-title,
  .advert-brands-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .advert-brands-title {
    font-size: 0.95rem;
  }

  .advert-brands-logos {
    display: none; /* hides Samsung/Philips/Microsoft pills on very small screens */
  }
}
/* END_SECTION:home-advert */

/* START_SECTION:home-bestsellers (INDEX:30) */
.bestsellers-section-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 2rem 0 3rem;
  box-sizing: border-box;
}

.bestsellers-section {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  font-family: inherit;
  box-sizing: border-box;
}

.bestsellers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.bestsellers-header-content { flex: 1; }

.bestsellers-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00BFFF;
  margin-bottom: 0.5rem;
}

.bestsellers-title {
  font-size: 2rem;
  font-weight: 800;
  color: #001f3f;
  margin: 0 0 0.4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bestsellers-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.bestsellers-arrows {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.bestsellers-arrow {
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #001f3f;
  transition: all 0.2s ease;
}

.bestsellers-arrow:hover {
  background: #001f3f;
  border-color: #001f3f;
  color: #fff;
}

.bestsellers-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.bestsellers-track-outer {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: visible;
}

.bestsellers-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  padding-top: 0.5rem;
}

.bestsellers-track::-webkit-scrollbar {
  display: none;
}

.bestseller-card {
  flex: 0 0 calc(25% - 0.75rem);
  min-width: 220px;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8eef2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bestseller-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 31, 63, 0.1);
}

.bestseller-image-wrap {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #f5fbfd 0%, #eef8fb 55%, #ffffff 100%);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bestseller-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem;
  border-radius: 0;
}

.option-badge-fair { background: #f1f5f9; color: #475569; }
.option-badge-good { background: #fef3c7; color: #92400e; }
.option-badge-excellent { background: #dcfce7; color: #166534; }
.option-badge-premium { background: #001f3f; color: #ffffff; }

.bestseller-image-container {
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bestseller-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.bestseller-card:hover .bestseller-image {
  transform: scale(1.04);
}

.bestseller-info {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.bestseller-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

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

.bestseller-price {
  font-size: 1rem;
  font-weight: 700;
  color: #001f3f;
}

.bestseller-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #00BFFF;
  transition: gap 0.2s ease;
  white-space: nowrap;
}

.bestseller-card:hover .bestseller-cta { gap: 0.5rem; }

@media (max-width: 900px) {
  .bestseller-card {
    flex: 0 0 calc(33.333% - 0.667rem);
  }
}

@media (max-width: 600px) {
  .bestsellers-section-wrapper { padding: 1.5rem 0 1rem; }
  .bestsellers-section { width: 100%; padding: 0 1rem; }
  .bestsellers-track-outer { width: 100%; padding: 0 1rem; box-sizing: border-box; }
  .bestsellers-title { font-size: 1.4rem; }
  .bestsellers-subtitle { font-size: 0.875rem; }
  .bestsellers-arrow { width: 36px; height: 36px; }

  .bestsellers-track {
    display: grid;
    grid-template-columns: repeat(4, calc(50% - 0.25rem));
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }

  .bestseller-card {
    flex: none;
    min-width: unset;
    width: 100%;
    scroll-snap-align: start;
  }

  .bestseller-image-wrap {
    padding: 0.75rem 0.5rem;
  }

  .bestseller-image-container {
    max-height: 90px;
  }

  .bestseller-info {
    padding: 0.5rem 0.6rem 0.6rem;
    gap: 0.3rem;
  }

  .bestseller-title {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .bestseller-price {
    font-size: 0.72rem;
    font-weight: 700;
  }

  .bestseller-cta {
    display: none;
  }

  .bestseller-badge {
    font-size: 0.5rem;
    padding: 0.2rem 0.4rem;
  }
}
/* END_SECTION:home-bestsellers */

/* START_SECTION:home-business (INDEX:31) */
.business-section-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 1.5rem 0 4rem;
  box-sizing: border-box;
}

.business-inner {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f3fbfd 100%);
  border: 1px solid #e8eef2;
  box-shadow: 0 18px 50px rgba(0, 31, 63, 0.06);
}

.business-left {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.3rem;
  background: transparent;
}

.business-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00BFFF;
}

.business-title {
  font-size: 2rem;
  font-weight: 800;
  color: #001f3f;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.business-desc {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 620px;
}

.business-desc p {
  margin: 0 0 0.75rem 0;
}

.business-desc p:last-child {
  margin-bottom: 0;
}

.business-divider {
  display: none;
}

.business-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.business-stat {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 0;
}

.business-stat:nth-child(2),
.business-stat:nth-child(3),
.business-stat:nth-child(4) {
  border: 1px solid #dbeafe;
}

.business-stat-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #001f3f;
  letter-spacing: -0.04em;
  margin-bottom: 2px;
}

.business-stat-num em {
  color: #00BFFF;
  font-style: normal;
}

.business-stat-label {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

.business-sectors-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.business-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.business-sector {
  width: auto;
  flex: 0 0 auto;
  font-size: 0.72rem;
  padding: 0.4rem 0.75rem;
  border-radius: 0;
}

.business-sector {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 0;
  padding: 0.45rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #001f3f;
}

.business-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-badge {
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 0;
  padding: 12px 20px;
  height: 72px;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-logo {
  max-height: 52px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.business-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #001f3f;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.04em;
  align-self: flex-start;
  transition: all 0.25s ease;
}

.business-btn:hover {
  background: #00BFFF;
  color: #fff;
  transform: translateY(-2px);
}

.business-right {
  position: relative;
  overflow: hidden;
  background: #eef8fb;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}

.business-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business-inner:hover .business-image {
  transform: scale(1.03);
}

.business-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,31,63,0.72) 0%, rgba(0,31,63,0.18) 55%, transparent 100%);
}

.business-right-inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}

.business-quote {
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid #00BFFF;
}

.business-quote-text {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 4px;
}

.business-quote-attr {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.business-feats {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.business-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
  .business-inner {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .business-left {
    padding: 3rem 2rem;
  }

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

  .business-right {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .business-right {
    display: none;
  }
  .business-logos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .logo-badge {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 68px;
    padding: 0.75rem;
  }

  .business-logo {
    max-width: 100%;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

.business-section-wrapper {
  padding: 0 1rem 2rem;
  box-sizing: border-box;
}

.business-inner {
  width: calc(100% - 2rem) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  border-radius: 0;
}

  .business-left {
    padding: 2rem 1.25rem;
    gap: 1rem;
  }

  .business-title {
    font-size: 1.6rem;
    line-height: 1.15;
  }

  .business-desc {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .business-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .business-stat {
    padding: 0.9rem;
    border-radius: 0;
  }

  .business-stat-num {
    font-size: 1.1rem;
  }

  .business-stat-label {
    font-size: 0.72rem;
  }

  .business-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .business-right {
    min-height: 300px;
  }

  .business-right-inner {
    padding: 1.5rem;
  }
}
/* END_SECTION:home-business */

/* START_SECTION:home-hero (INDEX:32) */
.hero-logo-overlay {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 10;
  opacity: 0.92;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: opacity 0.2s ease;
}

.hero-logo-overlay:hover {
  opacity: 1;
}

.hero-logo-overlay img {
  width: 70px;
  height: 70px;
  display: block;
}
.hero-slide__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-logo-overlay {
    top: 1rem;
    right: 1rem;
  }
  .hero-logo-overlay img {
    width: 50px;
    height: 50px;
  }
}
.hero-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 4px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease;
  backdrop-filter: blur(4px);
}

.hero-arrow:hover {
  background: rgba(255,255,255,0.3);
}

.hero-arrow--prev {
  left: 1.5rem;
}

.hero-arrow--next {
  right: 1.5rem;
}

@media (max-width: 480px) {
  .hero-arrow {
    width: 36px;
    height: 36px;
  }
}

.shopify-section:has(.hero-slideshow) {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.hero-slideshow {
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  max-width: 100vw !important;
}
.hero-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 600px;
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 6vw;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.hero-slide__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 1rem;
}

.hero-slide__stars {
  font-size: 1.4rem;
  color: #4ade80;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.hero-slide__trust-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-slide__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.25rem 0;
  color: #fff;
}

.hero-slide__sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btn {
  display: inline-block;
  padding: 0.9rem 2rem;        /* restore desktop size */
  border-radius: 0;
  font-size: 0.95rem;          /* restore desktop size */
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
  cursor: pointer;
}
.hero-btn--primary {
  background: #00BFFF;
  color: #002855;
  border: 2px solid #00BFFF;
}

.hero-btn--primary:hover {
  background: #0095c8;
  border-color: #0095c8;
}

.hero-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.hero-btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

@media (max-width: 768px) {
  .hero-slideshow { height: 380px; }
  .hero-slide__title { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .hero-slide__sub { font-size: 0.9rem; margin-bottom: 1.25rem; }
  .hero-slide__content { padding: 0 5vw; }
  .hero-slide__stars { font-size: 1.1rem; margin-bottom: 0.35rem; }
  .hero-slide__eyebrow { margin-bottom: 0.5rem; }
  .hero-arrow { display: none; }
  .hero-btn {
    padding: 0.55rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    border-radius: 0;
    font-weight: 600;
  }
  .hero-slide__btns { gap: 0.6rem; }
}

@media (max-width: 480px) {
  .hero-slideshow { height: 320px; }
  .hero-slide__title { font-size: 1.4rem; }
  .hero-slide__sub { display: none; }
  .hero-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
  }
  .hero-slide__btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/* END_SECTION:home-hero */

/* START_SECTION:home-products (INDEX:33) */
.product-types-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00BFFF;
  margin-bottom: 0.5rem;
}

.product-types-section-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 3rem 0 2rem;
  box-sizing: border-box;
}

.product-types-section {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  font-family: inherit;
  box-sizing: border-box;
}

.product-types-title {
  font-size: 2rem;
  font-weight: 800;
  color: #001f3f;
  margin: 0 0 0.4rem 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.product-types-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 2rem 0;
  line-height: 1.6;
}

.product-types-carousel-outer {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.product-types-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 0;
  padding: 1rem 0 1.5rem;
  box-sizing: border-box;
  width: 100%;
}

.product-types-track-inner {
  display: flex;
  gap: 1rem;
  animation: categoryScroll 30s linear infinite;
  width: max-content;
}

.product-types-track-inner:hover {
  animation-play-state: paused;
}

@keyframes categoryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.product-types-track::-webkit-scrollbar {
  display: none;
}

.product-type-item {
  flex: 0 0 220px;
  min-width: 220px;
  max-width: 220px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

.product-type-card {
  background: linear-gradient(135deg, #f8fbfc 0%, #edf6f8 100%);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem 1.5rem;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e8eef2;
}

.product-type-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.product-type-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1.25rem;
  display: block;
  transition: transform 0.3s ease;
}

.product-type-card:hover .product-type-img {
  transform: scale(1.06);
}

.product-type-label {
  font-size: 1rem;
  color: #001f3f;
  text-align: center;
  font-weight: 700;
  transition: color 0.2s ease;
}

.product-type-card:hover .product-type-label {
  color: #00baff;
}

.product-type-count {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 4px;
  text-align: center;
}

.product-types-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #001f3f;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: none;
}

.product-types-arrow--prev {
  left: 1.5vw;
}

.product-types-arrow--next {
  right: 1.5vw;
}

.product-types-arrow:hover {
  background: #001f3f;
  border-color: #001f3f;
  color: #fff;
}

.product-types-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product-types-cta {
  text-align: center;
  font-size: 1rem;
  color: #64748b;
  margin-top: 2rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .product-type-item {
    flex: 0 0 180px;
    min-width: 180px;
    max-width: 180px;
  }
  .product-type-img {
    height: 130px;
  }
}

@media (max-width: 600px) {
  .product-types-section-wrapper {
    padding: 2rem 0 1rem;
  }
  .product-types-section {
    width: 100%;
    padding: 0 1rem;
  }
  .product-types-title {
    font-size: 1.4rem;
  }
  .product-types-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .product-type-item {
    flex: 0 0 44vw;
    min-width: 44vw;
    max-width: 44vw;
  }
  .product-types-track {
    padding: 1rem 1rem 1.5rem;
    gap: 0.75rem;
  }
  .product-types-arrow {
    display: none;
  }
  .product-type-img {
    height: 110px;
  }
  .product-type-label {
    font-size: 0.875rem;
  }
}
/* END_SECTION:home-products */

/* START_SECTION:home-safe (INDEX:34) */
.safe-section-wrapper {
  width: 100%;
  background: #ffffff;
  padding: 0.5rem 0 4rem !important;
  box-sizing: border-box;
}

.safe-section {
  width: 88%;
  max-width: 1400px;
  margin: 0 auto;
  font-family: inherit;
  box-sizing: border-box;
}

.safe-strip__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00BFFF;
  margin-bottom: 0.75rem;
}

.safe-strip__title {
  font-size: 2rem;
  font-weight: 800;
  color: #001f3f;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.safe-strip__title--sustain {
  margin-bottom: 0.75rem;
}

.safe-strip__desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 0 1.5rem;
}

.safe-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #001f3f;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
  border-radius: 0;
  text-decoration: none;
  letter-spacing: 0.04em;
  align-self: flex-start;
  transition: all 0.25s ease;
}
.safe-strip__btn:hover {
  background: #00BFFF;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Trust section */
.safe-trust-card {
  padding: 0.5rem 0 1.5rem;
  margin-bottom: 3rem;
  background: #ffffff;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.safe-strip__subtitle {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0.4rem 0 0;
  line-height: 1.6;
}

.safe-section-heading {
  margin-bottom: 0;
}

.safe-trust-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e8eef2;
  margin-top: 2rem;
}

.safe-trust-item {
  padding: 1.75rem 1.5rem 1.5rem 0;
}

.safe-trust-item + .safe-trust-item {
  padding-left: 1.5rem;
  border-left: 1px solid #e8eef2;
}

.safe-trust-item--stat {
  padding-right: 2rem;
}

.safe-trust-stat {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002855;
  margin: 0 0 0.2rem;
  line-height: 1;
}

.safe-trust-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin: 0 0 0.6rem;
}

.safe-trust-body {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Build card */
.safe-feature-card--build {
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #e8eef2;
  overflow: hidden;
  margin-bottom: 3rem;
}

.safe-build-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 420px;
}

.safe-build-text-area {
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e8eef2;
}

.safe-build-desc-box {
  background: #f8fafc;
  border: 1px solid #e8eef2;
  border-radius: 0;
  padding: 1.5rem;
  margin-top: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.safe-strip__btn--build {
  align-self: flex-start;
}

.safe-build-image-area {
  position: relative;
  background: linear-gradient(135deg, #dbeeff 0%, #eaf4ff 50%, #f0f8ff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.safe-build-img {
  width: 70%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.safe-annotation {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1e293b;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.safe-annotation::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 1px;
  background: #94a3b8;
  top: 50%;
}

.safe-annotation--1 { top: 18%; left: 5%; }
.safe-annotation--1::after { right: -24px; }

.safe-annotation--2 { top: 18%; right: 5%; }
.safe-annotation--2::after { left: -24px; }

.safe-annotation--3 { top: 48%; left: 5%; }
.safe-annotation--3::after { right: -24px; }

/* Sustainability bento */
.safe-feature-card--sustain {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1fr;
  border-radius: 0;
  background: #ffffff;
  border: 1px solid #e8eef2;
  overflow: hidden;
  margin-bottom: 0;
}

.safe-sustain-left {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #e8eef2;
}

.safe-sustain-middle {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  border-right: 1px solid #e8eef2;
}

.safe-sustain-data-card {
  background: #f8fafc;
  border-radius: 0;
  padding: 1rem 1.25rem;
}

.safe-sustain-data-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #001f3f;
  line-height: 1;
  margin: 0 0 0.25rem;
}

.safe-sustain-data-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  margin: 0 0 0.2rem;
}

.safe-sustain-data-sub {
  font-size: 0.72rem;
  color: #94a3b8;
  margin: 0;
}

.safe-sustain-right {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.safe-sustain-lc-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.safe-sustain-lc-row {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.safe-lc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.safe-lc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  margin-bottom: 5px;
}

.safe-lc-dot--active {
  background: #00bfff;
}

.safe-lc-line {
  flex: 1;
  height: 1px;
  background: #e2e8f0;
  margin-top: 4px;
  min-width: 8px;
}

.safe-lc-line--active {
  background: #00bfff;
}

.safe-lc-label {
  font-size: 0.55rem;
  text-align: center;
  color: #94a3b8;
  letter-spacing: 0.03em;
  line-height: 1.3;
  white-space: nowrap;
}

.safe-lc-label--active {
  color: #00bfff;
}

.safe-sustain-lc-note {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.safe-sustain-svg-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
}

.safe-sustain-svg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.safe-sustain-since {
  padding-top: 0.75rem;
  border-top: 1px solid #e8eef2;
  margin-top: auto;
}

.safe-sustain-since p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.safe-sustain-since strong {
  color: #001f3f;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 900px) {
  .safe-section {
    width: 92%;
  }

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

  .safe-trust-item:nth-child(2) {
    border-right: none;
  }

  .safe-trust-item:nth-child(1),
  .safe-trust-item:nth-child(2) {
    border-bottom: 1px solid #e8eef2;
  }

.safe-build-inner {
  grid-template-columns: 1fr;
}

.safe-build-text-area {
  border-right: none;
  border-bottom: 1px solid #e8eef2;
}

.safe-build-image-area {
  min-height: 280px;
}

  .safe-feature-card--sustain {
    grid-template-columns: 1fr 1fr;
  }

  .safe-sustain-right {
    grid-column: 1 / -1;
    border-top: 1px solid #e8eef2;
  }

  .safe-sustain-left,
  .safe-sustain-middle {
    border-right: none;
  }

  .safe-sustain-middle {
    border-left: 1px solid #e8eef2;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .safe-section-wrapper { padding: 1.5rem 0; }
  .safe-section { width: 100%; padding: 0 1rem; }
  .safe-trust-card { padding: 1.5rem 0; }
  .safe-strip__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
  .safe-strip__desc { font-size: 0.875rem; margin-bottom: 1rem; }
  .safe-strip__btn { width: 100%; justify-content: center; }

  .safe-trust-grid {
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #e8eef2;
    gap: 0;
  }
  .safe-trust-item {
    padding: 1rem 0.75rem;
    border-left: none !important;
    border-top: none;
  }
  .safe-trust-item:nth-child(1),
  .safe-trust-item:nth-child(2) {
    border-bottom: 1px solid #e8eef2;
  }
  .safe-trust-item:nth-child(2),
  .safe-trust-item:nth-child(4) {
    border-left: 1px solid #e8eef2 !important;
  }
  .safe-trust-item--stat {
    padding-right: 0.75rem;
    border-top: none;
    padding-top: 1rem;
  }
  .safe-trust-stat { font-size: 1.5rem; }
  .safe-trust-body { font-size: 0.8rem; }

  /* Build card - image as background */
.safe-feature-card--build {
  background-image: var(--build-bg);
  background-size: 55%;
  background-repeat: no-repeat;
  background-position: center right;
  background-color: #ffffff;
  min-height: 320px;
}
.safe-build-inner {
  display: block;
  min-height: unset;
}
.safe-build-image-area {
  display: none;
}
.safe-build-text-area {
  border-bottom: none;
  background: transparent;
  padding: 1.5rem 1rem;
  border-right: none;
  width: 60%;
}
.safe-build-desc-box {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0.5rem;
}
.safe-build-desc-box .safe-strip__desc {
  color: #334155;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);

.safe-strip__btn--build {
  width: auto;
  margin-top: 1rem;
}
}
  .safe-annotation { display: none; }

  /* Sustainability */
  .safe-feature-card--sustain {
    grid-template-columns: 1fr;
    border-radius: 0;
  }
  .safe-sustain-left {
    padding: 1.5rem 1rem;
    border-right: none !important;
    border-bottom: 1px solid #e8eef2;
  }
  .safe-sustain-middle {
    padding: 1.25rem 1rem;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid #e8eef2;
    gap: 6px;
  }
  .safe-sustain-right {
    grid-column: 1;
    padding: 1.25rem 1rem;
    border-bottom: none;
    gap: 0.6rem;
  }
  .safe-sustain-data-card { padding: 0.75rem 1rem; }
  .safe-sustain-data-num { font-size: 1.1rem; }
  .safe-sustain-svg-wrap { border-radius: 6px; }
}
/* END_SECTION:home-safe */

/* START_SECTION:password (INDEX:36) */
.password-page {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--color-foreground, #fff);
  }

  .password-page__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,var(--overlay-opacity)), rgba(0,0,0,var(--overlay-opacity)));
    background-color: var(--overlay-color);
    opacity: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
  }

  .password-page__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
  }

  .password-page__logo img {
    max-height: 64px;
    margin-bottom: 20px;
  }

  .password-page__title {
    margin: 0 0 12px;
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .password-page__description {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.9);
  }

  .password-page__form {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }

  .password-page__input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-size: 1rem;
  }

  .password-page__input::placeholder {
    color: rgba(255,255,255,0.6);
  }

  .password-page__button {
    padding: 12px 18px;
    border-radius: 8px;
    border: none;
    background-color: var(--button-bg, #111827);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
  }

  .password-page__errors {
    margin-bottom: 12px;
    color: #ffb4b4;
  }

  .visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }

  @media (max-width: 520px) {
    .password-page__form {
      flex-direction: column;
    }
    .password-page__button {
      width: 100%;
    }
  }
/* END_SECTION:password */

/* START_SECTION:phonecheck-certified (INDEX:37) */
.pc-header { width:100%; color:#fff; padding:0; overflow:hidden; }
.pc-header__inner { max-width:1440px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; min-height:260px; }
.pc-header__left { padding:2rem 3rem 2rem 4vw; display:flex; flex-direction:column; justify-content:center; }
.pc-header__right { position:relative; overflow:hidden; }
.pc-header__img { width:100%; height:100%; object-fit:contain; object-position:center bottom; display:block; max-height:320px; }
.pc-header__img-placeholder { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; background:rgba(255,255,255,0.05); color:rgba(255,255,255,0.3); font-size:0.75rem; text-align:center; padding:2rem; }
.pc-title { font-size:1.6rem; font-weight:700; color:#fff; line-height:1.25; margin:0 0 0.75rem; letter-spacing:-0.01em; }
.pc-subtitle { font-size:0.95rem; color:rgba(255,255,255,0.8); line-height:1.7; margin-bottom:1.25rem; max-width:520px; }
.pc-read-more { display:none; font-size:0.8rem; color:#2ec6d3; cursor:pointer; margin-bottom:1rem; font-weight:500; }
.pc-trust-pills { display:flex; flex-wrap:wrap; gap:8px; }
.pc-trust-pill { display:inline-flex; align-items:center; background:rgba(255,255,255,0.08); border:2px solid rgba(255,255,255,0.9); border-radius:0; padding:5px 14px; font-size:0.78rem; color:#fff; font-weight:500; }

.pc-container { max-width:1440px; margin:0 auto; padding:2.5rem 4vw 3rem; }

.pc-section-label { font-size:1rem; font-weight:900; text-transform:uppercase; letter-spacing:0.1em; color:#0f172a; margin:0 0 0.5rem; }
.pc-section-intro { font-size:0.9rem; color:#0f172a !important; line-height:1.6; margin:0 0 1.5rem; max-width:640px; }

.pc-checks-section { display:grid; grid-template-columns:1fr 1fr; gap:3rem; margin-bottom:2rem; background:#fff; border:none; padding:2rem; }
.pc-checks-list { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.pc-check-item { display:flex; align-items:center; gap:12px; padding:0.85rem 0; border-bottom:1px solid #f1f5f9; font-size:0.9rem; color:#0f172a; font-weight:500; }
.pc-check-item:nth-last-child(-n+2) { border-bottom:none; }
.pc-check-icon { width:40px; height:40px; background:#f8fafc; border:1px solid #e2e8f0; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pc-checks-right { display:flex; align-items:center; justify-content:center; }
.pc-badge-img { width:100%; max-width:420px; height:auto; display:block; }
.pc-badge-placeholder { width:100%; aspect-ratio:4/3; border:1px dashed #cbd5e1; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; color:#94a3b8; font-size:0.8rem; text-align:center; }

.pc-card { background:#fff; border:none; border-radius:0; padding:2rem; box-shadow:none; }

.pc-report { border:1px solid #e2e8f0; border-radius:0; overflow:hidden; }
.pc-report__header { background:#002855; padding:14px 18px; display:flex; align-items:center; justify-content:space-between; }
.pc-report__header-left { display:flex; align-items:center; gap:12px; }
.pc-icon-wrap { width:32px; height:32px; background:#2ec6d3; border-radius:0; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pc-report__title { font-size:0.875rem; font-weight:600; color:#fff; }
.pc-report__sub { font-size:0.75rem; color:rgba(255,255,255,0.55); }
.pc-certified-badge { background:#2ec6d3; color:#002855; font-size:0.75rem; font-weight:700; padding:4px 14px; border-radius:100px; }
.pc-report__meta { padding:14px 18px; display:grid; grid-template-columns:repeat(4,1fr); gap:12px; border-bottom:1px solid #f1f5f9; }
.muted { font-size:0.72rem; color:#0f172a; margin-bottom:2px; }
.pc-meta-val { font-size:0.85rem; font-weight:600; color:#0f172a; }
.pc-report__checks { padding:14px 18px; }
.pc-checks-report-grid { display:grid; grid-template-columns:1fr 1fr 1fr 1fr; gap:0; }
.pc-check-row { display:flex; align-items:center; justify-content:space-between; padding:6px 12px 6px 0; border-bottom:1px solid #f8fafc; gap:8px; }
.pc-check-row:last-child { border-bottom:none; }
.pc-check-name { font-size:0.8rem; color:#0f172a; }
.pc-pass { background:#166534; color:#fff; border-radius:0; padding:2px 8px; font-size:0.7rem; font-weight:600; white-space:nowrap; flex-shrink:0; }
.pc-report__footer { background:#f8fafc; padding:10px 18px; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.pc-report__footer span { font-size:0.72rem; color:#0f172a; }
.pc-report__footer a { font-size:0.75rem; color:#0ea5e9; text-decoration:none; white-space:nowrap; }
.pc-report__footer a:hover { text-decoration:underline; }

.pc-all-grades-banner { background:#f8fafc; border:1px solid #e2e8f0; text-align:center; padding:10px 16px; font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:#334155; margin-bottom:1rem; }
.pc-grades-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:1.25rem; }
.pc-grade-card { border:1px solid #e2e8f0; border-radius:0; padding:1.25rem; display:flex; flex-direction:column; }
.pc-grade-name { font-size:1rem; font-weight:700; color:#0f172a; margin-bottom:6px; }
.pc-grade-desc { font-size:0.8rem; color:#0f172a; line-height:1.5; }
.pc-info-box { background:#eff6ff; border-radius:0; padding:14px 18px; display:flex; align-items:flex-start; gap:10px; }
.pc-info-box p { font-size:0.85rem; color:#1e40af; line-height:1.6; margin:0; }

.pc-cta { background:#002855; border-radius:0; padding:2.5rem; display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.pc-cta__eyebrow { font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:#2ec6d3; display:block; margin-bottom:6px; }
.pc-cta__text { flex:1; }
.pc-cta__title { font-size:1.4rem; font-weight:700; color:#fff; margin:0 0 8px; }
.pc-cta__desc { font-size:0.875rem; color:rgba(255,255,255,0.65); max-width:400px; line-height:1.6; margin:0; }
.pc-cta__btns { display:flex; gap:10px; flex-wrap:wrap; }
.pc-btn { display:inline-flex; align-items:center; font-size:0.875rem; font-weight:600; padding:10px 20px; border-radius:0; text-decoration:none; transition:all 0.2s ease; }
.pc-btn--primary { background:#2ec6d3; color:#002855; }
.pc-btn--primary:hover { background:#25adb9; }
.pc-btn--ghost { background:rgba(255,255,255,0.1); color:#fff; border:1px solid rgba(255,255,255,0.25); }
.pc-btn--ghost:hover { background:rgba(255,255,255,0.18); }

@media (max-width:900px) {
  .pc-header__inner { grid-template-columns:1fr; }
  .pc-header__right { display:none; }
  .pc-checks-section { grid-template-columns:1fr; gap:1.5rem; }
  .pc-grades-grid { grid-template-columns:1fr 1fr; }
  .pc-report__meta { grid-template-columns:1fr 1fr; }
  .pc-checks-report-grid { grid-template-columns:1fr 1fr; }
  .pc-title { font-size:1.6rem; }
}

@media (max-width:640px) {
  .pc-header,
  .pc-header.full-width { width:100vw !important; max-width:100vw !important; overflow:hidden !important; box-sizing:border-box !important; }
  .pc-header__inner { grid-template-columns:1fr !important; width:100% !important; max-width:100% !important; overflow:hidden !important; box-sizing:border-box !important; }
  .pc-header__left { width:100% !important; max-width:100% !important; padding:1.5rem 1rem !important; box-sizing:border-box !important; overflow:hidden !important; }
  .pc-title { font-size:1.15rem !important; white-space:normal !important; word-break:break-word !important; overflow-wrap:break-word !important; max-width:100% !important; }
  .pc-subtitle { max-width:100%; word-break:break-word; overflow-wrap:break-word; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
  .pc-subtitle.expanded { display:block; overflow:visible; }
  .pc-read-more { display:inline-block; }
  .pc-trust-pills { flex-wrap:nowrap; overflow-x:auto; scrollbar-width:none; padding-bottom:4px; -webkit-overflow-scrolling:touch; max-width:100%; }
  .pc-trust-pills::-webkit-scrollbar { display:none; }
  .pc-trust-pill { flex-shrink:0; white-space:nowrap; font-size:0.72rem; padding:4px 10px; }
  .pc-container { padding:1rem 1rem 2rem; }
  .pc-checks-section { padding:1.25rem 1rem; gap:1rem; }
  .pc-checks-list { grid-template-columns:1fr 1fr; }
  .pc-check-item { padding:0.6rem 0; font-size:0.8rem; gap:8px; }
  .pc-check-item:nth-last-child(-n+2) { border-bottom:none; }
  .pc-check-item:last-child { border-bottom:none; }
  .pc-check-icon { width:32px; height:32px; flex-shrink:0; }
  .pc-card { padding:1.25rem 1rem; margin-bottom:1rem !important; }
  .pc-report__meta { grid-template-columns:1fr 1fr; gap:8px; padding:12px 14px; }
  .pc-checks-report-grid { grid-template-columns:1fr 1fr; }
  .pc-check-row { padding:5px 8px 5px 0; }
  .pc-check-name { font-size:0.72rem; }
  .pc-pass { font-size:0.65rem; padding:2px 6px; }
  .pc-report__footer { flex-direction:column; gap:6px; padding:10px 14px; }
  .pc-grades-grid { grid-template-columns:1fr 1fr; gap:8px; }
  .pc-grade-card { padding:1rem; }
  .pc-cta { flex-direction:column; align-items:flex-start; padding:1.5rem 1rem; }
  .pc-cta__title { font-size:1.15rem; }
  .pc-cta__btns { width:100%; flex-direction:column; }
  .pc-btn { width:100%; justify-content:center; }
  .pc-section-label { font-size:0.85rem; }
  .pc-section-intro { font-size:0.82rem; margin-bottom:1rem; }
}
/* END_SECTION:phonecheck-certified */

/* START_SECTION:privacy-content (INDEX:38) */
.policy-content {
  display: grid;
  grid-template-columns: var(--content-grid);
  padding: 2rem 0 4rem 0;
}

.policy-content__wrapper {
  grid-column: 2;
}

.policy-content__updated {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.policy-content__heading {
  color: var(--color-foreground);
  line-height: 1.3;
  margin: 2rem 0 1rem;
  font-weight: 700;
}
.policy-content__heading--h2 { font-size: 1.85rem; margin-top: 2.5rem; }
.policy-content__heading--h3 { font-size: 1.45rem; margin-top: 2rem; }
.policy-content__heading--h4 { font-size: 1.2rem; margin-top: 1.5rem; }

.policy-content__richtext {
  color: var(--color-foreground);
  line-height: 1.7;
}
.policy-content__richtext :is(p, ul, ol) { margin: 0 0 1.2rem; }
.policy-content__richtext a { color: #00B3FC; text-decoration: underline; }
.policy-content__richtext a:hover { color: #0077C8; }
.policy-content__richtext strong { font-weight: 600; }

.policy-content__list {
  padding-left: 1.5rem;
  margin: 0 0 1.2rem;
  line-height: 1.7;
}
.policy-content__list li { margin: 0.5rem 0; }

@media (max-width: 600px) {
  .policy-content { padding: 1.5rem 0 3rem 0; }
  .policy-content__heading--h2 { font-size: 1.6rem; }
  .policy-content__heading--h3 { font-size: 1.3rem; }
  .policy-content__heading--h4 { font-size: 1.1rem; }
}
/* END_SECTION:privacy-content */

/* START_SECTION:product-backup (INDEX:40) */
/* New product delivery estimate */
.new-delivery-estimate {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #475569;
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #f0f9ff;
  border-left: 3px solid #0ea5e9;
}
.new-delivery-estimate svg {
  color: #0ea5e9;
  flex-shrink: 0;
}
.colour-swatch-with-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.colour-swatch-label {
  font-size: 0.85rem !important;
  color: #334155 !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.colour-swatch-with-label {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
.colour-swatch-label--active {
  color: #0f172a;
  font-weight: 600;
}

.variant-option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.low-stock-warning {
  color: #dc2626;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.25rem;
}
.product-spec-badge--connectivity {
  border: 1.5px solid #0ea5e9;
  color: #0ea5e9;
}
.product-spec-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-spec-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  background: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.product-spec-badge--colour {
  border: 1.5px solid #0ea5e9;
  color: #0ea5e9;
}

.product-spec-badge--keyboard {
  border: 1.5px solid #0ea5e9;
  color: #0ea5e9;
}
.product-sold-out-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0ea5e9;
  border: 2px solid #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 3;
}
.phonecheck-overlay a {
  display: block;
  text-decoration: none;
}
.phonecheck-overlay a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}
.trust-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 0.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 0.78rem;
  color: #334155;
  font-weight: 500;
}

.trust-pill i {
  color: #00BFFF;
  font-size: 14px;
}

.sticky-atc-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  border-bottom: 2px solid #00BFFF;
  box-shadow: 0 2px 12px rgba(0, 40, 85, 0.1);
  padding: 10px 2rem;
}

.sticky-atc-bar.visible {
  display: block;
}

.sticky-atc-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-atc-title {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: #001f3f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-size: 1rem;
  font-weight: 700;
  color: #001f3f;
  white-space: nowrap;
}

.sticky-atc-btn {
  background: #00BFFF;
  color: #002855;
  border: none;
  border-radius: 0;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.sticky-atc-btn:hover {
  background: #0095c8;
}

@media (max-width: 768px) {
  .sticky-atc-title {
    display: none;
  }
  .trust-pills {
    gap: 5px;
  }
  .trust-pill {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
}
.variant-option-label-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.grading-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

/* Colour swatch variant buttons */

button.variant-colour-swatch {
  border-radius: 50% !important;
  -webkit-border-radius: 50% !important;
  padding: 0 !important;
  overflow: hidden;
}

.variant-colour-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--swatch-color);
  border: 2px solid #e2e8f0;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.variant-colour-swatch {
  background-color: var(--swatch-color) !important;
}

.variant-colour-swatch:hover {
  transform: scale(1.1);
  border-color: #0ea5e9;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.variant-colour-swatch.active {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
  background-color: var(--swatch-color);
}

.variant-colour-swatch.unavailable {
  opacity: 0.4;
  position: relative;
}

.variant-colour-swatch.unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  background: #6b7280;
  transform: rotate(-45deg);
}

.selected-colour-name {
  font-weight: 400;
  color: #64748b;
}

/* Peripherals Notice (M-chip) */
.peripherals-notice {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #065f46;
  margin-top: 1rem;
}

.peripherals-notice svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Peripherals Section (Intel iMac) */
.peripherals-section {
  margin-top: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 2px solid #e2e8f0;
}

.peripherals-header {
  margin-bottom: 1.25rem;
}

.peripherals-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2a9aefff;
  margin-bottom: 0.2rem;
}

.peripherals-subtitle {
  font-size: 0.8rem;
  color: #94a3b8;
}

.peripherals-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  
}

.peripheral-group-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.peripheral-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.peripheral-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 150px;
  position: relative;
}

.peripheral-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.peripheral-option:hover {
  border-color: #bae6fd;
  background: #ffffff;
}

.peripheral-option.is-selected {
  border-color: #0ea5e9;
  background: #ffffff;
}

.peripheral-img-wrap {
  width: 90px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.peripheral-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.peripheral-img-placeholder {
  width: 90px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  border-radius: 8px;
}

.peripheral-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.peripheral-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.3;
}

.peripheral-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: #0ea5e9;
}

.peripheral-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: #0ea5e9;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
}

.peripheral-option.is-selected .peripheral-check {
  display: flex;
}

@media (max-width: 640px) {
.product-content-section {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0 !important;
  margin-top: 0.5rem !important;
  left: 0 !important;
  position: relative !important;
  margin-bottom: 0 !important;
}
.content-tabs {
  width: 100%;
  box-sizing: border-box;
}
.shipping-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shipping-section {
  width: 100%;
}

.shipping-section ul {
  padding-left: 1.25rem;
}

.shipping-section li {
  word-break: break-word;
}
  .content-tabs {
  overflow: visible !important;
  border-radius: 12px;
}

.tab-content {
  overflow: visible !important;
}

.tab-panel {
  overflow: visible !important;
}

.accordion-wrapper {
  overflow: visible !important;
}

.tab-accordion-body.open {
  display: block;
  overflow: hidden !important;
  overflow-x: hidden !important;
}

.tab-nav {
  display: none !important;
}

.tab-panel {
  display: block !important;
  padding: 0 !important;
  animation: none !important;
}

.tab-panel-accordion {
  border-bottom: 1px solid #e2e8f0;
}

.tab-accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: #f8fafc;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  text-align: left;
}

.tab-accordion-btn.open {
  color: #0ea5e9;
  background: #fff;
}

.tab-accordion-arrow {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.tab-accordion-btn.open .tab-accordion-arrow {
  transform: rotate(180deg);
}

.tab-accordion-body {
  display: none;
  overflow: hidden !important;
  overflow-x: hidden !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.75rem 1rem !important;
}
.tab-accordion-body ul,
.tab-accordion-body ol {
  padding-left: 1rem !important;
}

.tab-accordion-body li,
.tab-accordion-body p,
.tab-accordion-body h4 {
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.content-text ul,
.content-text ol {
  padding-left: 1rem;
}

.content-text li {
  word-break: break-word;
  overflow-wrap: break-word;
}

.peripheral-options {
    gap: 0.5rem;
  }
.peripheral-option {
    width: 130px;
    padding: 0.75rem;
  }
.purchase-row {
   display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem;
}

.quantity-control {
  display: flex !important;
  width: 100%;
  justify-content: space-between;
}

.quantity-input {
  flex: 1;
  width: auto;
  min-width: 0;
}

.qty-btn {
  width: 44px;
  height: 44px;
  min-height: 44px;
  flex-shrink: 0;
  min-width: 0;
  font-size: 16px;
}

.add-to-cart-btn {
  width: 100%;
  white-space: nowrap;
}
}

/* Related Products */
.related-products-section {
 background: #ffffff;
  padding: 1.5rem 0 1.5rem;
  border-top: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.product-content-section,
.whats-included-section,
.related-products-section {
  position: relative;
}

.product-content-section::before,
.whats-included-section::before,
.related-products-section::before {
  display: none;
}
.related-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.related-products-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.related-view-all {
  font-size: 0.875rem;
  color: #1a8fc1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.related-view-all:hover {
  border-bottom-color: #1a8fc1;
}

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

.related-product-card {
  background: #fff;
  border-radius: 0;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

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

.related-product-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 0;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.related-product-card:hover .related-product-image img {
  transform: scale(1.04);
}

.related-product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}

.related-sold-out {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0ea5e9;
  border: 1.5px solid #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 2;
}

.related-product-info {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.related-product-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

.related-product-options {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0;
}

.related-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: auto;
  padding-top: 8px;
}

.related-from {
  font-size: 0.75rem;
  color: #64748b;
}

.related-price {
  font-size: 1rem;
  font-weight: 700;
  color: #0284c7;
}

.related-compare {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.related-klarna {
  font-size: 0.7rem;
  color: #94a3b8;
  margin: 2px 0 0 0;
}
@media (max-width: 640px) {
  .related-products-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    box-sizing: border-box;
    padding-top: 0.75rem !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  body.template-product {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 1024px) {
  .related-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .related-products-grid { grid-template-columns: repeat(2, 1fr); }
  .related-products-title { font-size: 1.1rem; }
}

@media (max-width: 480px) {
 .related-products-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.75rem;
  }
    .related-product-image {
    aspect-ratio: 1/1 !important;
  }

  .related-products-grid::-webkit-scrollbar {
    display: none;
  }

  .related-product-card {
    flex: 0 0 38vw;
    min-width: 38vw;
    max-width: 38vw;
    scroll-snap-align: start;
  }

  .related-products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 1rem;
  }

  .related-products-title {
    font-size: 1rem;
  }

  .related-view-all {
    font-size: 0.8rem;
  }
}

body.template-product {
  background: #ffffff;
}

.product-page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1.25rem 3rem;
}

.breadcrumbs {
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 1rem;
}
.breadcrumbs a { color: #334155; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.crumb-sep { margin: 0 0.5rem; color: #94a3b8; }

.product-page-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2rem;
}

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

.gallery-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1rem;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
	display: grid;
	gap: 1rem;
	height: 600px;
	max-height: 600px;
}

/* Two column layout when thumbnails exist */
.gallery-card:has(.thumbnail-column) {
	grid-template-columns: 100px 1fr;
}

/* Single column layout when no thumbnails */
.gallery-card:not(:has(.thumbnail-column)) {
	grid-template-columns: 1fr;
}

.thumbnail-column {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.thumb { 
	border: 2px solid #e5e7eb; 
	border-radius: 8px; 
	padding: 0.25rem; 
	background: #fff; 
	cursor: pointer; 
	flex-shrink: 0;
	transition: all 0.2s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.thumb img { 
	display: block; 
	border-radius: 6px; 
	width: 80px; 
	height: 60px; 
	object-fit: contain; 
}

.thumb:hover { 
	box-shadow: 0 4px 12px rgba(15,23,42,0.08); 
	transform: translateY(-1px);
}

.thumb.is-active { 
	border-color: #0ea5e9;
	box-shadow: 0 0 0 1px #0ea5e9;
}

.main-image-wrapper { 
	position: relative; 
	overflow: hidden; 
	border-radius: 12px; 
	background: #fff; 
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.phonecheck-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent; /* no background so only the badge image sits over the product */
  border: none;
  border-radius: 8px;
  padding: 0; /* remove extra padding so badge sits flush */
  z-index: 2;
  transition: transform 0.18s ease, opacity 0.18s ease;
  pointer-events: auto;
  display: inline-block;
}

/* Make the badge image itself act as an overlay:
   - transparent background should be used in the PNG asset
   - adjust opacity so it sits as a subtle overlay; change to 1.0 for fully opaque */
.phonecheck-overlay img {
  display: block;
  width: 140px;
  height: auto;
  background: transparent; /* ensure no background behind the image */
  opacity: 0.6; /* more transparent overlay */
  mix-blend-mode: normal;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.18s ease, opacity 0.18s ease;
  will-change: transform, opacity;
}

/* Hover state: make badge a touch more visible and give a slight lift */
.phonecheck-overlay:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* Zoom Modal Styles */
.zoom-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.zoom-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.zoom-modal-content {
	position: relative;
	max-width: 95vw;
	max-height: 95vh;
	z-index: 1;
}

.zoom-modal-image {
	max-width: 100%;
	max-height: 95vh;
	display: block;
	object-fit: contain;
	border-radius: 8px;
  padding: 1rem;
  background-color: #fff;
}

.zoom-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.8);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	color: #fff;
	z-index: 2;
}

.zoom-modal-close:hover {
	background: rgba(0, 0, 0, 1);
	transform: scale(1.1);
}

.main-image-wrapper img { 
	max-width: 100%; 
	max-height: 100%; 
	display: block; 
	object-fit: contain; 
	background-color: #fff; 
}

.zoom-btn { 
	position: absolute; 
	right: 0.75rem; 
	bottom: 0.75rem; 
	background: #fff; 
	border: 1px solid #e2e8f0; 
	border-radius: 50%; 
	width: 36px; 
	height: 36px; 
	box-shadow: 0 6px 16px rgba(15,23,42,0.12); 
	cursor: pointer; 
	display: grid; 
	place-items: center;
	transition: all 0.2s ease;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.zoom-btn:hover {
	box-shadow: 0 8px 20px rgba(15,23,42,0.16);
	transform: translateY(-1px);
}

.product-info { display: flex; flex-direction: column; gap: 1rem; padding: 1rem; }
.product-title { font-size: 1.6rem; line-height: 1.2; margin: 0; color: #001f3f; }

.price-block { display: grid; gap: 0.25rem; }
.price-row { display: flex; align-items: baseline; gap: 0.6rem; }
.price { font-size: 1.6rem; font-weight: 700; color: #334155; }
.compare-at { font-size: 1rem; color: #94a3b8; text-decoration: line-through; }
.vat-note { font-size: 0.85rem; color: #94a3b8; }

.condition { font-weight: 600; color: #0f172a; }

.delivery-card {
  display: grid;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
}
.delivery-label {
  font-weight: 600;
}
.delivery-text {
  color: #475569;
}
.carbon-neutral {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.95rem;
  color: #065f46;
}
.carbon-neutral img {
  width: 24px;
  height: 24px;
}
.carbon-neutral a {
  color: #065f46;
  text-decoration: underline;
}
.carbon-neutral a:hover {
  text-decoration: none;
}



.financing { display: grid; gap: 0.5rem; }
.klarna-chip { width: 100%; text-align: center; background: #ffffff; color: #0f172a; border: 1px solid #e2e8f0; border-radius: 8px; padding: 0.45rem 0.6rem; font-weight: 700; cursor: default; }
.financing-pill { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.75rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; color: #475569; }
.financing-pill .learn-more { color: #0ea5e9; text-decoration: none; }
.financing-pill .learn-more:hover { text-decoration: underline; }
.financing-pill .arrow { margin-left: auto; color: #64748b; }

.purchase-row { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: center; }
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 0;
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}
.quantity-control:hover {
  border-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}
.quantity-control:focus-within {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  color: #475569;
  transition: all 0.2s ease;
  user-select: none;
}
.qty-btn:hover {
  background: #0ea5e9;
  color: #fff;
  transform: scale(1.05);
}
.qty-btn:active {
  transform: scale(0.95);
}
.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.qty-btn:disabled:hover {
  background: #f8fafc;
  color: #475569;
}
.quantity-input {
  width: 80px;
  height: 44px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  background: transparent;
  color: #0f172a;
  padding: 0 0.5rem;
}
.quantity-input:focus {
  outline: none;
  background: #f8fafc;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.add-to-cart-btn {
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
  transition: all 0.2s ease;
  width: 100%;
}
.add-to-cart-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

/* Options (variant chips) */
.options {
  display: grid;
  gap: 1rem;
}
.option-group {
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}
.option-label {
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.option-chip {
  appearance: none;
  background: #fff;
  border: none;
  color: #0f172a;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.option-chip:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.option-chip[aria-pressed="true"], .option-chip.is-active {
  background: #0ea5e9;
  color: #fff;
}
.option-chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.option-chip.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f1f5f9;
  color: #64748b;
}
.option-chip.unavailable:hover {
  box-shadow: none;
  transform: none;
}

/* Color option circles */
.option-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-color:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.option-color.is-active {
  background: transparent;
  box-shadow: 0 0 0 3px #0ea5e9;
}
.option-color[aria-pressed="true"], .option-color.is-active {
  background: transparent;
  color: inherit;
}
.color-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  position: relative;
}
.option-color[data-color="white"] .color-circle {
  border-color: #d1d5db;
}



/* .specifications-section h3, .accessories-section h3 { font-size: 1.1rem; font-weight: 600; margin: 0.5rem 0; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; background: #fff; border-radius: 8px; border: 1px solid #e5e7eb; }
.spec-item { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0.6rem 0.8rem; border-bottom: 1px solid #eef2f7; position: relative; }
.spec-label { font-size: 0.9rem; font-weight: 600; color: #374151; }
.spec-value { font-size: 0.9rem; font-weight: 500; color: #0f172a; display: flex; align-items: center; gap: 0.5rem; }
.spec-value a { color: #0ea5e9; text-decoration: none; }
.spec-value a:hover { text-decoration: underline; } */
.color-chip { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #cbd5f5; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7); }

.accessories-section {
  margin-top: 3rem;
}

.accessories-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin: 0 0 1rem 0;
}

.accessory-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.accessory-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.accessory-option:hover {
  box-shadow: 0 6px 18px rgba(2, 8, 23, 0.06);
  border-color: #cbd5e1;
  background: #f1f5f9;
}
.accessory-option input[type="checkbox"] {
  accent-color: #0ea5e9;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.accessory-option input[type="radio"] {
  accent-color: #0ea5e9;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Klarna Logo Integration */
.klarna-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.klarna-logo img {
  max-width: 100%;
  height: auto;
}

/* Desktop-only spec dividers */
@media (min-width: 641px) {
	.spec-item::after { content: ""; position: absolute; top: 0.6rem; bottom: 0.6rem; left: 50%; width: 1px; background: #eef2f7; }
	.spec-grid > .spec-item:nth-last-child(1),
	.spec-grid > .spec-item:nth-last-child(2) { border-bottom: none; }
}

/* Product Content Section */
.product-content-section {
  background: #ffffff !important;
  padding: 1.5rem 0;
  margin-top: 1rem;
  border-top: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  width: 100vw;
}

.content-tabs {
  background: #ffffff !important;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  width: 100%;
}

.tab-nav {
  display: flex;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.tab-button {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

.tab-button:hover {
  background: #f1f5f9;
  color: #334155;
}

.tab-button.active {
  background: #f0f9ff;
  color: #0ea5e9;
  border-bottom-color: #0ea5e9;
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-text {
  line-height: 1.7;
  color: #334155;
}

.content-text h1, .content-text h2, .content-text h3, .content-text h4 {
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-text h1 { font-size: 1.5rem; }
.content-text h2 { font-size: 1.3rem; }
.content-text h3 { font-size: 1.2rem; }
.content-text h4 { font-size: 1.1rem; }

.content-text p {
  margin-bottom: 1rem;
}

.content-text ul, .content-text ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

/* Buying for Business Section */
.buying-for-business-section {
  background: 
    linear-gradient(135deg, rgba(14, 165, 233, 0.95) 0%, rgba(2, 132, 199, 0.95) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80') center/cover no-repeat;
  padding: 4rem 0;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.buying-for-business-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.buying-for-business-section .product-page-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.business-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.buying-for-business-section h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.buying-for-business-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.business-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.business-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.business-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: #fff;
  stroke-width: 2;
}

.business-feature span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.business-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  color: #0284c7;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1.125rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.business-contact-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.business-contact-btn span {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.business-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #0369a1;
}

.business-contact-btn:hover::before {
  opacity: 1;
}

.business-contact-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.business-contact-btn:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Specifications Grid */
.specs-grid {
  display: grid;
  gap: 1rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.spec-label {
  font-weight: 600;
  color: #475569;
}

.spec-value {
  color: #334155;
}

.spec-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin: 0.1rem;
}

/* FAQ List */
.faq-list {
  display: grid;
  gap: 1.5rem;
}

.faq-item h4 {
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Shipping Info */
.shipping-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.shipping-section h4 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.shipping-section ul {
  margin: 0;
  padding-left: 1.5rem;
}

.shipping-section li {
  margin-bottom: 0.5rem;
  color: #334155;
}

.shipping-section p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tab-nav {
    flex-wrap: wrap;
  }
  
  .tab-button {
    flex: 1 1 50%;
    min-width: 120px;
  }
  
  .tab-panel {
    padding: 1.5rem;
  }
  
  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  
  .spec-label {
    font-size: 0.9rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
	.product-page-grid { grid-template-columns: 1fr; gap: 2rem; }
	.related-products { max-width: none; margin-left: 0; }
}

@media (max-width: 768px) {
	.gallery-card {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
		height: auto;
		max-height: none;
		padding: 0.75rem;
	}
	
	.thumbnail-column {
		flex-direction: row;
		overflow-x: auto;
		overflow-y: visible;
		padding-right: 0;
		padding-bottom: 0.5rem;
		order: 2;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}
	
	.thumbnail-column::-webkit-scrollbar {
		display: none;
	}
	
	.thumb {
		scroll-snap-align: start;
		min-width: 70px;
	}
	
	.main-image-wrapper {
		order: 1;
		height: 350px;
		min-height: 350px;
		border-radius: 8px;
	}
	
	.main-image-wrapper img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}
	
	/* Optimize zoom button for mobile */
	.zoom-btn {
		width: 44px;
		height: 44px;
		right: 0.5rem;
		bottom: 0.5rem;
	}
	
	/* PhoneCheck badge adjustment for mobile */
	.phonecheck-overlay {
		top: 0.5rem;
		right: 0.5rem;
	}
	
	.phonecheck-overlay img {
		width: 100px;
	}
	
	/* Business features 2 columns on tablet */
	.business-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 640px) {
.product-title {
  font-size: 1rem;
  line-height: 1.3;
  color: #001f3f !important;
}

.price {
  font-size: 1.2rem;
}

.variant-option-btn {
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 0;
  border-width: 1.5px;
}

.variant-option-buttons {
  gap: 0.3rem;
}

.variant-option-group {
  gap: 0.3rem;
}

.product-variant-options {
  gap: 0.625rem;
}

.variant-option-label {
  font-size: 0.75rem;
}

.add-to-cart-btn {
  font-size: 0.85rem;
  padding: 0.65rem 0.75rem;
  letter-spacing: 0;
  white-space: nowrap;
  border-radius: 0;
}
.vat-note {
  font-size: 0.75rem;
}

.product-info {
  gap: 0.5rem;
  padding: 0.25rem;
}
	.product-page-container { padding: 1.5rem 0.5rem 3rem; }
	.spec-grid { grid-template-columns: 1fr; }
	.add-to-cart-btn { width: 100%; }

 .product-content-section,
  .whats-included-section,
  .related-products-section {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

.content-tabs {
  border-radius: 0 !important;
  border: none !important;
  margin-bottom: 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

  .tab-accordion-body {
    padding: 0.75rem 0.75rem !important;
  }

  .product-content-section .product-page-container,
  .whats-included-section .product-page-container,
  .related-products-section .product-page-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
	
	/* Mobile gallery optimizations */
	.gallery-card {
		padding: 0.5rem;
		border-radius: 12px;
	}
	
	.main-image-wrapper {
		height: 300px;
		min-height: 300px;
		border-radius: 8px;
	}
	
	.thumb {
		padding: 0.2rem;
		border-width: 1.5px;
		min-width: 60px;
	}
	
	.thumb img {
		width: 56px;
		height: 42px;
		border-radius: 4px;
	}
	
	/* Zoom modal optimizations */
	.zoom-modal-content {
		max-width: 100vw;
		max-height: 100vh;
	}
	
	.zoom-modal-image {
		max-width: 100vw;
		max-height: 100vh;
		padding: 0.5rem;
		border-radius: 0;
	}
	
	.zoom-modal-close {
		width: 44px;
		height: 44px;
		font-size: 24px;
		top: 5px;
		right: 5px;
	}
	
	/* PhoneCheck badge for small mobile */
	.phonecheck-overlay {
		top: 0.4rem;
		right: 0.4rem;
	}
	
	.phonecheck-overlay img {
		width: 80px;
	}
	
	/* Business Section Mobile Styles */
	.buying-for-business-section {
		padding: 3rem 0;
	}
	
	.business-badge {
		font-size: 0.7rem;
		padding: 0.4rem 0.8rem;
	}
	
	.buying-for-business-section h2 {
		font-size: 1.75rem;
	}
	
	.buying-for-business-section p {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	
	.business-features {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin: 2rem 0;
	}
	
	.business-feature {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		padding: 1rem;
	}
	
	.feature-icon {
		width: 28px;
		height: 28px;
		flex-shrink: 0;
	}
	
	.business-feature span {
		text-align: left;
	}
	
	.business-contact-btn {
		width: 100%;
		justify-content: center;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
	
	/* Optimize touch targets for mobile */
.qty-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
}
	
	.option-chip {
		min-height: 44px;
		padding: 0.75rem 1rem;
		font-size: 0.95rem;
	}
	
	.quantity-control {
		min-height: 44px;
	}
	
	.quantity-input {
		min-height: 40px;
		font-size: 16px; /* Prevent zoom on iOS */
		padding: 0.9rem;
	}
	
	.add-to-cart-btn {
		min-height: 48px;
		font-size: 1.1rem;
		font-weight: 600;
	}
	
	.related-product-btn {
		min-height: 44px;
		padding: 0.75rem 1rem;
	}
	
	/* Touch interaction improvements */
	.main-image-wrapper {
		touch-action: pan-x pan-y;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		user-select: none;
	}
	
	.thumbnail-column {
		touch-action: pan-x;
		-webkit-overflow-scrolling: touch;
	}
	
	.thumb {
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}
	
	.thumb:active {
		transform: scale(0.95);
		transition: transform 0.1s ease;
	}
}

/* Variant Options Styling */
.product-variant-options {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin: 0;
}

.variant-option-group {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.variant-option-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
	text-transform: capitalize;
}

.variant-option-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.variant-option-btn {
	padding: 10px 18px;
	font-size: 0.875rem;
	font-weight: 500;
	border: 2px solid #e2e8f0;
	border-radius: 0;
	background: #ffffff;
	color: #334155;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.variant-option-btn:hover {
	border-color: #cbd5e1;
	background: #f8fafc;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.variant-option-btn.active {
	border-color: #0ea5e9;
	background: #e0f2fe;
	color: #0369a1;
	font-weight: 600;
}

.variant-option-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.variant-option-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.variant-option-btn.unavailable {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
}

.variant-option-btn.unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 1.5px;
  background: #94a3b8;
  transform: rotate(-45deg);
  transform-origin: center;
}

.variant-option-btn:disabled:hover {
	transform: none;
	box-shadow: none;
}
.whats-included-section {
  background: #ffffff;
  padding: 1.5rem 0;
  border-top: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.whats-included-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.5rem 0;
}

.whats-included-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.included-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.included-img-wrap {
  width: 250px;
  height: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.included-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.included-item p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #475569;
  margin: 0;
}

@media (max-width: 640px) {
  /* What's Included section */
.whats-included-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
.whats-included-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.whats-included-grid {
  gap: 0.75rem;
}

.included-img-wrap {
  width: 120px;
  height: 120px;
  padding: 0.75rem;
}

.included-item p {
  font-size: 0.8rem;
 }
}
@media (max-width: 640px) {
  /* Fix tab nav wrapping */
.tab-nav {
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-button {
  flex: 0 0 auto !important;
  padding: 0.75rem 0.75rem !important;
  font-size: 0.72rem !important;
  white-space: nowrap !important;
  min-width: 0 !important;
  min-height: auto !important;
}
  .financing-pill {
    flex-wrap: wrap;
    font-size: 0.75rem;
    padding: 0.5rem 0.6rem;
    gap: 0.4rem;
    line-height: 1.4;
  }

  .financing-pill img {
    width: 60px;
    height: auto;
  }

  .financing-pill .arrow {
    display: none;
  }
  .tab-accordion-btn {
    background: #ffffff !important;
  }

  .tab-accordion-body {
    background: #ffffff !important;
  }
}

@media (max-width: 640px) {
  .product-title {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .product-info {
    gap: 0.625rem;
    padding: 0.5rem 0.25rem;
  }

  .variant-option-group {
    gap: 0.25rem;
  }

  .product-variant-options {
    gap: 0.75rem;
  }

  .variant-option-btn {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .variant-option-label {
    font-size: 0.72rem;
  }

  .price {
    font-size: 1.3rem;
  }

  .vat-note {
    font-size: 0.72rem;
  }
}
/* END_SECTION:product-backup */

/* START_SECTION:product (INDEX:41) */
.product-page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1.25rem 3rem;
	width: 100%;
	box-sizing: border-box;
}

.breadcrumbs {
	font-size: 0.9rem;
	color: #64748b;
	margin-bottom: 1rem;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
.breadcrumbs a { color: #334155; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.crumb-sep { margin: 0 0.5rem; color: #94a3b8; }

.product-page-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2rem;
	width: 100%;
}

.gallery-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
	min-width: 0;
}

.gallery-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1rem;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
	display: grid;
	gap: 1rem;
	height: 600px;
	max-height: 600px;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

/* Two column layout when thumbnails exist */
.gallery-card:has(.thumbnail-column) {
	grid-template-columns: 100px 1fr;
}

/* Single column layout when no thumbnails */
.gallery-card:not(:has(.thumbnail-column)) {
	grid-template-columns: 1fr;
}

.thumbnail-column {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	overflow-y: auto;
	padding-right: 0.5rem;
}

.thumb { 
	border: 2px solid #e5e7eb; 
	border-radius: 8px; 
	padding: 0.25rem; 
	background: #fff; 
	cursor: pointer; 
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.thumb img { 
	display: block; 
	border-radius: 6px; 
	width: 80px; 
	height: 60px; 
	object-fit: contain; 
}

.thumb:hover { 
	box-shadow: 0 4px 12px rgba(15,23,42,0.08); 
	transform: translateY(-1px);
}

.thumb.is-active { 
	border-color: #0ea5e9;
	box-shadow: 0 0 0 1px #0ea5e9;
}

.main-image-wrapper { 
	position: relative; 
	overflow: hidden; 
	border-radius: 12px; 
	background: #fff; 
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.phonecheck-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent; /* no background so only the badge image sits over the product */
  border: none;
  border-radius: 8px;
  padding: 0; /* remove extra padding so badge sits flush */
  z-index: 2;
  transition: transform 0.18s ease, opacity 0.18s ease;
  pointer-events: auto;
  display: inline-block;
}

/* Make the badge image itself act as an overlay:
   - transparent background should be used in the PNG asset
   - adjust opacity so it sits as a subtle overlay; change to 1.0 for fully opaque */
.phonecheck-overlay img {
  display: block;
  width: 140px;
  height: auto;
  background: transparent; /* ensure no background behind the image */
  opacity: 0.3; /* more transparent overlay */
  mix-blend-mode: normal;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.18s ease, opacity 0.18s ease;
  will-change: transform, opacity;
}

/* Hover state: make badge a touch more visible and give a slight lift */
.phonecheck-overlay:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* Zoom Modal Styles */
.zoom-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.zoom-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.zoom-modal-content {
	position: relative;
	max-width: 95vw;
	max-height: 95vh;
	z-index: 1;
}

.zoom-modal-image {
	max-width: 100%;
	max-height: 95vh;
	display: block;
	object-fit: contain;
	border-radius: 8px;
  padding: 1rem;
  background-color: #fff;
}

.zoom-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.8);
	border: none;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	color: #fff;
	z-index: 2;
}

.zoom-modal-close:hover {
	background: rgba(0, 0, 0, 1);
	transform: scale(1.1);
}

.main-image-wrapper img { 
	max-width: 100%; 
	max-height: 100%; 
	display: block; 
	object-fit: contain; 
	background-color: #fff; 
}

.zoom-btn { 
	position: absolute; 
	right: 0.75rem; 
	bottom: 0.75rem; 
	background: #fff; 
	border: 1px solid #e2e8f0; 
	border-radius: 50%; 
	width: 36px; 
	height: 36px; 
	box-shadow: 0 6px 16px rgba(15,23,42,0.12); 
	cursor: pointer; 
	display: grid; 
	place-items: center;
	transition: all 0.2s ease;
}

.zoom-btn:hover {
	box-shadow: 0 8px 20px rgba(15,23,42,0.16);
	transform: translateY(-1px);
}

.product-info { 
	display: flex; 
	flex-direction: column; 
	gap: 1rem; 
	padding: 1rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
.product-title { 
	font-size: 1.6rem; 
	line-height: 1.2; 
	margin: 0; 
	color: #0284c7;
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
}

.price-block { display: grid; gap: 0.25rem; }
.price-row { display: flex; align-items: baseline; gap: 0.6rem; }
.price { font-size: 1.6rem; font-weight: 700; color: #334155; }
.compare-at { font-size: 1rem; color: #94a3b8; text-decoration: line-through; }
.vat-note { font-size: 0.85rem; color: #94a3b8; }

.condition { font-weight: 600; color: #0f172a; }

.delivery-card {
  display: grid;
  gap: 0.5rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
}
.delivery-label {
  font-weight: 600;
}
.delivery-text {
  color: #475569;
}
.carbon-neutral {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.95rem;
  color: #065f46;
}
.carbon-neutral img {
  width: 24px;
  height: 24px;
}
.carbon-neutral a {
  color: #065f46;
  text-decoration: underline;
}
.carbon-neutral a:hover {
  text-decoration: none;
}



.financing { display: grid; gap: 0.5rem; }
.klarna-chip { width: 100%; text-align: center; background: #ffffff; color: #0f172a; border: 1px solid #e2e8f0; border-radius: 8px; padding: 0.45rem 0.6rem; font-weight: 700; cursor: default; }
.financing-pill { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.75rem; background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; color: #475569; }
.financing-pill .learn-more { color: #0ea5e9; text-decoration: none; }
.financing-pill .learn-more:hover { text-decoration: underline; }
.financing-pill .arrow { margin-left: auto; color: #64748b; }

.purchase-row { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: center; }
.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
}
.quantity-control:hover {
  border-color: #0ea5e9;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.15);
}
.quantity-control:focus-within {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
.qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #f8fafc;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.2rem;
  color: #475569;
  transition: all 0.2s ease;
  user-select: none;
}
.qty-btn:hover {
  background: #0ea5e9;
  color: #fff;
  transform: scale(1.05);
}
.qty-btn:active {
  transform: scale(0.95);
}
.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.qty-btn:disabled:hover {
  background: #f8fafc;
  color: #475569;
}
.quantity-input {
  width: 80px;
  height: 44px;
  text-align: center;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  background: transparent;
  color: #0f172a;
  padding: 0 0.5rem;
}
.quantity-input:focus {
  outline: none;
  background: #f8fafc;
}
.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.add-to-cart-btn {
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
  transition: all 0.2s ease;
  width: 100%;
}
.add-to-cart-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
}

/* Options (variant chips) */
.options {
  display: grid;
  gap: 1rem;
}
.option-group {
  margin-bottom: 1rem;
  border: none;
  padding: 0;
}
.option-label {
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.option-chip {
  appearance: none;
  background: #fff;
  border: none;
  color: #0f172a;
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.option-chip:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.option-chip[aria-pressed="true"], .option-chip.is-active {
  background: #0ea5e9;
  color: #fff;
}
.option-chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.option-chip.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f1f5f9;
  color: #64748b;
}
.option-chip.unavailable:hover {
  box-shadow: none;
  transform: none;
}

/* Color option circles */
.option-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 2px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option-color:hover {
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}
.option-color.is-active {
  background: transparent;
  box-shadow: 0 0 0 3px #0ea5e9;
}
.option-color[aria-pressed="true"], .option-color.is-active {
  background: transparent;
  color: inherit;
}
.color-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: block;
  position: relative;
}
.option-color[data-color="white"] .color-circle {
  border-color: #d1d5db;
}



/* .specifications-section h3, .accessories-section h3 { font-size: 1.1rem; font-weight: 600; margin: 0.5rem 0; }
.spec-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; background: #fff; border-radius: 8px; border: 1px solid #e5e7eb; }
.spec-item { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; padding: 0.6rem 0.8rem; border-bottom: 1px solid #eef2f7; position: relative; }
.spec-label { font-size: 0.9rem; font-weight: 600; color: #374151; }
.spec-value { font-size: 0.9rem; font-weight: 500; color: #0f172a; display: flex; align-items: center; gap: 0.5rem; }
.spec-value a { color: #0ea5e9; text-decoration: none; }
.spec-value a:hover { text-decoration: underline; } */
.color-chip { width: 16px; height: 16px; border-radius: 50%; border: 1px solid #cbd5f5; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.7); }

.accessories-section {
  margin-top: 3rem;
}

.accessories-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #334155;
  margin: 0 0 1rem 0;
}

.accessory-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.accessory-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  background: #f8fafc;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.accessory-option:hover {
  box-shadow: 0 6px 18px rgba(2, 8, 23, 0.06);
  border-color: #cbd5e1;
  background: #f1f5f9;
}
.accessory-option input[type="checkbox"] {
  accent-color: #0ea5e9;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.accessory-option input[type="radio"] {
  accent-color: #0ea5e9;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Klarna Logo Integration */
.klarna-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5rem;
}
.klarna-logo img {
  max-width: 100%;
  height: auto;
}

/* Desktop-only spec dividers */
@media (min-width: 641px) {
	.spec-item::after { content: ""; position: absolute; top: 0.6rem; bottom: 0.6rem; left: 50%; width: 1px; background: #eef2f7; }
	.spec-grid > .spec-item:nth-last-child(1),
	.spec-grid > .spec-item:nth-last-child(2) { border-bottom: none; }
}

/* Product Content Section */
.product-content-section {
  background: #f8fafc;
  padding: 3rem 0;
}

.content-tabs {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.tab-nav {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.tab-button {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

.tab-button:hover {
  background: #f1f5f9;
  color: #334155;
}

.tab-button.active {
  background: #fff;
  color: #0ea5e9;
  border-bottom-color: #0ea5e9;
}

.tab-content {
  position: relative;
}

.tab-panel {
  display: none;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.content-text {
  line-height: 1.7;
  color: #334155;
}

.content-text h1, .content-text h2, .content-text h3, .content-text h4 {
  color: #0f172a;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-text h1 { font-size: 1.5rem; }
.content-text h2 { font-size: 1.3rem; }
.content-text h3 { font-size: 1.2rem; }
.content-text h4 { font-size: 1.1rem; }

.content-text p {
  margin-bottom: 1rem;
}

.content-text ul, .content-text ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.content-text li {
  margin-bottom: 0.5rem;
}

/* Specifications Grid */
.specs-grid {
  display: grid;
  gap: 1rem;
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

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

.spec-label {
  font-weight: 600;
  color: #475569;
}

.spec-value {
  color: #334155;
}

.spec-tag {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  margin: 0.1rem;
}

/* FAQ List */
.faq-list {
  display: grid;
  gap: 1.5rem;
}

.faq-item h4 {
  color: #0f172a;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-item p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Shipping Info */
.shipping-info {
  display: grid;
  gap: 2rem;
}

.shipping-section h4 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.shipping-section ul {
  margin: 0;
  padding-left: 1.5rem;
}

.shipping-section li {
  margin-bottom: 0.5rem;
  color: #334155;
}

.shipping-section p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tab-nav {
    flex-wrap: wrap;
  }
  
  .tab-button {
    flex: 1 1 50%;
    min-width: 120px;
  }
  
  .tab-panel {
    padding: 1.5rem;
  }
  
  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  
  .spec-label {
    font-size: 0.9rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
	.product-page-grid { grid-template-columns: 1fr; gap: 2rem; }
	.related-products { max-width: none; margin-left: 0; }
}

@media (max-width: 768px) {
	.gallery-card {
		grid-template-columns: 1fr !important;
		grid-template-rows: 1fr auto;
		height: auto;
		max-height: none;
		padding: 0.75rem;
		gap: 0.75rem;
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
	
	.thumbnail-column {
		flex-direction: row;
		overflow-x: auto;
		overflow-y: visible;
		padding-right: 0;
		padding-bottom: 0;
		order: 2;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		gap: 0.5rem;
		max-width: 100%;
		width: 100%;
	}
	
	.thumbnail-column::-webkit-scrollbar {
		display: none;
	}
	
	.thumb {
		scroll-snap-align: start;
		min-width: 70px;
		flex-shrink: 0;
		max-width: 70px;
	}
	
	.thumb img {
		width: 70px;
		height: 53px;
	}
	
	.main-image-wrapper {
		order: 1;
		height: 400px;
		min-height: 400px;
		max-height: 400px;
		border-radius: 8px;
		width: 100%;
		max-width: 100%;
	}
	
	.main-image-wrapper img {
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
		object-position: center;
	}
	
	/* Zoom button mobile */
	.zoom-btn {
		width: 44px;
		height: 44px;
		right: 0.5rem;
		bottom: 0.5rem;
	}
	
	/* PhoneCheck badge mobile */
	.phonecheck-overlay {
		top: 0.5rem;
		right: 0.5rem;
	}
	
	.phonecheck-overlay img {
		width: 100px;
	}
	
	/* Business features 2 columns on tablet */
	.business-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 640px) {
	.product-page-container { 
		padding: 1.5rem 1rem 3rem;
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
		box-sizing: border-box;
	}
	.spec-grid { grid-template-columns: 1fr; }
	.add-to-cart-btn { width: 100%; }
	
	.product-page-grid {
		width: 100%;
		max-width: 100%;
	}
	
	.gallery-column {
		width: 100%;
		max-width: 100%;
	}
	
	/* Mobile gallery styling */
	.gallery-card {
		padding: 0.5rem;
		border-radius: 12px;
		gap: 0.5rem;
		width: 100%;
		max-width: 100%;
	}
	
	.main-image-wrapper {
		height: 320px;
		min-height: 320px;
		max-height: 320px;
		border-radius: 8px;
		width: 100%;
		max-width: 100%;
	}
	
	.main-image-wrapper img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		object-position: center;
	}
	
	.thumbnail-column {
		gap: 0.4rem;
		padding-bottom: 0;
		max-width: 100%;
		width: 100%;
	}
	
	.thumb {
		padding: 0.2rem;
		border-width: 1.5px;
		min-width: 60px;
		max-width: 60px;
	}
	
	.thumb img {
		width: 56px;
		height: 42px;
		border-radius: 4px;
	}
	
	/* Zoom modal mobile */
	.zoom-modal-content {
		max-width: 100vw;
		max-height: 100vh;
	}
	
	.zoom-modal-image {
		max-width: 100vw;
		max-height: 100vh;
		padding: 0.5rem;
		border-radius: 0;
	}
	
	.zoom-modal-close {
		width: 44px;
		height: 44px;
		font-size: 24px;
		top: 5px;
		right: 5px;
	}
	
	/* PhoneCheck badge small mobile */
	.phonecheck-overlay {
		top: 0.4rem;
		right: 0.4rem;
	}
	
	.phonecheck-overlay img {
		width: 80px;
	}
	
	/* Business Section Mobile Styles */
	.buying-for-business-section {
		padding: 3rem 0;
	}
	
	.business-badge {
		font-size: 0.7rem;
		padding: 0.4rem 0.8rem;
	}
	
	.buying-for-business-section h2 {
		font-size: 1.75rem;
	}
	
	.buying-for-business-section p {
		font-size: 1rem;
		margin-bottom: 2rem;
	}
	
	.business-features {
		grid-template-columns: 1fr;
		gap: 0.75rem;
		margin: 2rem 0;
	}
	
	.business-feature {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		padding: 1rem;
	}
	
	.feature-icon {
		width: 28px;
		height: 28px;
		flex-shrink: 0;
	}
	
	.business-feature span {
		text-align: left;
	}
	
	.business-contact-btn {
		width: 100%;
		justify-content: center;
		padding: 1rem 1.5rem;
		font-size: 1rem;
	}
	
	/* Optimize touch targets for mobile */
	.qty-btn {
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
		font-size: 1.1rem;
	}
	
	.option-chip {
		min-height: 44px;
		padding: 0.75rem 1rem;
		font-size: 0.95rem;
	}
	
	.tab-nav button {
		min-height: 44px;
		padding: 0.75rem 1rem;
		font-size: 0.95rem;
	}
	
	.quantity-control {
		min-height: 44px;
	}
	
	.quantity-input {
		min-height: 44px;
		font-size: 16px; /* Prevent zoom on iOS */
		padding: 0.75rem;
	}
	
	.add-to-cart-btn {
		min-height: 48px;
		font-size: 1.1rem;
		font-weight: 600;
	}
	
	.related-product-btn {
		min-height: 44px;
		padding: 0.75rem 1rem;
	}
	
	/* Touch interaction improvements */
	.main-image-wrapper {
		touch-action: pan-x pan-y;
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		user-select: none;
	}
	
	.thumbnail-column {
		touch-action: pan-x;
		-webkit-overflow-scrolling: touch;
	}
	
	.thumb {
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}
	
	.thumb:active {
		transform: scale(0.95);
		transition: transform 0.1s ease;
	}
}

/* Variant Options Styling */
.product-variant-options {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin: 0;
}

.variant-option-group {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.variant-option-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
	text-transform: capitalize;
	display: flex;
    align-items: center;
    gap: 0.75rem;
}

.variant-option-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.variant-option-btn {
	padding: 10px 18px;
	font-size: 0.875rem;
	font-weight: 500;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	background: #ffffff;
	color: #334155;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.variant-option-btn:hover {
	border-color: #cbd5e1;
	background: #f8fafc;
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.variant-option-btn.active {
	border-color: #0ea5e9;
	background: #e0f2fe;
	color: #0369a1;
	font-weight: 600;
}

.variant-option-btn:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.variant-option-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
	background: #f9fafb;
}

.variant-option-btn:disabled:hover {
	transform: none;
	box-shadow: none;
}

.help-me-choose-injected {
    font-size: 0.8rem;
    font-weight: 500;
    color: #0ea5e9;
    text-decoration: none;
    border-bottom: 1px dashed #0ea5e9;
    display: inline-block;
    margin-left: 0.75rem;
}
/* END_SECTION:product */

/* START_SECTION:search (INDEX:44) */
.search-result-color-swatch {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.search-result-color-swatch:hover {
  transform: scale(1.1);
  border-color: #0ea5e9;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.search-result-color-swatch.color-swatch--static {
  cursor: default;
  pointer-events: none;
}

.search-result-color-swatch.color-swatch--unavailable {
  opacity: 0.5;
}

.search-result-color-swatch.color-swatch--unavailable::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  background: #6b7280;
  transform: rotate(-45deg);
  transform-origin: center;
  border-radius: 1px;
}

/* Colour mapping — matching collection page */
.search-result-color-swatch[data-color="space-grey"],
.search-result-color-swatch[data-color="space-gray"] { background-color: #6e6e73 !important; }
.search-result-color-swatch[data-color="silver"] { background-color: #c0c0c0 !important; }
.search-result-color-swatch[data-color="gold"] { background-color: #D4C9B1 !important; }
.search-result-color-swatch[data-color="rose-gold"] { background-color: #e8b4b8 !important; }
.search-result-color-swatch[data-color="midnight"] { background-color: #2c3441 !important; }
.search-result-color-swatch[data-color="starlight"] { background-color: #f2efe7 !important; border-color: #d1d5db !important; }
.search-result-color-swatch[data-color="blue"] { background-color: #95bee9 !important; }
.search-result-color-swatch[data-color="purple"] { background-color: #c9a3dc !important; }
.search-result-color-swatch[data-color="pink"] { background-color: #f6a4cc !important; }
.search-result-color-swatch[data-color="red"] { background-color: #ff3b30 !important; }
.search-result-color-swatch[data-color="yellow"] { background-color: #f9e48f !important; }
.search-result-color-swatch[data-color="green"] { background-color: #bdf4cb !important; }
.search-result-color-swatch[data-color="white"] { background-color: #ffffff !important; border-color: #d1d5db !important; }
.search-result-color-swatch[data-color="black"] { background-color: #000000 !important; }
.search-result-color-swatch[data-color="graphite"] { background-color: #5c5c5c !important; }
.search-result-color-swatch[data-color="space-black"] { background-color: #2e2e2e !important; }
.search-result-color-swatch[data-color="black-titanium"] { background-color: #333333 !important; }
.search-result-color-swatch[data-color="blue-titanium"] { background-color: #4a6274 !important; }
.search-result-color-swatch[data-color="white-titanium"] { background-color: #e8e4dc !important; border-color: #d1d5db !important; }
.search-result-color-swatch[data-color="natural-titanium"] { background-color: #b0a090 !important; }
.search-result-color-swatch[data-color="desert-titanium"] { background-color: #c5a882 !important; }
.search-result-color-swatch[data-color="deep-purple"] { background-color: #4b3b6e !important; }
.search-result-color-swatch[data-color="alpine-green"] { background-color: #4b6b52 !important; }
.search-result-color-swatch[data-color="pacific-blue"] { background-color: #2e6b8a !important; }
.search-result-color-swatch[data-color="sky-blue"] { background-color: #5eb8e8 !important; }
.search-result-color-swatch[data-color="cosmic-orange"] { background-color: #c85a2a !important; }
.search-result-color-swatch[data-color="titanium-grey"],
.search-result-color-swatch[data-color="titanium-gray"] { background-color: #8a8a8e !important; }
.search-result-color-swatch[data-color="titanium-black"] { background-color: #2c2c2e !important; }
.search-result-color-swatch[data-color="titanium-blue"] { background-color: #4a6274 !important; }
.search-result-color-swatch[data-color="titanium-green"] { background-color: #4a7c59 !important; }
.search-result-color-swatch[data-color="titanium-violet"] { background-color: #7d6b9e !important; }
.search-result-color-swatch[data-color="rose-gold"] { background-color: #e8b4b8 !important; }
.search-result-color-swatch[data-color="cosmic-grey"],
.search-result-color-swatch[data-color="cosmic-gray"] { background-color: #8e8e93 !important; }
.search-result-color-swatch[data-color="lavender"] { background-color: #c8b8d8 !important; }
.search-result-color-swatch[data-color="navy"] { background-color: #1b2a4a !important; }
.search-result-color-swatch[data-color="jet-black"] { background-color: #0a0a0a !important; }
.search-result-color-swatch[data-color="phantom-silver"] { background-color: #c8c8cc !important; }
.search-result-color-swatch[data-color="cloud-pink"] { background-color: #f4c2c2 !important; }
.search-result-color-swatch[data-color="cloud-blue"] { background-color: #a8c8e8 !important; }
.search-result-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.search-result-badges .product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1.5px solid #00BFFF;
  color: #00BFFF;
  background: transparent;
  white-space: nowrap;
}
.search-sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: #0ea5e9;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}
/* Reset body margins */
body {
  margin: 0;
  padding: 0;
}

/* Search Container */
.search-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 2rem 2vw;
  box-sizing: border-box;
  font-family: inherit;
}

/* Search Layout */
.search-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Search Filters - Reuse collection filter styles */
.search-filters {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 2rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.filter-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

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

.filter-group-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef;
}

.filter-clear {
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.filter-clear:hover {
  background: #c82333;
}

.filter-toggle {
  margin-left: auto;
  font-size: 0.8rem;
  color: #00c6fb;
  transition: transform 0.2s ease;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.filter-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.3rem 0;
}

.filter-checkbox {
  margin-right: 0.8rem;
  accent-color: #00c6fb;
}

.filter-label {
  flex: 1;
  font-size: 0.9rem;
  color: #495057;
}

.search-filters .filter-count {
  display: none !important;
}

/* Price Range Filters */
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-input {
  flex: 1;
  padding: 0.4rem 0.6rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 0.9rem;
}

.price-separator {
  color: #6c757d;
  font-weight: 600;
}

.price-range-slider {
  position: relative;
  height: 20px;
}

.price-slider {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #dee2e6;
  outline: none;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #00c6fb;
  border-radius: 50%;
  cursor: pointer;
}

.filter-summary {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #e3f2fd;
  border-radius: 8px;
  text-align: center;
}

.filter-summary-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1565c0;
}

/* Search Results */
.search-results {
  min-height: 400px;
}

.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.search-results-count {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.search-sort-options {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-sort-options label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.search-sort-select {
  padding: 0.4rem 0.8rem;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 0.9rem;
  background: white;
  cursor: pointer;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.search-result-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(6,22,32,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
  position: relative;
}

.search-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(6,22,32,0.12);
}

.result-type-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.result-type-product {
  background: #e8f5e8;
  color: #2e7d32;
}

.result-type-article {
  background: #e3f2fd;
  color: #1565c0;
}

.result-type-page {
  background: #fff3e0;
  color: #ef6c00;
}

.search-result-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
}

.search-result-image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 180ms ease;
}

.search-result-card:hover .search-result-image {
  transform: scale(1.05);
}

.search-result-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.search-result-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* Search Result Color Swatches */
.search-result-colors {
  display: flex;
  gap: 0.5rem;
  padding: 0.25rem 0 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-result-colors .color-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: inline-block;
}

.search-result-colors .color-swatch:hover {
  transform: scale(1.1);
  border-color: #0ea5e9;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.search-result-colors .color-swatch:active {
  transform: scale(0.95);
}

.search-result-title {
  margin-bottom: 0.5rem;
}

.result-title-link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  display: block;
}

.result-title-link:hover {
  color: #0b6b66;
}

.search-result-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0b6b66;
}

.search-result-summary {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}

.text-muted {
  color: #6c757d !important;
  font-weight: 300;
  font-size: 0.8rem;
}

.search-pagination {
  margin-top: 2rem;
  text-align: center;
}

/* No Results State */
.search-no-results {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.no-results-icon {
  margin-bottom: 2rem;
}

.no-results-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.no-results-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.suggested-categories h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.category-link {
  background: #00c6fb;
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-link:hover {
  background: #0099cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,198,251,0.3);
}

/* Initial State */
.search-initial-state {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.popular-searches,
.browse-categories {
  margin-bottom: 4rem;
  text-align: center;
}

.popular-searches h2,
.browse-categories h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.popular-search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.search-tag {
  background: #f8f9fa;
  color: #495057;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  border: 2px solid #e9ecef;
  transition: all 0.2s ease;
}

.search-tag:hover {
  background: #00c6fb;
  color: white;
  border-color: #00c6fb;
  transform: translateY(-2px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-decoration: none;
  color: #2c3e50;
  box-shadow: 0 4px 20px rgba(6,22,32,0.08);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(6,22,32,0.12);
  color: #00c6fb;
}

.category-card img {
  transition: transform 0.2s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card span {
  font-weight: 600;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .search-layout {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
  
  .search-results-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 1000px) {
  .search-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .search-filters {
    position: static;
    max-height: none;
    order: 2;
  }
  
  .search-results {
    order: 1;
  }
  
  .search-results-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
  }
}

@media (max-width: 900px) {
  .search-page-header {
    padding: 2rem 2vw;
  }
  .search-page-header__title {
    font-size: 2.2rem;
  }
  .search-page-header__subtitle {
    font-size: 1rem;
  }
  
  .search-results-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  background: #0ea5e9;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  min-height: 44px;
  transition: background 0.2s ease;
}

.mobile-filter-toggle:hover {
  background: #0284c7;
}

.mobile-filter-toggle i {
  font-size: 1rem;
}

.filter-count-badge {
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: auto;
}

.mobile-filter-close {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  font-size: 1.25rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-filter-toggle {
    display: flex;
  }
  
  .search-filters {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
  }
  
  .search-filters.open {
    transform: translateX(0);
  }
  
  .mobile-filter-close {
    display: flex;
  }
  
  .filter-header {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
  }
  
  .filter-title {
    margin-right: 3rem;
  }
  
  .mobile-filter-close {
    position: absolute;
    top: 0;
    right: 0;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .search-page-header {
    padding: 1.5rem 1rem;
    min-height: 240px;
  }
  .search-page-header__title {
    font-size: 1.8rem;
  }
  .search-page-header__subtitle {
    font-size: 0.95rem;
  }
  .search-page-header__breadcrumb {
    font-size: 0.9rem;
  }
  
  .search-container {
    padding: 1.5rem 1rem;
  }
  
  .search-results-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.search-result-content {
  padding: 0.75rem;
}

.result-title-link {
  font-size: 0.8rem;
}

.search-result-price {
  font-size: 0.9rem;
}

.search-result-summary {
  display: none;
}
  
  /* Mobile search result color swatches */
  .search-result-colors {
  padding: 0.25rem 0 0.5rem;
  gap: 0.3rem;
}
  
  .search-result-colors .color-swatch {
    width: 16px;
    height: 16px;
    border-width: 1.5px;
  }
  
  /* Optimize touch targets for mobile */
  .search-input {
    min-height: 44px;
    font-size: 16px; /* Prevent zoom on iOS */
    padding: 0.75rem;
  }
  
  .search-btn {
    min-height: 44px;
    font-size: 1rem;
  }
  
  .filter-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }
  
  .filter-option {
    min-height: 44px;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
  }
  
  .filter-group-title {
    min-height: 44px;
    padding: 0.75rem 0;
  }
  
  .search-result-btn {
    min-height: 44px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .category-link {
    min-height: 44px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .popular-search-tags,
  .category-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 1400px) {
  .search-container {
    padding: 3rem 5vw;
  }
  
  .search-results-grid {
    gap: 2.5rem;
  }
  
  .search-page-header__title {
    font-size: 3.2rem;
  }
}
/* END_SECTION:search */

/* START_SECTION:terms-policies (INDEX:50) */
.terms-policies {
  display: grid;
  grid-template-columns: var(--content-grid);
  padding: 2rem 0;
}

.terms-policies__content {
  grid-column: 2;
}

.terms-policies__updated {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.terms-policies__heading {
  color: var(--color-foreground);
  line-height: 1.25;
  margin: 2rem 0 0.75rem;
  font-weight: 800;
}
.terms-policies__heading--h2 { font-size: 1.75rem; }
.terms-policies__heading--h3 { font-size: 1.35rem; }
.terms-policies__heading--h4 { font-size: 1.125rem; }

.terms-policies__richtext {
  color: var(--color-foreground);
}
.terms-policies__richtext :is(p, ul, ol) { margin: 0 0 1rem; }
.terms-policies__richtext a { color: inherit; text-decoration: underline; }

.terms-policies__list {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.terms-policies__list li { margin: 0.25rem 0; }

@media (max-width: 600px) {
  .terms-policies { padding: 1.25rem 0; }
  .terms-policies__heading--h2 { font-size: 1.5rem; }
  .terms-policies__heading--h3 { font-size: 1.2rem; }
  .terms-policies__heading--h4 { font-size: 1rem; }
}
/* END_SECTION:terms-policies */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:53) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:54) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:custom-product-options (INDEX:56) */
.keyboard-guide-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #0ea5e9;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.keyboard-guide-link:hover {
  color: #0284c7;
}
  .custom-product-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
  }
  
  .option-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  
 .option-header {
  display: flex;
  align-items: center;
}
  
  .option-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0;
    color: #334155;
  }
  
  .option-help-link {
    font-size: 13px;
    color: #2563eb;
    text-decoration: none;
  }
  
  .option-help-link:hover {
    text-decoration: underline;
  }
  
  .option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
  }
  
  .option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 18px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px;
  }
  
  .option-btn:hover {
    border-color: #9ca3af;
    background: #f9fafb;
  }
  
  .option-btn.is-active {
    border-color: #2563eb;
    color: #2563eb;
    background: #ffffff;
  }
  
  .option-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  .option-btn__text {
    display: block;
  }
  
  /* Colour swatches */
  .colour-swatch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .colour-swatch {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
  }
  
  .colour-swatch-btn:hover .colour-swatch {
    transform: scale(1.1);
  }
  
  .colour-swatch-btn.is-active .colour-swatch {
    border-color: #2563eb;
  }
  
  /* Responsive */
  @media (max-width: 640px) {
    .option-btn {
      min-height: 40px;
      padding: 12px 18px;
      font-size: 13px;
    }
    
    .colour-swatch {
      width: 28px;
      height: 28px;
    }
  }
/* END_SNIPPET:custom-product-options */

/* START_SNIPPET:image (INDEX:57) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */