/* ==========================================================================
   ZAREK — PRODUCT PAGE
   ========================================================================== */

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   1. PRODUCT MAIN — 2-column layout (gallery + info)
   -------------------------------------------------------------------------- */
.product-detail {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-4xl);
    align-items: flex-start;
}

/* --------------------------------------------------------------------------
   GALLERY — main image + thumbnail row
   -------------------------------------------------------------------------- */
.gallery {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--color-bg-light);
}

.gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
}

.gallery__thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    background-color: var(--color-bg-light);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__thumb:hover {
    border-color: var(--color-border);
}

.gallery__thumb.is-active {
    border-color: var(--color-text);
}

/* --------------------------------------------------------------------------
   PRODUCT INFO — right column
   -------------------------------------------------------------------------- */
.product-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-top: var(--space-sm);
}

.product-info__brand {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    color: #666;
}

.product-info__name {
    font-family: var(--font-serif);
    font-size: clamp(22px, 4vw, 32px);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin: 0;
}

.product-info__divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 12px 0;
}

/* --------------------------------------------------------------------------
   PRICE BLOCK
   -------------------------------------------------------------------------- */
.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
}

.product-price__new {
    font-size: 20px;
    font-weight: 700;
    color: #cc0000;
}

.product-price__old {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.product-price__badge {
  display: inline-block !important;
  width: auto !important;
  background: #cc0000 !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 2px 8px !important;
  border-radius: 2px !important;
  margin-left: 8px !important;
  vertical-align: middle !important;
}

/* --------------------------------------------------------------------------
   VARIANT SELECTOR — band colour, etc
   -------------------------------------------------------------------------- */
.variant {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.variant__label {
    font-family: var(--font-sans);
    font-size: var(--font-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-text);
}

.variant__label-value {
    font-weight: var(--weight-light);
    color: var(--color-text-muted);
}

.variant__options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    list-style: none;
    margin: 0;
    padding: 0;
}

.variant__option {
    padding: 10px 22px;
    font-family: var(--font-sans);
    font-size: var(--font-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--letter-spacing-nav);
    text-transform: uppercase;
    color: var(--color-text);
    background-color: transparent;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.variant__option:hover {
    border-color: var(--color-text);
}

.variant__option.is-active {
    color: var(--color-white);
    background-color: var(--color-text);
    border-color: var(--color-text);
}

/* --------------------------------------------------------------------------
   QUANTITY SELECTOR
   -------------------------------------------------------------------------- */
.quantity {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.quantity__label {
    font-family: var(--font-sans);
    font-size: var(--font-sm);
    font-weight: var(--weight-medium);
    letter-spacing: var(--letter-spacing-wide);
    color: var(--color-text);
}

.quantity__control {
    display: inline-flex;
    align-items: stretch;
    width: max-content;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity__btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: var(--font-md);
    font-weight: var(--weight-light);
    line-height: 1;
    color: var(--color-text);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity__btn:hover {
    background-color: var(--color-bg-light);
}

.quantity__input {
    width: 56px;
    height: 44px;
    padding: 0;
    font-family: var(--font-sans);
    font-size: var(--font-sm);
    font-weight: var(--weight-medium);
    text-align: center;
    color: var(--color-text);
    background: transparent;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

/* --------------------------------------------------------------------------
   ACTION BUTTONS — Add to Cart, Buy Now
   -------------------------------------------------------------------------- */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.product-actions .btn-primary,
.product-actions .btn-outline {
    width: 100%;
    padding: 16px 32px;
    font-size: var(--font-sm);
}

/* --------------------------------------------------------------------------
   TRUST ROW — inline badges below CTAs
   -------------------------------------------------------------------------- */
.product-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding-top: var(--space-md);
    margin-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.product-trust__item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: var(--font-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.product-trust__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: var(--color-text);
    font-weight: var(--weight-bold);
}

/* --------------------------------------------------------------------------
   2. INFO TABS — Description, Size Guide, Shipping
   -------------------------------------------------------------------------- */
.product-tabs {
    padding: var(--space-2xl) 0 var(--space-4xl);
    border-top: 1px solid var(--color-border);
}

.tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xl);
    list-style: none;
    margin: 0 0 var(--space-2xl);
    padding: 0;
    border-bottom: 1px solid var(--color-border);
}

.tabs__btn {
    position: relative;
    padding: var(--space-md) 0;
    font-family: var(--font-sans);
    font-size: var(--font-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--letter-spacing-nav);
    text-transform: uppercase;
    color: var(--color-text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tabs__btn::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background-color: var(--color-text);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.tabs__btn:hover {
    color: var(--color-text);
}

.tabs__btn.is-active {
    color: var(--color-text);
}

.tabs__btn.is-active::after {
    transform: scaleX(1);
}

.tabs__panel {
    display: none;
    max-width: 760px;
    font-family: var(--font-sans);
    font-size: var(--font-sm);
    font-weight: var(--weight-light);
    line-height: var(--line-height-loose);
    color: var(--color-text-muted);
}

.tabs__panel.is-active {
    display: block;
}

.tabs__panel p + p {
    margin-top: var(--space-md);
}

.tabs__panel ul {
    margin-top: var(--space-md);
    padding-left: var(--space-lg);
    list-style: disc;
}

.tabs__panel li + li {
    margin-top: var(--space-xs);
}

/* --------------------------------------------------------------------------
   3. RELATED PRODUCTS — re-uses .product-card-c from collection
   -------------------------------------------------------------------------- */
.related {
    padding: var(--space-2xl) 0 var(--space-4xl);
    border-top: 1px solid var(--color-border);
}

.related__title {
    font-family: var(--font-serif);
    font-size: var(--font-xl);
    font-weight: var(--weight-regular);
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--color-text);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: var(--space-2xl);
}

.related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl) var(--space-lg);
}

/* --------------------------------------------------------------------------
   RELATED PRODUCT CARD — same anatomy as collection.css .product-card-c
   duplicated here so product.css is self-sufficient
   -------------------------------------------------------------------------- */
.product-card-c {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-card-c__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--color-bg-light);
    margin-bottom: var(--space-md);
}

.product-card-c__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease, transform 0.6s ease;
}

.product-card-c:hover .product-card-c__img {
    filter: brightness(0.92);
    transform: scale(1.02);
}

.product-card-c__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 10px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: var(--weight-semibold);
    line-height: 1;
    letter-spacing: var(--letter-spacing-label);
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-accent);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-card-c__add {
    position: absolute;
    left: var(--space-md);
    right: var(--space-md);
    bottom: var(--space-md);
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: var(--font-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--letter-spacing-nav);
    text-transform: uppercase;
    color: var(--color-white);
    background-color: var(--color-text);
    border: 1px solid var(--color-text);
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease,
        background-color 0.2s ease;
    z-index: 3;
}

.product-card-c:hover .product-card-c__add,
.product-card-c:focus-within .product-card-c__add {
    opacity: 1;
    transform: translateY(0);
}

.product-card-c__add:hover {
    color: var(--color-text);
    background-color: var(--color-white);
}

.product-card-c__name {
    font-family: var(--font-sans);
    font-size: var(--font-sm);
    font-weight: var(--weight-regular);
    line-height: var(--line-height-base);
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.product-card-c__prices {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.product-card-c__price--old {
    font-family: var(--font-sans);
    font-size: var(--font-sm);
    font-weight: var(--weight-light);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-card-c__price--new {
    font-family: var(--font-sans);
    font-size: var(--font-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — TABLET (768–1024) & MOBILE
   -------------------------------------------------------------------------- */

/* TABLET — 768 to 1024 — keep 2-col detail layout, more compact */
@media (max-width: 1024px) {
    .product-detail {
        padding: var(--space-xl) 0 var(--space-3xl);
    }

    .product-detail__grid {
        gap: var(--space-2xl);
    }

    .product-info {
        gap: var(--space-md);
    }

    .product-info__name {
        font-size: var(--font-xl);
    }

    .related__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }
}

/* MOBILE — below 768 — gallery on top, info below (single column) */
@media (max-width: 768px) {
    .product-detail {
        padding: var(--space-md) 0 var(--space-2xl);
    }

    .product-detail__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .product-info {
        gap: var(--space-md);
    }

    .product-info__name {
        font-size: var(--font-xl);
    }

    /* Gallery thumbnails become a horizontal-scroll strip on mobile */
    .gallery__thumbs {
        display: flex;
        gap: var(--space-sm);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: var(--space-xs);
    }

    .gallery__thumbs::-webkit-scrollbar {
        display: none;
    }

    .gallery__thumbs li {
        flex: 0 0 84px;
        scroll-snap-align: start;
    }

    .gallery__thumb {
        width: 84px;
        height: 84px;
        aspect-ratio: auto;
    }

    .product-price__new {
        font-size: var(--font-md);
    }

    .product-price__old {
        font-size: var(--font-base);
    }

    .product-tabs {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

    .tabs__nav {
        gap: var(--space-lg);
        margin-bottom: var(--space-xl);
    }

    .tabs__btn {
        font-size: 10px;
    }

    .related {
        padding: var(--space-xl) 0 var(--space-2xl);
    }

    .related__title {
        font-size: var(--font-lg);
        margin-bottom: var(--space-xl);
    }

    .related__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg) var(--space-md);
    }

    .product-card-c__add {
        opacity: 1;
        transform: translateY(0);
    }

    /* Quantity stepper sits its own row but stays compact */
    .quantity__control {
        width: 100%;
        max-width: 200px;
    }

    .quantity__input {
        flex: 1;
    }
}

/* SMALL MOBILE — below 480 */
@media (max-width: 480px) {
    .product-detail__grid {
        gap: var(--space-lg);
    }

    .gallery__thumbs li {
        flex: 0 0 72px;
    }

    .gallery__thumb {
        width: 72px;
        height: 72px;
    }

    .product-info__name {
        font-size: var(--font-lg);
    }

    .product-price {
        gap: var(--space-sm);
    }

    .variant__option {
        padding: 9px 16px;
    }

    .product-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .product-trust__item {
        font-size: 11px;
    }

    .tabs__nav {
        gap: var(--space-md);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs__nav::-webkit-scrollbar {
        display: none;
    }

    .tabs__btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .related__grid {
        gap: var(--space-md) var(--space-sm);
    }

    .product-card-c__name {
        font-size: var(--font-xs);
    }

    .product-card-c__price--old,
    .product-card-c__price--new {
        font-size: var(--font-xs);
    }

    .product-card-c__badge {
        top: var(--space-sm);
        left: var(--space-sm);
        padding: 4px 8px;
        font-size: 9px;
    }

    .product-card-c__add {
        height: 38px;
        font-size: 10px;
        left: var(--space-sm);
        right: var(--space-sm);
        bottom: var(--space-sm);
    }
}

@media (max-width: 768px) {
  .product-badge,
  .sale-badge,
  span[class*="sale"],
  span[class*="badge"],
  div[class*="sale-badge"] {
    display: inline-block !important;
    width: auto !important;
    padding: 2px 8px !important;
    font-size: 12px !important;
  }
}

.color-thumb {
  width: 60px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}
.color-thumb.active {
  border: 2px solid #111;
}

.size-select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
  appearance: auto;
  cursor: pointer;
}

.size-guide-link { margin-top: 8px; }
.size-guide-link a { font-size: 13px; color: #111; text-decoration: underline; cursor: pointer; }

#size-guide-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.size-guide-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); }
.size-guide-content { position: relative; background: #fff; width: 90%; max-width: 420px; max-height: 85vh; overflow-y: auto; padding: 28px 24px; z-index: 1; }
.size-guide-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.size-guide-header h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; max-width: 85%; line-height: 1.4; }
#close-size-guide { background: none; border: none; font-size: 18px; cursor: pointer; }
.size-guide-toggle { display: flex; gap: 0; margin-bottom: 16px; }
.unit-btn { padding: 6px 18px; border: 1px solid #ccc; background: #fff; font-size: 13px; cursor: pointer; }
.unit-btn.active { background: #111; color: #fff; border-color: #111; }
.size-guide-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 16px; }
.size-guide-table th, .size-guide-table td { border-bottom: 1px solid #eee; padding: 8px 6px; text-align: left; }
.size-guide-table th { font-weight: 600; }
.size-guide-note { font-size: 12px; color: #555; line-height: 1.6; }

.stock-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #444;
  background: #f5f5f5;
  border-radius: 4px;
}
.stock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  flex-shrink: 0;
}
.stock-ship {
  margin-left: auto;
  color: #666;
  font-size: 12px;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}
.secure-checkout a {
  color: #666;
  text-decoration: underline;
  cursor: pointer;
}

#payment-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.payment-content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 480px;
  padding: 32px 24px;
  z-index: 1;
  text-align: center;
  border-radius: 2px;
}
.payment-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #111;
}
.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.payment-icons img {
  height: 28px;
  object-fit: contain;
}
.payment-close {
  background: #111;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #333;
}
.trust-badge svg {
  flex-shrink: 0;
}

.promo-banner {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 28px 24px;
  margin-top: 24px;
}
.promo-banner__tag {
  display: inline-block;
  border: 1px solid #555;
  color: #ccc;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.promo-banner__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #fff;
}
.promo-banner__sub {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 12px;
}
.promo-banner__highlight {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.promo-banner__note {
  font-size: 11px;
  color: #888;
}

.product-accordions {
  margin-top: 24px;
  border-top: 1px solid #e5e5e5;
}
.accordion-item {
  border-bottom: 1px solid #e5e5e5;
}
.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  text-align: left;
}
.accordion-header svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-header.open svg {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 0 0 18px 0;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.accordion-body.open {
  display: block;
}
.accordion-body a {
  color: #111;
  text-decoration: underline;
}

.testimonials-section {
  background: #f5f5f5;
  padding: 36px 24px;
  margin-top: 24px;
  text-align: center;
}
.testimonials-title {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 24px;
}
.testimonial-slide {
  display: none;
}
.testimonial-slide.active {
  display: block;
}
.testimonial-stars {
  color: #c8a96e;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 16px;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  margin-bottom: 2px;
}
.testimonial-location {
  font-size: 11px;
  color: #888;
  letter-spacing: 1px;
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.testimonial-prev,
.testimonial-next {
  background: none;
  border: none;
  font-size: 24px;
  color: #111;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
}
.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active {
  background: #111;
}

@media (max-width: 768px) {
  .you-may-also-like .add-to-cart,
  .related-products .add-to-cart,
  .recommendations .add-to-cart,
  [class*="also-like"] .btn-cart,
  [class*="also-like"] button[class*="add"],
  [class*="also-like"] .product-card-c__add,
  [class*="related"] .product-card-c__add,
  [class*="recommended"] .product-card-c__add {
    display: none !important;
  }
}

.press-section {
  background: #f0f0f0;
  text-align: center;
  padding: 100px 40px;
}
#press-info-box {
  margin-bottom: 40px;
}
.press-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.press-logo-description {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}
.press-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
}
.press-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.3s;
  filter: grayscale(100%);
}
.press-logo-img.active,
.press-logo-img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .press-section {
    padding: 40px 24px;
  }
  .press-logo-container {
    gap: 20px;
  }
  .press-logo-img {
    height: 18px;
  }
}

.mini-collection-section {
  padding: 32px 16px 24px;
  text-align: center;
  border-top: 1px solid #e5e5e5;
}
.mini-collection-label {
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 8px;
}
.mini-collection-view-all {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}
.mini-collection-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 12px;
  text-align: left;
  cursor: grab;
}
.mini-collection-track::-webkit-scrollbar { display: none; }
.mini-collection-card {
  flex: 0 0 140px;
  scroll-snap-align: start;
}
.mini-collection-card a {
  text-decoration: none;
  color: #111;
}
.mini-collection-card img {
  width: 140px;
  height: 175px;
  object-fit: cover;
  display: block;
  background: #f5f5f5;
}
.mini-collection-card-name {
  font-size: 11px;
  color: #111;
  margin-top: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.mini-collection-card-price {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

@media (min-width: 769px) {
  .mini-collection-section {
    padding: 48px 40px 32px;
    background: #f5f5f5;
  }
  .mini-collection-track {
    gap: 16px;
    padding-bottom: 16px;
  }
  .mini-collection-card {
    flex: 0 0 220px;
  }
  .mini-collection-card img {
    width: 220px;
    height: 275px;
  }
  .mini-collection-card-name {
    font-size: 12px;
    max-width: 220px;
  }
  .mini-collection-card-price {
    font-size: 12px;
  }
  .mini-collection-label {
    font-size: 12px;
  }
  .mini-collection-view-all {
    font-size: 13px;
    margin-bottom: 24px;
  }
}

.mini-collection-section {
  position: relative;
}
.mini-collection-prev,
.mini-collection-next {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #e5e5e5;
  width: 36px;
  height: 36px;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
  align-items: center;
  justify-content: center;
  color: #111;
}
.mini-collection-prev { left: 8px; }
.mini-collection-next { right: 8px; }

@media (min-width: 769px) {
  .mini-collection-prev,
  .mini-collection-next {
    display: flex;
  }
}

.faq-section {
  background: #f5f5f5;
  padding: 48px 24px 40px;
  text-align: center;
}
.faq-label {
  font-size: 11px;
  letter-spacing: 3px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.faq-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 32px;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  border-top: 1px solid #ddd;
}
.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}
.faq-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #111;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-header svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-header.open svg {
  transform: rotate(180deg);
}
.faq-body {
  display: none;
  padding: 0 0 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.faq-body.open {
  display: block;
}

.trust-strip {
  background: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
  flex-wrap: wrap;
}
.trust-strip-item {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid #e5e5e5;
}
.trust-strip-item:last-child {
  border-right: none;
}
.trust-strip-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin: 12px 0 8px;
}
.trust-strip-text {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .trust-strip {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .trust-strip-item {
    border-right: none;
  }
}

.back-to-collection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px;
  background: #111;
  color: #fff;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0;
}

@media (max-width: 768px) {
  .related-products .product-card:nth-child(n+7),
  .you-may-also-like .product-card:nth-child(n+7),
  section[class*="related"] .product-card-c:nth-child(n+7) {
    display: none !important;
  }
}

.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}
.cart-overlay.active { display: block; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  max-width: 100vw;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.35s ease;
  overflow: hidden;
}
.cart-drawer.active { right: 0; }

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #eee;
}
.cart-drawer__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.cart-drawer__close {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #111;
}

.cart-timer-bar {
  background: #fce8e8;
  text-align: center;
  padding: 8px;
  font-size: 12px;
  color: #c00;
}
.cart-timer-bar strong { color: #c00; }

.cart-discount-bar {
  padding: 12px 20px 16px;
  border-bottom: 1px solid #eee;
}
.cart-discount-label {
  font-size: 11px;
  text-align: center;
  margin-bottom: 10px;
  color: #111;
  font-weight: 600;
}
.cart-progress-track {
  position: relative;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin: 0 8px;
}
.cart-progress-fill {
  height: 100%;
  background: #111;
  border-radius: 2px;
  width: 0%;
  transition: width 0.4s ease;
}
.cart-progress-dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #ccc;
  border-radius: 50%;
  border: 2px solid #fff;
}
.cart-progress-dot span {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  white-space: nowrap;
  color: #666;
  font-weight: 600;
}
.cart-progress-dot.reached { background: #111; }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 0 20px;
}
.cart-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.cart-item__img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f5f5;
}
.cart-item__info { flex: 1; }
.cart-item__name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  line-height: 1.4;
}
.cart-item__meta {
  font-size: 11px;
  color: #888;
  margin-bottom: 8px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.cart-item__qty button {
  background: none;
  border: 1px solid #ccc;
  width: 24px;
  height: 24px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}
.cart-item__qty span { font-size: 13px; min-width: 20px; text-align: center; }
.cart-item__price { font-size: 13px; font-weight: 700; color: #111; }
.cart-item__old-price { font-size: 11px; color: #aaa; text-decoration: line-through; margin-right: 4px; }
.cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 16px;
  padding: 0;
  align-self: flex-start;
}

.cart-you-love {
  padding: 16px 20px;
  border-top: 1px solid #eee;
}
.cart-you-love__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  text-align: center;
}
.cart-you-love__track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cart-you-love__track::-webkit-scrollbar { display: none; }
.cart-love-card {
  flex: 0 0 130px;
  font-size: 11px;
  color: #111;
}
.cart-love-card img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  background: #f5f5f5;
  display: block;
  margin-bottom: 4px;
}
.cart-love-card p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-love-card .cart-love-price { color: #cc0000; font-weight: 700; }

.cart-footer {
  padding: 16px 20px;
  border-top: 1px solid #eee;
}
.cart-discount-code {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.cart-discount-code input {
  flex: 1;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 13px;
  outline: none;
}
.cart-discount-code button {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
}
.cart-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #555;
  margin-bottom: 6px;
}
.cart-totals__total {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-top: 8px;
}
.cart-discount-tag {
  background: #eee;
  color: #333;
  font-size: 10px;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 2px;
}
.cart-checkout-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 12px;
  text-transform: uppercase;
}

