/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
    padding: 16px 40px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.breadcrumb a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #000;
}

.breadcrumb__sep {
    margin: 0 8px;
    color: rgba(0, 0, 0, 0.3);
}

.breadcrumb__current {
    color: #000;
    font-weight: 500;
}

/* ===========================
   PRODUCT DETAIL PAGE (PDP)
   =========================== */
.pdp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px 60px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: "DM Sans", sans-serif;
}

/* Gallery */
.pdp__gallery {
    position: sticky;
    top: 20px;
    align-self: start;
}

.pdp__main-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f0e6;
    margin-bottom: 12px;
}

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

.pdp__thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}

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

.pdp__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s;
}

.pdp__thumb.active {
    border-color: #000;
}

.pdp__thumb:hover {
    border-color: rgba(0, 0, 0, 0.4);
}

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

/* Product Info */
.pdp__info {
    padding-top: 8px;
}

.pdp__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.pdp__price {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.pdp__compare-price {
    font-size: 18px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: line-through;
}

.pdp__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.pdp__stars {
    display: flex;
    gap: 2px;
}

.pdp__rating-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.pdp__name {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
    margin-bottom: 16px;
}

.pdp__description {
    margin-bottom: 24px;
}

.pdp__description p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 10px;
}

/* Size Selector */
.pdp__sizes {
    margin-bottom: 24px;
}

.pdp__label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.pdp__size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pdp__size-btn {
    min-width: 44px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.pdp__size-btn:hover {
    border-color: #000;
}

.pdp__size-btn.active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.pdp__size-btn--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.pdp__size-selector {
    margin-bottom: 16px;
}

.pdp__size-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pdp__size-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pdp__size-selected {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

.pdp__size-select-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    padding: 0 !important;
    margin: -1px !important;
}

.variations_form .variations {
    display: none;
}

.reset_variations {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: underline;
    margin-top: 6px;
    display: inline-block;
}

/* Quantity + Add to Cart */
.pdp__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pdp__qty-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.pdp__quantity {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.pdp__qty-btn {
    width: 44px;
    height: 48px;
    background: none;
    border: none;
    font-size: 20px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.pdp__qty-btn:hover {
    background-color: #f5f5f5;
}

.pdp__qty-input {
    width: 48px;
    height: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    outline: none;
    -moz-appearance: textfield;
}

.pdp__qty-input::-webkit-inner-spin-button,
.pdp__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* WooCommerce wraps the input in .quantity div — flatten it */
.pdp__quantity .quantity {
    display: contents;
}

.pdp__quantity .quantity .qty {
    width: 48px;
    height: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    outline: none;
    -moz-appearance: textfield;
}

.pdp__add-to-cart,
.pdp .pdp__add-to-cart.button.alt {
    flex: 1;
    height: 48px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    text-transform: none;
    letter-spacing: normal;
    padding: 0 24px;
}

.pdp__add-to-cart:hover,
.pdp .pdp__add-to-cart.button.alt:hover {
    background-color: #333;
}

/* Buy Now */
.pdp__buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    background: linear-gradient(to right, rgb(247, 117, 169), var(--nanda-accent, #c6233a));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}

.pdp__buy-now:hover {
    opacity: 0.9;
}

/* Share */
.pdp__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pdp__share-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
}

.pdp__share-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.pdp__share-icon:hover {
    color: #000;
}

/* Trust Badges */
.pdp__trust {
    margin-bottom: 20px;
}

.pdp__trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
}

.pdp__trust-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.pdp__trust-icons {
    display: flex;
    gap: 8px;
}

.pdp__payment-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #333;
}

.pdp__payment-icon {
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
}

.pdp__payment-icon svg {
    display: block;
}

.pdp__returns-row {
    margin-top: 0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
}

.pdp__returns-link {
    font-weight: 500;
}

.pdp__trust-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.pdp__trust-link:hover {
    color: #000;
}

/* Accordion */
.pdp__accordion {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pdp__accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pdp__accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: color 0.2s;
}

.pdp__accordion-header:hover {
    color: #333;
}

.pdp__accordion-icon {
    transition: transform 0.3s ease;
}

.pdp__accordion-plus {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.pdp__accordion-item.open .pdp__accordion-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.pdp__accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.pdp__accordion-item.open .pdp__accordion-body {
    max-height: 300px;
    padding-bottom: 16px;
}

.pdp__accordion-body ul {
    list-style: none;
    padding: 0;
}

.pdp__accordion-body li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.7);
}

.pdp__accordion-body li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: rgba(0, 0, 0, 0.3);
}

/* ===========================
   CUSTOMER REVIEWS
   =========================== */
.reviews {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: "DM Sans", sans-serif;
}

.reviews__header {
    text-align: center;
    margin-bottom: 40px;
}

.reviews__subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
    font-style: italic;
}

.reviews__title {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    color: #000;
}

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

.reviews__card {
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    text-align: center;
}

.reviews__avatar {
    margin-bottom: 12px;
}

.reviews__avatar img,
.reviews__avatar svg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
}

.reviews__name {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 6px;
}

.reviews__stars-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.reviews__text {
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.65);
}
/* ===========================
   SUGGESTIONS / RECENTLY VIEWED
   =========================== */
.suggestions,
.recently-viewed {
    padding: 56px 40px 64px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: "DM Sans", sans-serif;
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
    border-top: none;
    position: relative;
}

.suggestions::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08) 20%, rgba(0,0,0,0.08) 80%, transparent);
}

.recently-viewed {
    padding-top: 0;
}

.suggestions__header {
    text-align: center;
    margin-bottom: 36px;
}

.suggestions__title {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.suggestions__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--nanda-primary, #f775a9);
    border-radius: 1px;
}

.suggestions__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.suggestions__arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.suggestions__arrow:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.suggestions__viewport {
    overflow: hidden;
    width: 100%;
}

.suggestions__track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.suggestions__subtitle {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--nanda-primary, #f775a9);
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.suggestions__track .product-card,
.suggestions__track .coll-product-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.suggestions__track .coll-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

/* Clean card appearance in suggestions — hide clutter */
.suggestions__track .coll-product-card__add-btn,
.suggestions__track .coll-product-card__quick-view,
.suggestions__track .coll-product-card__wishlist,
.suggestions__track .coll-product-card__swatches,
.suggestions__track .coll-product-card__badge {
    display: none !important;
}

.suggestions__track .coll-product-card__img--hover {
    display: none;
}

.suggestions__track .coll-product-card__media {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.suggestions__track .coll-product-card__img--primary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.suggestions__track .coll-product-card:hover .coll-product-card__img--primary {
    transform: scale(1.05);
}

.suggestions__track .coll-product-card__info {
    padding: 14px 16px 18px;
}

.suggestions__track .coll-product-card__name {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #333;
    margin: 0 0 8px;
}

.suggestions__track .coll-product-card__prices {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.suggestions__track .coll-product-card__price--sale {
    font-weight: 600;
    color: #1a1a1a;
}

.suggestions__track .coll-product-card__price--compare {
    font-size: 12px;
    color: #999;
}

.suggestions__track .coll-product-card__discount {
    font-size: 11px;
    font-weight: 600;
    color: var(--nanda-accent, #c6233a);
    background: rgba(198, 35, 58, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

.suggestions__track .coll-product-card__link {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   RESPONSIVE - TABLET
   =========================== */
@media (min-width: 769px) and (max-width: 1023px) {
    .breadcrumb {
        padding: 12px 20px;
    }

    .pdp {
        gap: 24px;
        padding: 0 20px 48px;
    }

    .pdp__name {
        font-size: 20px;
    }

    .pdp__price {
        font-size: 28px;
    }

    .pdp__thumb {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }

    .reviews {
        padding: 48px 20px;
    }

    .suggestions,
    .recently-viewed {
        padding: 40px 20px 48px;
    }

    .suggestions::before {
        left: 20px;
        right: 20px;
    }

    .suggestions__track .product-card,
    .suggestions__track .coll-product-card {
        flex: 0 0 calc(33.333% - 14px);
        border-radius: 10px;
    }

    .suggestions__track .coll-product-card__media {
        border-radius: 10px 10px 0 0;
    }
}

/* ===========================
   RESPONSIVE - MOBILE
   =========================== */
@media (max-width: 768px) {

    /* --- Breadcrumb --- */
    .breadcrumb {
        padding: 10px 16px;
        font-size: 11px;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

    .breadcrumb__sep {
        margin: 0 4px;
    }

    /* --- PDP Layout --- */
    .pdp {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 0 32px;
        max-width: 100%;
        overflow: hidden;
    }

    .pdp__gallery {
        position: static;
        width: 100%;
        overflow: hidden;
    }

    .pdp__main-image {
        aspect-ratio: 3 / 4;
        border-radius: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .pdp__thumbnails {
        padding: 0 16px;
        gap: 6px;
    }

    .pdp__thumb {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        border-radius: 6px;
    }

    /* --- PDP Info --- */
    .pdp__info {
        padding: 0 16px;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .pdp__price-row {
        gap: 8px;
        margin-bottom: 6px;
    }

    .pdp__price {
        font-size: 26px;
    }

    .pdp__compare-price {
        font-size: 15px;
    }

    .pdp__rating {
        margin-bottom: 8px;
    }

    .pdp__rating-text {
        font-size: 12px;
    }

    .pdp__name {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .pdp__description {
        margin-bottom: 20px;
    }

    .pdp__description p {
        font-size: 13px;
        line-height: 20px;
    }

    /* --- Size Selector --- */
    .pdp__sizes {
        margin-bottom: 20px;
    }

    .pdp__label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .pdp__size-options {
        gap: 6px;
        flex-wrap: wrap;
    }

    .pdp__size-btn {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
        border-radius: 6px;
    }

    /* --- Actions (stacked) --- */
    .pdp__actions {
        gap: 10px;
    }

    .pdp__quantity {
        align-self: stretch;
    }

    .pdp__qty-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .pdp__qty-input {
        width: 56px;
        height: 48px;
        font-size: 16px;
    }

    .pdp__add-to-cart {
        height: 50px;
        font-size: 15px;
        border-radius: 10px;
    }

    .pdp__buy-now {
        height: 50px;
        font-size: 15px;
        border-radius: 10px;
        margin-bottom: 16px;
    }

    /* --- Share --- */
    .pdp__share {
        margin-bottom: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }

    .pdp__share-label {
        font-size: 13px;
    }

    /* --- Trust Badges --- */
    .pdp__trust {
        margin-bottom: 16px;
    }

    .pdp__trust-row {
        padding: 10px 12px;
    }

    .pdp__trust-label {
        font-size: 12px;
    }

    .pdp__trust-icons {
        gap: 4px;
    }

    .pdp__payment-badge {
        font-size: 10px;
        padding: 2px 6px;
    }

    .pdp__trust-link {
        font-size: 12px;
    }

    /* --- Accordion --- */
    .pdp__accordion-header {
        padding: 14px 0;
        font-size: 15px;
    }

    .pdp__accordion-body li {
        font-size: 13px;
        line-height: 22px;
    }

    /* --- Reviews --- */
    .reviews {
        padding: 32px 16px;
        max-width: 100%;
        overflow: hidden;
    }

    .reviews__header {
        margin-bottom: 24px;
    }

    .reviews__subtitle {
        font-size: 12px;
    }

    .reviews__title {
        font-size: 20px;
        line-height: 28px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .reviews__card {
        padding: 20px;
        border-radius: 10px;
    }

    .reviews__name {
        font-size: 16px;
    }

    .reviews__stars-small {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .reviews__text {
        font-size: 13px;
        line-height: 20px;
    }

    /* --- Suggestions / Recently Viewed --- */
    .suggestions,
    .recently-viewed {
        padding: 32px 0 40px;
        max-width: 100%;
        overflow: hidden;
        background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
    }

    .suggestions::before {
        left: 16px;
        right: 16px;
    }

    .suggestions__header {
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .suggestions__title {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.5px;
    }

    .suggestions__title::after {
        width: 30px;
    }

    .suggestions__arrow {
        display: none;
    }

    .suggestions__carousel {
        max-width: 100%;
    }

    .suggestions__viewport {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 16px;
    }

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

    .suggestions__track {
        gap: 12px;
    }

    .suggestions__track .product-card,
    .suggestions__track .coll-product-card {
        flex: 0 0 min(160px, calc(44vw - 12px));
        border-radius: 10px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    }

    .suggestions__track .coll-product-card__media {
        border-radius: 10px 10px 0 0;
    }

    .suggestions__track .coll-product-card__info {
        padding: 10px 12px 14px;
    }

    .suggestions__track .coll-product-card__name {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .suggestions__track .coll-product-card__prices {
        font-size: 12px;
        gap: 6px;
    }

    .suggestions__track .coll-product-card__discount {
        font-size: 10px;
        padding: 1px 4px;
    }
}

/* ===========================
   PRODUCT ATTRIBUTES TABLE
   =========================== */
.pdp__attributes-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
}

.pdp__attributes-table th,
.pdp__attributes-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pdp__attributes-table th {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    width: 40%;
}

.pdp__attributes-table td {
    color: #000;
    font-weight: 400;
}

/* Size Chart inline */
.pdp__size-chart-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.pdp__size-chart-btn {
    display: inline-block;
    padding: 8px 16px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: border-color 0.2s;
}

.pdp__size-chart-btn:hover {
    border-color: #000;
}

/* ===========================
   PRODUCT META
   =========================== */
.pdp__meta {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
}

.pdp__meta a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.pdp__meta a:hover {
    color: var(--nanda-accent, #c6233a);
}

/* ===========================
   STICKY ADD-TO-CART BAR
   =========================== */
.sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    z-index: 9999;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-family: "DM Sans", sans-serif;
}

.sticky-atc.visible {
    transform: translateY(0);
}

.sticky-atc__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
    margin-right: 12px;
}

.sticky-atc__name {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-atc__price {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.sticky-atc__price del {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    margin-left: 6px;
}

.sticky-atc__price ins {
    text-decoration: none;
}

.sticky-atc__btn {
    flex-shrink: 0;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s;
    text-align: center;
}

.sticky-atc__btn:hover {
    background: #333;
}

/* Hide sticky ATC on desktop */
@media (min-width: 769px) {
    .sticky-atc {
        display: none;
    }
}

/* ===========================
   SIZE CHART MODAL
   =========================== */
.size-chart-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
}

.size-chart-modal.open {
    visibility: visible;
    pointer-events: auto;
}

.size-chart-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s;
}

.size-chart-modal.open .size-chart-modal__overlay {
    opacity: 1;
}

.size-chart-modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow: hidden;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.size-chart-modal.open .size-chart-modal__content {
    transform: scale(1);
    opacity: 1;
}

.size-chart-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-family: "Poppins", sans-serif;
}

.size-chart-modal__header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.size-chart-modal__close {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
}

.size-chart-modal__body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(85vh - 60px);
}

.size-chart-modal__img {
    width: 100%;
    border-radius: 8px;
}

/* ===========================
   PRODUCT IMAGE ZOOM
   =========================== */
.pdp__main-image {
    position: relative;
    cursor: zoom-in;
}

.pdp__main-img {
    transition: transform 0.15s ease;
    will-change: transform;
}

/* ===========================
   MOBILE SWIPEABLE GALLERY DOTS
   =========================== */
.pdp__gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.pdp__gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.2s, transform 0.2s;
}

.pdp__gallery-dot.active {
    background: var(--nanda-accent, #c6233a);
    transform: scale(1.25);
}

@media (min-width: 769px) {
    .pdp__gallery-dots {
        display: none;
    }
}

/* ===========================
   QUICK VIEW MODAL (PDP-like)
   =========================== */
.quick-view-modal__gallery {
    flex: 0 0 50%;
}

.quick-view-modal__img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.quick-view-modal__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}

.quick-view-modal__thumb {
    width: 56px;
    height: 56px;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    padding: 0;
}

.quick-view-modal__thumb.active {
    border-color: var(--nanda-accent, #c6233a);
}

.quick-view-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-modal__info {
    flex: 1;
    padding: 0 0 0 28px;
}

.quick-view-modal__cat {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
}

.quick-view-modal__name {
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.quick-view-modal__price {
    font-size: 18px;
    font-weight: 600;
    color: var(--nanda-accent, #c6233a);
    margin-bottom: 10px;
}

.quick-view-modal__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.quick-view-modal__desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    margin-bottom: 20px;
}

.quick-view-modal__atc {
    display: inline-block;
    width: 100%;
    padding: 14px 28px;
    background: var(--nanda-accent, #c6233a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.quick-view-modal__atc:hover {
    background: var(--nanda-primary, #000);
}

.quick-view-modal__atc:active {
    transform: scale(0.98);
}

.quick-view-modal__atc.loading {
    opacity: 0.7;
    pointer-events: none;
}

.quick-view-modal__full-link {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    color: var(--nanda-accent, #c6233a);
    text-decoration: underline;
    text-align: center;
}

@media (max-width: 768px) {
    .quick-view-modal__body {
        flex-direction: column;
    }
    .quick-view-modal__gallery {
        flex: none;
    }
    .quick-view-modal__info {
        padding: 20px 0 0;
    }
}

/* ===========================
   VARIABLE PRODUCT FIXES
   =========================== */

/* Hide WC default quantity + button inside variation-add-to-cart (keep hidden inputs) */
.variations_form .woocommerce-variation-add-to-cart .quantity,
.variations_form .woocommerce-variation-add-to-cart > .single_add_to_cart_button {
    display: none !important;
}

/* Hide WC variation price + availability (price already shown in pdp__price-row) */
.variations_form .woocommerce-variation-price,
.variations_form .woocommerce-variation-availability,
.variations_form .woocommerce-variation-description {
    display: none !important;
}

/* The single_variation div — keep for WC JS but collapse */
.variations_form .woocommerce-variation.single_variation {
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* The woocommerce-variation-add-to-cart — keep in flow for hidden inputs */
.variations_form .woocommerce-variation-add-to-cart {
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Size selector refinements */
.pdp__size-selector {
    margin-bottom: 20px;
    margin-top: 4px;
}

.pdp__size-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.pdp__size-label {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.pdp__size-selected {
    font-size: 13px;
    font-weight: 500;
    color: #000;
}

.pdp__size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pdp__size-btn {
    min-width: 48px;
    height: 42px;
    padding: 0 16px;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 42px;
    text-align: center;
}

.pdp__size-btn:hover {
    border-color: #000;
    background: #fafafa;
}

.pdp__size-btn.active {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.pdp__size-btn--disabled {
    opacity: 0.25;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}

.reset_variations {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
    transition: color 0.2s;
}

.reset_variations:hover {
    color: #000;
}

/* Ensure pdp__actions spacing after size selector */
.variations_form .pdp__actions {
    margin-top: 4px;
}

/* Fix WC .cart form reset — remove default WC form margins */
.variations_form.cart {
    margin-bottom: 0;
}

/* Mobile size buttons */
@media (max-width: 768px) {
    .pdp__size-selector {
        margin-bottom: 16px;
    }

    .pdp__size-btn {
        min-width: 44px;
        height: 40px;
        padding: 0 14px;
        font-size: 13px;
        line-height: 40px;
    }

    .pdp__size-header {
        margin-bottom: 10px;
    }

    .pdp__size-label,
    .pdp__size-selected {
        font-size: 12px;
    }
}

/* Disabled state for add-to-cart when no variation selected */
.pdp__add-to-cart--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pdp__buy-now--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
