/* WooCommerce Elementor Builder - Frontend Styles */

/* ---- Product Grid ---- */
.web-product-grid {
    display: grid;
    grid-template-columns: repeat(var(--web-columns, 3), 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.elementor-element-gallery-sticky {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

@media (max-width: 1024px) {
    .web-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .web-product-grid { grid-template-columns: 1fr; }
}

/* ---- Product Card ---- */
.web-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease;
}

.web-product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    transform: translateY(-2px);
}

.web-product-card__image-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.web-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

/* Mobile: show full image without cropping */
@media (max-width: 600px) {
    .web-product-card {
        overflow: visible;
    }
    .web-product-card__image-wrap {
        aspect-ratio: unset;
        height: auto;
        overflow: visible;
        border-radius: 8px 8px 0 0;
    }
    .web-product-card__image {
        object-fit: contain;
        height: auto;
        width: 100%;
        display: block;
    }
    /* Disable scale on mobile to avoid layout shift with overflow:visible */
    .web-product-card:hover .web-product-card__image {
        transform: none;
    }
}

.web-product-card:hover .web-product-card__image {
    transform: scale(1.04);
}
.web-product-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.web-product-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.web-product-card__title a {
    text-decoration: none;
    color: inherit;
}

.web-product-card__title a:hover { text-decoration: underline; }

.web-product-card__price { font-size: 1rem; }

.web-product-card__price del { opacity: .5; margin-right: 4px; }

.web-product-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    z-index: 2;
}

.web-product-card__badge--sale {
    background: #e44d26;
    color: #fff;
}

.web-product-card__cart { margin-top: auto; }

.web-product-card .button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}

.web-product-card .button:hover { background: #135e96; color: #fff; }

/* ---- Archive Meta ---- */
.web-archive-title { margin: 0 0 8px; }
.web-archive-description { margin-bottom: 20px; }
.web-products-count { opacity: .7; font-size: .9rem; }

/* ---- Filters ---- */
.web-product-filters { margin-bottom: 24px; }

.web-product-filters--horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.web-filter-group { margin-bottom: 16px; }

.web-filter-title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 8px;
    opacity: .6;
}

.web-filter-categories ul { list-style: none; padding: 0; margin: 0; }
.web-filter-categories li { padding: 4px 0; }
.web-filter-categories a { text-decoration: none; color: inherit; }
.web-filter-categories a:hover { text-decoration: underline; }

/* ---- Pagination ---- */
.web-archive-pagination { margin-top: 32px; display: flex; justify-content: center; }
.web-archive-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    gap: 6px;
    padding: 0;
    margin: 0;
}
.web-archive-pagination .page-numbers a,
.web-archive-pagination .page-numbers span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: inherit;
    transition: background .2s, border-color .2s;
}
.web-archive-pagination .page-numbers a:hover { background: #f5f5f5; }
.web-archive-pagination .page-numbers.current {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

/* ---- Single Product Widgets ---- */
.web-product-title { margin: 0 0 12px; }
.web-product-price { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; }
.web-product-price del { font-size: 1rem; font-weight: 400; opacity: .5; }
.web-product-images { margin-bottom: 20px; }
.web-product-rating { margin-bottom: 12px; }
.web-product-description { line-height: 1.7; }
.web-product-short-desc { margin-bottom: 20px; line-height: 1.6; }

.web-product-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
}

.web-meta-row strong { margin-right: 4px; }

/* ---- Add to Cart Widget ---- */
.web-atc-wrap form.cart,
.web-add-to-cart form.cart {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    background: none;
}

.web-atc-wrap .quantity,
.web-add-to-cart .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 130px;
    height: 52px;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
    padding: 0;
    position: relative;
    margin: 0;
}

.web-atc-wrap .qty,
.web-add-to-cart .qty {
    -moz-appearance: textfield;
    appearance: textfield;
    position: relative;
    z-index: 2;
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1rem;
    color: #1a1a1a;
    padding: 0;
    outline: none;
    box-shadow: none;
    min-width: 0;
}
.web-atc-wrap .qty::-webkit-outer-spin-button,
.web-atc-wrap .qty::-webkit-inner-spin-button,
.web-add-to-cart .qty::-webkit-outer-spin-button,
.web-add-to-cart .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.web-atc-qty-btn {
    flex-shrink: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 300;
    color: #1a1a1a !important;
    line-height: 1;
    user-select: none;
    padding: 0;
    box-shadow: none !important;
    position: static;
    z-index: auto;
    transition: none !important;
}
.web-atc-qty-btn:hover,
.web-atc-qty-btn:focus,
.web-atc-qty-btn:active {
    background: transparent !important;
    background-color: transparent !important;
    color: #1a1a1a !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}


.web-atc-wrap .single_add_to_cart_button,
.web-add-to-cart .single_add_to_cart_button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    white-space: nowrap;
    height: 52px;
    min-height: 52px;
    width: auto;
    box-shadow: none;
    outline: none;
}
.web-atc-wrap .single_add_to_cart_button:hover,
.web-atc-wrap .single_add_to_cart_button:focus,
.web-add-to-cart .single_add_to_cart_button:hover,
.web-add-to-cart .single_add_to_cart_button:focus {
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
}
.web-atc-wrap .single_add_to_cart_button.loading,
.web-add-to-cart .single_add_to_cart_button.loading { opacity: 0.7; pointer-events: none; }
.web-atc-wrap .single_add_to_cart_button.added,
.web-add-to-cart .single_add_to_cart_button.added { background-color: #2d6a4f; }


/* ---- Editor Placeholder ---- */
.web-editor-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    text-align: center;
    color: #999;
    background: #fafafa;
}

.web-editor-placeholder .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    opacity: .4;
}

.web-editor-placeholder p { margin: 0; font-size: .9rem; }

/* ---- No Products ---- */
.web-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #999;
}

/* ---- Related / Upsells ---- */
.web-related-products ul.products,
.web-upsells ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .web-related-products ul.products,
    .web-upsells ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Product Highlight Tags Widget ---- */
.web-highlight-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.web-highlight-tags__label {
    font-weight: 600;
    white-space: nowrap;
}

.web-highlight-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.web-highlight-tags__tag {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.4;
    white-space: nowrap;
}

/* ---- Product Icon Badges Widget ---- */
.web-icon-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    width: 100%;
}

.web-icon-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.web-icon-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    background-color: #ffffff;
    overflow: hidden;
    flex-shrink: 0;
}

.web-icon-badge__icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.web-icon-badge__label {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    line-height: 1.3;
    color: #1a1a1a;
    word-break: break-word;
}

@media (max-width: 768px) {
    .web-icon-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---- Product Price Widget ---- */
.web-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.web-price__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.web-price__mrp-label {
    font-size: 0.9rem;
    color: #1a1a1a;
}

.web-price__regular {
    font-size: 0.95rem;
    color: #888;
    text-decoration: line-through;
}

.web-price__regular .woocommerce-Price-amount {
    text-decoration: line-through;
    color: inherit;
    font-size: inherit;
}

.web-price__sale {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
}

.web-price__sale .woocommerce-Price-amount {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.web-price__badge {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.web-price__info {
    display: inline-flex;
    align-items: center;
    color: #888;
    cursor: pointer;
}

.web-price__tax {
    font-size: 0.8rem;
    color: #888;
}


/* Override WooCommerce default button.alt color inside our widget */
.web-add-to-cart button.button.alt,
.web-add-to-cart button.button.alt:visited,
.web-atc-wrap button.button.alt,
.web-atc-wrap button.button.alt:visited {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
}
.web-add-to-cart button.button.alt:hover,
.web-atc-wrap button.button.alt:hover {
    background-color: #333333 !important;
    color: #ffffff !important;
}

/* ---- Product Accordion ---- */
/* ---- Product Accordion — Glassmorphism ---- */
.web-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    border-top: 1px solid #e0e0e0;
}
.web-accordion::before,
.web-accordion::after { display: none; }
.web-accordion__item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
}
.web-accordion__item:hover {
    background: transparent;
    box-shadow: none;
}
.web-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    cursor: pointer;
    user-select: none;
    list-style: none;
    background: transparent;
}
.web-accordion__header:focus { outline: none; }
.web-accordion__title {
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    flex: 1;
}
.web-accordion__icon {
    font-size: 20px;
    color: #1a1a1a;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 16px;
    font-weight: 300;
}
.web-accordion__body {
    display: none;
    overflow: hidden;
}
.web-accordion__body.is-open {
    display: block !important;
}
.web-accordion__content {
    padding: 0 0 22px;
    color: #555;
    font-size: 13px;
    line-height: 1.75;
}
.web-accordion__content p:last-child { margin-bottom: 0; }

/* ---- Product Ingredients Accordion — Clean ---- */
.web-ingredients { width: 100%; }
.web-ing__heading { margin-bottom: 16px; font-size: 1rem; font-weight: 600; color: #1a1a1a; }
.web-ing__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    border-top: 1px solid #e0e0e0;
    padding: 0;
    border-radius: 0;
    overflow: visible;
}
.web-ing__list::before,
.web-ing__list::after { display: none; }
.web-ing__item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    overflow: hidden;
}
.web-ing__item:hover {
    background: transparent;
    box-shadow: none;
}
.web-ing__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
}
.web-ing__header:focus { outline: none; }
.web-ing__icon {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
    font-weight: 300;
}
.web-ing__name {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #1a1a1a;
    flex: 1;
}
.web-ing__body { overflow: hidden; }
.web-ing__content {
    padding: 0 0 20px;
    color: #555;
    font-size: 13px;
    line-height: 1.75;
}
.web-ing__content p:last-child { margin-bottom: 0; }

/* ---- Skin Concerns Grid ---- */
.web-skin-concerns { width: 100%; }
.web-sc__heading {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 16px;
}
.web-sc__grid {
    display: grid;

    gap: 12px;
}
.web-sc__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.web-sc__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.web-sc__img--placeholder {
    background: #e0e0e0;
}
.web-sc__footer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}
.web-sc__label {
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.3;
}
.web-sc__arrow {
    font-size: 0.9rem;
    color: #1a1a1a;
    flex-shrink: 0;
}

/* ================================================================
   Product Reviews Widget
   ================================================================ */
.web-reviews-wrap { font-size: 0.95rem; color: #1a1a1a; width: 100%; }
.web-rv__heading { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 24px; }

/* Summary */
.web-rv__summary { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; }
.web-rv__summary-left { display: flex; flex-direction: column; align-items: center; min-width: 120px; }
.web-rv__avg { font-size: 3rem; font-weight: 700; line-height: 1; }
.web-rv__avg-stars { margin: 4px 0; }
.web-rv__avg-label { font-size: 0.8rem; color: #666; }
.web-rv__summary-right { flex: 1; min-width: 200px; }
.web-rv__bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.web-rv__bar-label { font-size: 0.85rem; width: 28px; flex-shrink: 0; }
.web-rv__bar-track { flex: 1; height: 6px; background: #e0e0e0; border-radius: 3px; overflow: hidden; }
.web-rv__bar-fill { height: 100%; background: #1a1a1a; border-radius: 3px; }
.web-rv__bar-count { font-size: 0.85rem; width: 30px; text-align: right; color: #666; }

/* Stars */
.web-rv-stars { display: inline-flex; gap: 1px; }
.web-rv-star { color: #ddd; font-size: 1rem; }
.web-rv-star.filled { color: #f5a623; }

/* AI Summary */
.web-rv__ai-block { border: 1px solid #e0e0e0; border-radius: 8px; padding: 16px; margin-bottom: 24px; }
.web-rv__ai-label { font-size: 0.8rem; color: #666; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.web-rv__ai-icon { color: #f5a623; }
.web-rv__ai-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.web-rv__ai-btn { background: #fff; border: 1px solid #1a1a1a; border-radius: 20px; padding: 6px 16px; font-size: 0.85rem; cursor: pointer; }

/* Media slider */
.web-rv__media-section { margin-bottom: 24px; }
.web-rv__media-label { font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; }
.web-rv__media-slider { position: relative; display: flex; align-items: center; gap: 8px; }
.web-rv__media-track { display: flex; gap: 8px; overflow: hidden; flex: 1; }
.web-rv__media-img { width: 100px; height: 100px; object-fit: cover; border-radius: 6px; flex-shrink: 0; cursor: pointer; }
.web-rv__media-nav { background: #fff; border: 1px solid #ddd; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Filters */
.web-rv__filters { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.web-rv__search-wrap { position: relative; flex: 1; min-width: 160px; }
.web-rv__search { width: 100%; border: 1px solid #ddd; border-radius: 20px; padding: 7px 14px 7px 14px; font-size: 0.85rem; outline: none; }
.web-rv__search-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #999; pointer-events: none; }
.web-rv__filter-rating { border: 1px solid #ddd; border-radius: 20px; padding: 7px 12px; font-size: 0.85rem; cursor: pointer; background: #fff; outline: none; }
.web-rv__filter-media-label { font-size: 0.85rem; display: flex; align-items: center; gap: 4px; cursor: pointer; }

/* Sort */
.web-rv__sort-row { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.web-rv__sort { border: 1px solid #ddd; border-radius: 4px; padding: 6px 10px; font-size: 0.85rem; cursor: pointer; background: #fff; outline: none; }

/* Review item */
.web-rv__item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #f0f0f0; }
.web-rv__item-left { width: 130px; flex-shrink: 0; }
.web-rv__avatar { width: 40px; height: 40px; border-radius: 50%; background: #e0e0e0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.web-rv__author-name { font-weight: 600; font-size: 0.9rem; display: block; }
.web-rv__verified { font-size: 0.75rem; color: #2d6a4f; display: flex; align-items: center; gap: 2px; margin-bottom: 8px; }
.web-rv__meta-table { font-size: 0.78rem; color: #555; }
.web-rv__meta-row { display: flex; flex-direction: column; margin-bottom: 4px; }
.web-rv__meta-row span:first-child { font-weight: 600; color: #1a1a1a; }
.web-rv__item-right { flex: 1; }
.web-rv__item-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; flex-wrap: wrap; gap: 4px; }
.web-rv__title { font-weight: 700; font-size: 0.95rem; margin-left: 6px; }
.web-rv__date { font-size: 0.8rem; color: #999; white-space: nowrap; }
.web-rv__content { font-size: 0.9rem; line-height: 1.6; color: #333; }
.web-rv__content p { margin: 0 0 6px; }
.web-rv__review-imgs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.web-rv__review-img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; cursor: pointer; }
.web-rv__helpful { font-size: 0.82rem; color: #666; margin-top: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.web-rv__helpful-btn { background: none; border: 1px solid #ddd; border-radius: 4px; padding: 3px 8px; font-size: 0.82rem; cursor: pointer; }
.web-rv__helpful-btn:hover { background: #f5f5f5; }

/* Pagination */
.web-rv__pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 24px; flex-wrap: wrap; }
.web-rv__page-btn { min-width: 36px; height: 36px; border: 1px solid #ddd; background: #fff; border-radius: 4px; cursor: pointer; font-size: 0.9rem; }
.web-rv__page-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.web-rv__page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.web-rv__page-ellipsis { padding: 0 4px; color: #999; }

/* Add review */
.web-rv__add-section { margin-top: 32px; }
.web-rv__add-toggle { background: #1a1a1a; color: #fff; border: none; border-radius: 4px; padding: 10px 24px; font-size: 0.9rem; cursor: pointer; font-weight: 600; }
.web-rv__add-form { margin-top: 20px; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; }
.web-rv__add-form h3 { margin: 0 0 20px; font-size: 1.1rem; }
.web-rv__form-row { margin-bottom: 16px; }
.web-rv__form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.web-rv__form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.web-rv__input, .web-rv__textarea { width: 100%; border: 1px solid #ddd; border-radius: 4px; padding: 8px 12px; font-size: 0.9rem; outline: none; box-sizing: border-box; }
.web-rv__input:focus, .web-rv__textarea:focus { border-color: #1a1a1a; }
.web-rv__textarea { resize: vertical; }
.web-rv__form-stars { display: flex; gap: 4px; margin-bottom: 4px; }
.web-rv__form-star { font-size: 1.8rem; color: #ddd; cursor: pointer; transition: color 0.1s; }
.web-rv__form-star.selected, .web-rv__form-star.hover { color: #f5a623; }
.web-rv__submit { background: #1a1a1a; color: #fff; border: none; border-radius: 4px; padding: 12px 32px; font-size: 0.95rem; font-weight: 600; cursor: pointer; }
.web-rv__submit:hover { background: #333; }
.web-rv__form-msg { padding: 10px 14px; border-radius: 4px; font-size: 0.9rem; margin-bottom: 12px; }
.web-rv__form-msg.success { background: #d4edda; color: #155724; }
.web-rv__form-msg.error { background: #f8d7da; color: #721c24; }

/* Mobile */
@media (max-width: 600px) {
    .web-rv__summary { flex-direction: column; gap: 16px; }
    .web-rv__item { flex-direction: column; gap: 8px; }
    .web-rv__item-left { width: 100%; display: flex; align-items: center; gap: 10px; }
    .web-rv__meta-table { display: none; }
    .web-rv__form-row--half { grid-template-columns: 1fr; }
}

/* ---- Skin Concerns Grid ---- */
.web-skin-concerns { width: 100%; }
.web-sc__heading {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 16px;
}
.web-sc__grid {
    display: grid;

    gap: 12px;
}
.web-sc__item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.web-sc__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.web-sc__img--placeholder {
    background: #e0e0e0;
}
.web-sc__footer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}
.web-sc__label {
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.3;
}
.web-sc__arrow {
    font-size: 0.9rem;
    color: #1a1a1a;
    flex-shrink: 0;
}

/* ================================================================
   Product Reviews Widget
   ================================================================ */
.web-reviews-wrap { font-size: 0.95rem; color: #1a1a1a; width: 100%; }
.web-rv__heading { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: 24px; }

/* Summary */
.web-rv__summary { display: flex; gap: 32px; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; }
.web-rv__summary-left { display: flex; flex-direction: column; align-items: center; min-width: 120px; }
.web-rv__avg { font-size: 3rem; font-weight: 700; line-height: 1; }
.web-rv__avg-stars { margin: 4px 0; }
.web-rv__avg-label { font-size: 0.8rem; color: #666; }
.web-rv__summary-right { flex: 1; min-width: 200px; }
.web-rv__bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.web-rv__bar-label { font-size: 0.85rem; width: 28px; flex-shrink: 0; }
.web-rv__bar-track { flex: 1; height: 6px; background: #e0e0e0; border-radius: 3px; overflow: hidden; }
.web-rv__bar-fill { height: 100%; background: #1a1a1a; border-radius: 3px; }
.web-rv__bar-count { font-size: 0.85rem; width: 30px; text-align: right; color: #666; }

/* Stars */
.web-rv-stars { display: inline-flex; gap: 1px; }
.web-rv-star { color: #ddd; font-size: 1rem; }
.web-rv-star.filled { color: #f5a623; }

/* AI Summary */
.web-rv__ai-block { border: 1px solid #e0e0e0; border-radius: 8px; padding: 16px; margin-bottom: 24px; }
.web-rv__ai-label { font-size: 0.8rem; color: #666; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.web-rv__ai-icon { color: #f5a623; }
.web-rv__ai-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 12px; }
.web-rv__ai-btn { background: #fff; border: 1px solid #1a1a1a; border-radius: 20px; padding: 6px 16px; font-size: 0.85rem; cursor: pointer; }

/* Media slider */
.web-rv__media-section { margin-bottom: 24px; }
.web-rv__media-label { font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; }
.web-rv__media-slider { position: relative; display: flex; align-items: center; gap: 8px; }
.web-rv__media-track { display: flex; gap: 8px; overflow: hidden; flex: 1; }
.web-rv__media-img { width: 100px; height: 100px; object-fit: cover; border-radius: 6px; flex-shrink: 0; cursor: pointer; }
.web-rv__media-nav { background: #fff; border: 1px solid #ddd; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Filters */
.web-rv__filters { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 12px; }
.web-rv__search-wrap { position: relative; flex: 1; min-width: 160px; }
.web-rv__search { width: 100%; border: 1px solid #ddd; border-radius: 20px; padding: 7px 14px 7px 14px; font-size: 0.85rem; outline: none; }
.web-rv__search-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: #999; pointer-events: none; }
.web-rv__filter-rating { border: 1px solid #ddd; border-radius: 20px; padding: 7px 12px; font-size: 0.85rem; cursor: pointer; background: #fff; outline: none; }
.web-rv__filter-media-label { font-size: 0.85rem; display: flex; align-items: center; gap: 4px; cursor: pointer; }

/* Sort */
.web-rv__sort-row { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.web-rv__sort { border: 1px solid #ddd; border-radius: 4px; padding: 6px 10px; font-size: 0.85rem; cursor: pointer; background: #fff; outline: none; }

/* Review item */
.web-rv__item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid #f0f0f0; }
.web-rv__item-left { width: 130px; flex-shrink: 0; }
.web-rv__avatar { width: 40px; height: 40px; border-radius: 50%; background: #e0e0e0; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.web-rv__author-name { font-weight: 600; font-size: 0.9rem; display: block; }
.web-rv__verified { font-size: 0.75rem; color: #2d6a4f; display: flex; align-items: center; gap: 2px; margin-bottom: 8px; }
.web-rv__meta-table { font-size: 0.78rem; color: #555; }
.web-rv__meta-row { display: flex; flex-direction: column; margin-bottom: 4px; }
.web-rv__meta-row span:first-child { font-weight: 600; color: #1a1a1a; }
.web-rv__item-right { flex: 1; }
.web-rv__item-top-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; flex-wrap: wrap; gap: 4px; }
.web-rv__title { font-weight: 700; font-size: 0.95rem; margin-left: 6px; }
.web-rv__date { font-size: 0.8rem; color: #999; white-space: nowrap; }
.web-rv__content { font-size: 0.9rem; line-height: 1.6; color: #333; }
.web-rv__content p { margin: 0 0 6px; }
.web-rv__review-imgs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.web-rv__review-img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; cursor: pointer; }
.web-rv__helpful { font-size: 0.82rem; color: #666; margin-top: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.web-rv__helpful-btn { background: none; border: 1px solid #ddd; border-radius: 4px; padding: 3px 8px; font-size: 0.82rem; cursor: pointer; }
.web-rv__helpful-btn:hover { background: #f5f5f5; }

/* Pagination */
.web-rv__pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 24px; flex-wrap: wrap; }
.web-rv__page-btn { min-width: 36px; height: 36px; border: 1px solid #ddd; background: #fff; border-radius: 4px; cursor: pointer; font-size: 0.9rem; }
.web-rv__page-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.web-rv__page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.web-rv__page-ellipsis { padding: 0 4px; color: #999; }

/* Add review */
.web-rv__add-section { margin-top: 32px; }
.web-rv__add-toggle { background: #1a1a1a; color: #fff; border: none; border-radius: 4px; padding: 10px 24px; font-size: 0.9rem; cursor: pointer; font-weight: 600; }
.web-rv__add-form { margin-top: 20px; border: 1px solid #e0e0e0; border-radius: 8px; padding: 24px; }
.web-rv__add-form h3 { margin: 0 0 20px; font-size: 1.1rem; }
.web-rv__form-row { margin-bottom: 16px; }
.web-rv__form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.web-rv__form-row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.web-rv__input, .web-rv__textarea { width: 100%; border: 1px solid #ddd; border-radius: 4px; padding: 8px 12px; font-size: 0.9rem; outline: none; box-sizing: border-box; }
.web-rv__input:focus, .web-rv__textarea:focus { border-color: #1a1a1a; }
.web-rv__textarea { resize: vertical; }
.web-rv__form-stars { display: flex; gap: 4px; margin-bottom: 4px; }
.web-rv__form-star { font-size: 1.8rem; color: #ddd; cursor: pointer; transition: color 0.1s; }
.web-rv__form-star.selected, .web-rv__form-star.hover { color: #f5a623; }
.web-rv__submit { background: #1a1a1a; color: #fff; border: none; border-radius: 4px; padding: 12px 32px; font-size: 0.95rem; font-weight: 600; cursor: pointer; }
.web-rv__submit:hover { background: #333; }
.web-rv__form-msg { padding: 10px 14px; border-radius: 4px; font-size: 0.9rem; margin-bottom: 12px; }
.web-rv__form-msg.success { background: #d4edda; color: #155724; }
.web-rv__form-msg.error { background: #f8d7da; color: #721c24; }

/* Mobile */
@media (max-width: 600px) {
    .web-rv__summary { flex-direction: column; gap: 16px; }
    .web-rv__item { flex-direction: column; gap: 8px; }
    .web-rv__item-left { width: 100%; display: flex; align-items: center; gap: 10px; }
    .web-rv__meta-table { display: none; }
    .web-rv__form-row--half { grid-template-columns: 1fr; }
}
/* ==============================
   Product Reviews Widget v2
   ============================== */
.web-reviews { width: 100%; font-size: 14px; color: #1a1a1a; }
.web-reviews .web-rv-summary-wrap { display: flex; justify-content: center; margin-bottom: 28px; }

/* Heading */
.web-rv-heading {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 32px;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

/* ---- Summary row ---- */
.web-rv-summary {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0 auto 28px;
    border: none;
    border-radius: 0;
    padding: 0;
}
.web-rv-summary__score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 40px;
    flex-shrink: 0;
}
.web-rv-summary__avg {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    letter-spacing: -1px;
}
.web-rv-summary__stars { margin: 6px 0 4px; }
.web-rv-summary__count { font-size: 0.82rem; color: #666; }
.web-rv-summary__divider {
    width: 1px;
    background: #d0d0d0;
    align-self: stretch;
    margin: 0 40px 0 0;
    flex-shrink: 0;
}
.web-rv-summary__bars { display: flex; flex-direction: column; gap: 6px; width: 280px; flex-shrink: 0; }
.web-rv-bar-row { display: flex; align-items: center; gap: 10px; }
.web-rv-bar-label { font-size: 0.85rem; display: flex; align-items: center; gap: 3px; min-width: 26px; }
.web-rv-bar-track {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 99px;
    overflow: hidden;
    min-width: 0;
}
.web-rv-bar-fill { height: 100%; border-radius: 99px; }
.web-rv-bar-count { font-size: 0.82rem; color: #555; min-width: 34px; text-align: right; }

/* Stars */
.web-rv-stars { display: inline-flex; gap: 1px; line-height: 1; }
.web-rv-star { font-style: normal; }

/* ---- AI Summary ---- */
.web-rv-ai {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 24px;
}
.web-rv-ai__label { font-size: 0.78rem; color: #999; margin-bottom: 8px; }
.web-rv-ai__bolt { color: #f5a623; }
.web-rv-ai__text { font-size: 0.9rem; color: #444; line-height: 1.65; margin-bottom: 14px; }
.web-rv-ai__btn {
    border: 1px solid #1a1a1a;
    background: #fff;
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 0.82rem;
    cursor: pointer;
    color: #1a1a1a;
}

/* ---- Media slider ---- */
.web-rv-media { margin-bottom: 24px; }
.web-rv-media__label { font-size: 0.88rem; font-weight: 700; margin-bottom: 12px; }
.web-rv-media__slider { position: relative; display: flex; align-items: center; gap: 0; }
.web-rv-media__track {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    flex: 1;
    scroll-behavior: smooth;
    scrollbar-width: none;
}
.web-rv-media__track::-webkit-scrollbar { display: none; }
.web-rv-media__img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    display: block;
}
.web-rv-media__nav,
.web-rv-media__nav:hover,
.web-rv-media__nav:focus,
.web-rv-media__nav:active,
.web-rv-media__nav:visited {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 2 !important;
    background: #1a1a1a !important;
    border: none !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    font-size: 22px !important;
    line-height: 36px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    color: #fff !important;
    padding: 0 0 2px 0 !important;
    outline: none !important;
    text-decoration: none !important;
    text-align: center !important;
}
.web-rv-media__nav--prev { left: 4px !important; }
.web-rv-media__nav--next { right: 4px !important; }

/* ---- Filter bar ---- */
.web-rv-filterbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.web-rv-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 14px;
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    background: #fff;
}
.web-rv-search__input {
    border: none;
    outline: none;
    font-size: 0.85rem;
    flex: 1;
    background: transparent;
    color: #1a1a1a;
}
.web-rv-search__icon { flex-shrink: 0; color: #888; }

/* Real visible select pills */
.web-rv-select-pill {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.85rem;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    appearance: auto;
    outline: none;
    width: auto;
    flex-shrink: 0;
}
.web-rv-select-pill--sort {
    border: none;
    font-weight: 600;
    padding: 0 4px;
}

/* With media toggle pill */


/* ---- Topics ---- */
.web-rv-topics { margin-bottom: 8px; }
.web-rv-topics__label { font-size: 0.88rem; font-weight: 700; display: block; margin-bottom: 10px; }
.web-rv-topics__list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.web-rv-topic {
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    color: #333;
    cursor: pointer;
}
.web-rv-topic:hover { border-color: #999; }
.web-rv-topic.is-active { border-color: #1a1a1a; background: #1a1a1a; color: #fff; }
.web-rv-topics__more {
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    color: #1a1a1a;
}

/* ---- Sort bar ---- */
.web-rv-sortbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 14px 0;
    border-top: 1px solid #eee;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #666;
}

/* ---- Review list ---- */
.web-rv-list { display: flex; flex-direction: column; }
.web-rv-item {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    border-bottom: 1px solid #e0e0e0;
    gap: 12px;
    min-width: 0;
    overflow: hidden;
}

/* Header row: avatar + name + date */
.web-rv-item__header {
    display: flex;
    align-items: center;
    gap: 12px;
}
.web-rv-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d5dae3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.web-rv-avatar__initials { font-size: 0.85rem; font-weight: 700; color: #555; }
.web-rv-avatar__check {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 16px;
    height: 16px;
    background: #1a1a1a;
    border-radius: 50%;
    color: #fff;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
}
.web-rv-avatar-name { flex: 1; min-width: 0; }
.web-rv-author-name { font-size: 0.88rem; font-weight: 600; color: #1a1a1a; }
.web-rv-country { font-size: 0.78rem; color: #555; font-weight: 400; margin-left: 4px; }
.web-rv-verified { font-size: 0.78rem; color: #555; display: flex; align-items: center; gap: 3px; margin-top: 1px; }
.web-rv-item__date { font-size: 0.82rem; color: #888; white-space: nowrap; flex-shrink: 0; margin-left: auto; }

/* Stars row */
.web-rv-item__stars-row { display: flex; align-items: center; margin-bottom: -4px; }
.web-rv-item__stars-row .web-rv-star { font-size: 22px; }

/* Title */
.web-rv-item__title { font-weight: 700; font-size: 1rem; color: #1a1a1a; line-height: 1.4; }

/* Content */
.web-rv-item__content { font-size: 0.9rem; color: #333; line-height: 1.7; }

/* Meta inline: Age | Skin Type | Skin Concerns */
.web-rv-item__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.8;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}
.web-rv-meta-row-inline {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0 8px;
    width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}
.web-rv-meta-inline {
    white-space: normal;
    font-size: 0.85rem;
    word-break: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}
.web-rv-meta-sep { color: #bbb; }

/* Images */
.web-rv-item__images { display: flex; gap: 8px; flex-wrap: wrap; }
.web-rv-item__img { width: 64px; height: 64px; object-fit: cover; border-radius: 6px; }

/* Helpful */
.web-rv-item__helpful {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 8px;
    margin-top: 4px;
}
.web-rv-helpful-btn {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.82rem;
    color: #555;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.web-rv-helpful-btn:hover { color: #1a1a1a; }
.web-rv-empty { color: #999; font-size: 0.9rem; padding: 24px 0; }

/* ---- Pagination ---- */
.web-rv-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin-top: 28px;
    padding-top: 4px;
}
.web-rv-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 4px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.88rem;
    color: #1a1a1a;
    cursor: pointer;
    background: #fff;
    transition: background 0.15s, color 0.15s;
    user-select: none;
}
.web-rv-page-btn:hover:not(.web-rv-page-btn--active):not(.web-rv-page-btn--disabled) {
    background: #f5f5f5;
}
.web-rv-page-btn--active { border-color: transparent; }
.web-rv-page-btn--arrow { font-size: 1.1rem; border-color: #e0e0e0; }
.web-rv-page-btn--disabled { color: #ccc; cursor: default; pointer-events: none; border-color: #f0f0f0; }

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .web-rv-summary { flex-direction: column; padding: 20px 16px; gap: 20px; }
    .web-rv-summary__score { flex-direction: row; align-items: center; gap: 12px; min-width: auto; padding-right: 0; }
    .web-rv-summary__avg { font-size: 2.8rem; }
    .web-rv-summary__divider { display: none; }

    .web-rv-media__img { width: 110px; height: 110px; }
    .web-rv-search { max-width: 100%; }
}

/* ============================================================
   Sticky Add to Cart Bar
   ============================================================ */
.web-satc {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}
.web-satc--bottom { bottom: 0; top: auto; box-shadow: 0 -2px 12px rgba(0,0,0,0.08); }
.web-satc--top    { top: 0; bottom: auto; transform: translateY(-100%); box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.web-satc.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.web-satc__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    flex-wrap: nowrap;
}

/* Price */
.web-satc__price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.web-satc__price .amount { font-size: 1rem; font-weight: 600; color: #1a1a1a; }
.web-satc__price del .amount { font-weight: 400; color: #888; font-size: 0.88rem; }
.web-satc__price ins { text-decoration: none; }

/* Controls wrapper */
.web-satc__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

/* Price */
.web-satc__price .amount { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; }
.web-satc__price del {
    text-decoration: none;
    position: relative;
    display: inline-block;
}
.web-satc__price del::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: #888;
}
.web-satc__price del .amount { font-weight: 400; color: #888; font-size: 0.88rem; text-decoration: none; }
.web-satc__price ins { text-decoration: none; }

/* Qty stepper */
.web-satc-qty {
    display: flex !important;
    align-items: center !important;
    border: 1px solid #1a1a1a !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    height: 34px !important;
    width: auto !important;
    flex-shrink: 0 !important;
}
.web-satc-qty__btn {
    width: 22px !important;
    height: 34px !important;
    min-width: 22px !important;
    background: none !important;
    border: none !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    color: #1a1a1a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    flex-shrink: 0 !important;
    transition: background 0.15s !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.web-satc-qty__btn:hover { background: #f5f5f5 !important; }
.web-satc-qty__input {
    width: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    height: 34px !important;
    border: none !important;
    border-left: 1px solid #1a1a1a !important;
    border-right: 1px solid #1a1a1a !important;
    text-align: center !important;
    font-size: 0.82rem !important;
    color: #1a1a1a !important;
    background: #fff !important;
    -moz-appearance: textfield !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
.web-satc-qty__input::-webkit-inner-spin-button,
.web-satc-qty__input::-webkit-outer-spin-button { -webkit-appearance: none !important; }

/* ATC button */
.web-satc__btn {
    height: 34px !important;
    background: #1a1a1a !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 0 32px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: background 0.2s !important;
    letter-spacing: 0.02em !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: none !important;
}
.web-satc__btn:hover { background: #333 !important; }
.web-satc__btn.is-loading { opacity: 0.7 !important; pointer-events: none !important; }
.web-satc__btn.is-added { background: #2e7d32 !important; }

/* Desktop: wider ATC button */
@media (min-width: 769px) {
    .web-satc__btn { padding: 0 72px !important; font-size: 0.95rem !important; }
}

@media (max-width: 480px) {
    .web-satc__inner { padding: 10px 12px; gap: 8px; }
    .web-satc__price .amount { font-size: 0.95rem; }
    .web-satc__price del .amount { font-size: 0.78rem; }
    .web-satc-qty { height: 32px !important; }
    .web-satc-qty__btn { width: 20px !important; min-width: 20px !important; height: 32px !important; font-size: 0.85rem !important; }
    .web-satc-qty__input { width: 22px !important; min-width: 22px !important; max-width: 22px !important; height: 32px !important; font-size: 0.78rem !important; }
    .web-satc__btn { height: 32px !important; padding: 0 28px !important; font-size: 0.82rem !important; }
}

/* ============================================================
   Site Header Widget
   ============================================================ */

/* Wrap */
.web-hdr-wrap { width: 100%; font-family: inherit; }

/* ---------- TICKER ---------- */
.web-hdr-ticker {
    background: #1a1a1a;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}
.web-hdr-ticker__track {
    display: flex;
    width: 100%;
    position: relative;
    height: 100%;
}
.web-hdr-ticker__slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 0 16px;
    text-decoration: none;
    color: inherit;
    gap: 2px;
}
.web-hdr-ticker__slide.is-active {
    opacity: 1;
    transform: translateX(0);
}
.web-hdr-ticker__slide.is-leaving {
    opacity: 0;
    transform: translateX(-100%);
}
.web-hdr-ticker__main { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; }
.web-hdr-ticker__sub  { font-size: 0.72rem; opacity: 0.85; }

/* ---------- HEADER BAR ---------- */
.web-hdr-bar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    width: 100%;
}
/* Sticky wrapper — Elementor section must have overflow:visible */
.web-hdr-wrap.is-sticky-active {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}
.web-hdr-bar__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 72px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 16px;
}
.web-hdr-bar__inner .web-hdr-logo {
    justify-self: start;
}
.web-hdr-bar__inner .web-hdr-nav {
    justify-self: center;
}
.web-hdr-bar__inner .web-hdr-icons {
    justify-self: end;
    margin-left: 0;
}
/* Hamburger takes logo slot on mobile */
.web-hdr-bar__inner .web-hdr-hamburger {
    justify-self: start;
}

/* ---------- LOGO ---------- */
.web-hdr-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.web-hdr-logo img { display: block; width: 120px; height: auto; }
.web-hdr-logo__text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

/* ---------- HAMBURGER ---------- */
.web-hdr-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.web-hdr-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #1a1a1a;
    transition: all 0.2s;
}

/* ---------- DESKTOP NAV ---------- */
.web-hdr-nav { }
.web-hdr-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 32px;
}
.web-hdr-nav__list li { position: relative; }
.web-hdr-nav__list > li > a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.web-hdr-nav__list > li > a:hover { color: #555; }

/* Submenu */
.web-hdr-nav__list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    min-width: 180px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    z-index: 1000;
}
.web-hdr-nav__list li:hover > .sub-menu { display: block; }
.web-hdr-nav__list .sub-menu li a {
    display: block;
    padding: 10px 18px;
    font-size: 0.82rem;
    color: #1a1a1a;
    text-decoration: none;
    white-space: nowrap;
}
.web-hdr-nav__list .sub-menu li a:hover { background: #f8f8f8; }

/* ---------- ICONS ---------- */
.web-hdr-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}
.web-hdr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
    padding: 0;
    transition: color 0.2s;
    width: 28px;
    height: 28px;
}
.web-hdr-icon:hover { color: #555; }
.web-hdr-icon svg { display: block; }
.web-hdr-icon__dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7px;
    height: 7px;
    background: #e8b400;
    border-radius: 50%;
    border: 1.5px solid #fff;
}
.web-hdr-cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    line-height: 1;
}

/* ---------- SEARCH BAR ---------- */
.web-hdr-search-wrap {
    display: none;
    border-top: 1px solid #e8e8e8;
    padding: 12px 40px;
}
.web-hdr-search-wrap.is-open { display: block; }
.web-hdr-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 6px;
}
.web-hdr-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    background: transparent;
    color: #1a1a1a;
    padding: 4px 0;
}
.web-hdr-search-input::placeholder { color: #aaa; }
.web-hdr-search-submit,
.web-hdr-search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    display: flex;
    align-items: center;
    padding: 0;
}
.web-hdr-search-submit:hover,
.web-hdr-search-close:hover { color: #1a1a1a; }

/* ---------- MOBILE DRAWER ---------- */
.web-hdr-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
}
.web-hdr-drawer.is-open { display: block; }
.web-hdr-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.web-hdr-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.web-hdr-drawer.is-open .web-hdr-drawer__panel {
    transform: translateX(0);
}
.web-hdr-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    width: 52px;
    height: 52px;
    margin: 18px 18px 10px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    flex-shrink: 0;
    transition: background 0.15s;
}
.web-hdr-drawer__close svg { width: 24px; height: 24px; }
.web-hdr-drawer__close:hover { background: #f5f5f5; }
.web-hdr-drawer__nav { flex: 1; padding: 8px 0; }
.web-hdr-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.web-hdr-drawer__list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.web-hdr-drawer__list li a:hover { background: #fafafa; }
/* Remove the → arrow from all links — toggle button handles children */
.web-hdr-drawer__list li a::after { display: none; }

/* Item row: link + toggle button side by side */
.web-hdr-drawer__item-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #f0f0f0;
}
.web-hdr-drawer__item-row .web-hdr-drawer__link {
    flex: 1;
    border-bottom: none; /* border is on the row */
    padding-right: 8px;
}
.web-hdr-drawer__item-row .web-hdr-drawer__link::after { display: none; }

/* Toggle chevron button */
.web-hdr-drawer__toggle {
    background: none;
    border: none;
    border-left: 1px solid #f0f0f0;
    padding: 0 18px;
    cursor: pointer;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s;
}
.web-hdr-drawer__toggle:hover { color: #1a1a1a; }
.web-hdr-drawer__toggle svg {
    transition: transform 0.25s ease;
    display: block;
}
.web-hdr-drawer__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Submenu */
.web-hdr-drawer__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fafafa;
}
.web-hdr-drawer__submenu li a {
    padding-left: 44px;
    font-size: 0.82rem;
    font-weight: 400;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}
.web-hdr-drawer__submenu li a::after { display: none; }
.web-hdr-drawer__submenu li a:hover { background: #f0f0f0; color: #1a1a1a; }

/* Direct link items (no children) still get the → */
.web-hdr-drawer__list > li > .web-hdr-drawer__link::after {
    content: '→';
    font-size: 0.9rem;
    color: #999;
    display: inline;
}
.web-hdr-drawer__list > li > .web-hdr-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.web-hdr-drawer__footer {
    padding: 20px 28px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}
.web-hdr-drawer__login {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.04em;
}
.web-hdr-drawer__social {
    display: flex;
    align-items: center;
    gap: 14px;
}
.web-hdr-drawer__social-link {
    color: #1a1a1a;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
}
.web-hdr-drawer__social-link:hover { color: #555; }

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 900px) {
    .web-hdr-bar__inner {
        grid-template-columns: auto 1fr auto;
        padding: 0 16px;
        gap: 10px;
    }
    .web-hdr-bar__inner .web-hdr-logo { justify-self: center; }
    .web-hdr-nav { display: none; }
    .web-hdr-hamburger { display: flex; }
    .web-hdr-icons { gap: 12px; }
    .web-hdr-search-wrap { padding: 12px 16px; }
}

/* --- Sticky fixed clone --- */
.web-hdr-bar--fixed {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
}
.web-hdr-bar--fixed.web-hdr-bar--visible {
    transform: translateY(0);
    pointer-events: auto;
}
/* Prevent original bar transition interference */
.web-hdr-bar {
    transition: none;
}

/* ============================================================
   Site Footer Widget
   ============================================================ */
.web-ftr {
    background: #1a1a1a;
    color: #fff;
    font-family: inherit;
}

/* ---- Main grid ---- */
.web-ftr__main { padding: 60px 40px 40px; }
.web-ftr__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

/* ---- Brand col ---- */
.web-ftr-logo { display: inline-block; text-decoration: none; }
.web-ftr-logo img { display: block; width: 130px; height: auto; }
.web-ftr-logo__text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.web-ftr__tagline {
    margin: 18px 0 0;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #bbb;
    max-width: 220px;
}

/* ---- Nav columns ---- */
.web-ftr-col__heading--desktop {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.web-ftr-col__dash {
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    opacity: 0.5;
}
.web-ftr-col__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.web-ftr-col__list li a {
    font-size: 0.82rem;
    color: #ccc;
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s;
    display: block;
}
.web-ftr-col__list li a:hover { color: #fff; }

/* ---- Footer submenu dropdown ---- */
.web-ftr-col__list li.menu-item-has-children {
    position: relative;
}
.web-ftr-col__list li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}
.web-ftr-col__list li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    flex-shrink: 0;
    transition: transform 0.25s;
}
.web-ftr-col__list li.menu-item-has-children.web-ftr-open > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}
.web-ftr-col__list .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 12px;
}
.web-ftr-col__list li.menu-item-has-children.web-ftr-open > .sub-menu {
    max-height: 500px;
}
.web-ftr-col__list .sub-menu li a {
    font-size: 0.78rem;
    color: #aaa;
    padding-left: 0;
    line-height: 2;
}
.web-ftr-col__list .sub-menu li a:hover { color: #fff; }

/* ---- Contact col ---- */
.web-ftr-social {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}
.web-ftr-social--centered { justify-content: center; }
.web-ftr-social__link {
    color: #ccc;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
}
.web-ftr-social__link:hover { color: #fff; }
.web-ftr-contact__block { margin-bottom: 16px; }
.web-ftr-contact__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px;
}
.web-ftr-contact__value {
    font-size: 0.8rem;
    color: #bbb;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.6;
}
.web-ftr-contact__value a { color: #bbb; text-decoration: none; }
.web-ftr-contact__value a:hover { color: #fff; }
.web-ftr-contact__value small { font-size: 0.75rem; color: #888; }

/* ---- Mobile accordions (hidden on desktop) ---- */
.web-ftr__accordions { display: none; }
.web-ftr-accordion__item {
    border-top: 1px solid #333;
}
.web-ftr-accordion__item:last-child { border-bottom: 1px solid #333; }
.web-ftr-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 16px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
}
.web-ftr-accordion__chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: #888;
}
.web-ftr-accordion__trigger[aria-expanded="true"] .web-ftr-accordion__chevron {
    transform: rotate(180deg);
}
.web-ftr-accordion__body {
    display: none;
    padding: 0 20px 16px;
}
.web-ftr-accordion__body .web-ftr-col__list li a {
    text-align: center;
    line-height: 2.2;
    font-size: 0.85rem;
}

/* Mobile contact section */
.web-ftr-mobile-contact {
    padding: 28px 20px;
    text-align: center;
    border-top: 1px solid #333;
}
.web-ftr-mobile-contact__heading {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.web-ftr-mobile-contact .web-ftr-social { margin-bottom: 24px; }
.web-ftr-mobile-contact .web-ftr-contact__block { text-align: center; }
.web-ftr-mobile-contact .web-ftr-contact__value { justify-content: center; }

/* ---- Payment strip ---- */
.web-ftr__payment {
    border-top: 1px solid #2a2a2a;
    padding: 28px 40px;
}
.web-ftr__payment-inner { max-width: 1300px; margin: 0 auto; }
.web-ftr-payment__heading {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.web-ftr-payment__line {
    display: block;
    width: 40px;
    height: 1.5px;
    background: #444;
}
.web-ftr-payment__logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.web-ftr-payment__logo {
    background: #fff;
    border-radius: 6px;
    width: 56px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px 6px;
}
.web-ftr-payment__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.web-ftr-payment__logo--text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.02em;
    background: #fff;
}
.web-ftr-payment__suffix {
    font-size: 0.75rem;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ---- Copyright ---- */
.web-ftr__copyright {
    border-top: 1px solid #2a2a2a;
    padding: 16px 40px;
    text-align: center;
}
.web-ftr__copyright p {
    font-size: 0.72rem;
    color: #555;
    margin: 0;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
    .web-ftr__main { display: none; }
    .web-ftr__accordions { display: block; }

    /* Show brand at top on mobile */
    .web-ftr__accordions::before {
        content: '';
        display: block;
    }
    .web-ftr-mobile-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 20px 24px;
        border-bottom: 1px solid #333;
    }
    .web-ftr__payment { padding: 24px 20px; }
    .web-ftr__payment-inner { text-align: center; }
    .web-ftr-payment__logos { justify-content: center; }
    .web-ftr__copyright { padding: 14px 20px; }
}
/* Skin Concerns — mobile: cap to 3 columns max */
@media (max-width: 767px) {
    .web-sc__grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ═══════════════════════════════════════════════════════
   HOME PAGE WIDGETS
   ═══════════════════════════════════════════════════════ */

/* Hero */
.web-hero { position:relative; overflow:hidden; }
.web-hero__tagline { font-size:13px; color:#888; text-align:right; margin-bottom:10px; line-height:1.5; }
.web-hero__tagline em { font-style:italic; }
.web-hero__title { font-family:Georgia,serif; font-size:110px; font-weight:400; line-height:.88; letter-spacing:-3px; color:#1a1a1a; position:relative; z-index:2; }
.web-hero__blobs { position:absolute; inset:0; pointer-events:none; z-index:1; }
.web-hero__blob { position:absolute; border-radius:50%; background:radial-gradient(circle,rgba(210,210,200,.55),rgba(235,235,228,.2)); display:block; }
.web-hero__blob--1 { width:88px; height:88px; top:28px; left:30%; }
.web-hero__blob--2 { width:56px; height:56px; top:55px; right:12%; }
.web-hero__blob--3 { width:36px; height:36px; bottom:30px; right:20%; }

/* Hero logo image */
.web-hero__logo-wrap { position:relative; z-index:2; }
.web-hero__logo-img { display:block; max-width:100%; height:auto; }

/* Category Nav */
.web-catnav { display:flex; flex-wrap:wrap; justify-content:center; gap:6px 28px; padding:16px 0; border-top:1px solid #e5e5e5; border-bottom:1px solid #e5e5e5; }
.web-catnav a { font-size:13px; color:#1a1a1a; text-decoration:none; white-space:nowrap; letter-spacing:.3px; }
.web-catnav a:hover { text-decoration:underline; }

/* Feature Section */
.web-feature { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center; }
.web-feature__heading { font-family:Georgia,serif; font-size:26px; font-weight:400; line-height:1.25; color:#1a1a1a; margin-bottom:16px; }
.web-feature__p { font-size:12px; color:#666; line-height:1.7; margin-bottom:8px; }
.web-feature__btn { display:inline-block; margin-top:20px; padding:9px 24px; border:1px solid #1a1a1a; font-size:12px; letter-spacing:.5px; text-decoration:none; color:#1a1a1a; border-radius:20px; transition:background .2s,color .2s; }
.web-feature__btn:hover { background:#1a1a1a; color:#fff; }
.web-feature__img-wrap { background:#f5f5f0; border-radius:6px; overflow:hidden; }
.web-feature__img { width:100%; height:auto; display:block; }

/* Product Grid — full width, gap between images */
.web-pgrid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; align-items:stretch; width:100%; }
.web-pgrid__images { display:contents; }
.web-pgrid__img-wrap { background:#f0f0eb; border-radius:4px; overflow:hidden; width:100%; }
.web-pgrid__img { width:100%; height:auto; display:block; object-fit:unset; }
.web-pgrid__text { padding:24px 32px; display:block; }
.web-pgrid__heading { font-family:Georgia,serif; font-size:22px; font-weight:400; line-height:1.25; color:#1a1a1a; margin-bottom:14px; }
.web-pgrid__body { font-size:11px; color:#666; line-height:1.8; margin-bottom:16px; }
.web-pgrid__btn { display:inline-block; padding:8px 22px; border:1px solid #1a1a1a; font-size:11px; letter-spacing:.5px; text-decoration:none; color:#1a1a1a; border-radius:20px; transition:background .2s,color .2s; }
.web-pgrid__btn:hover { background:#1a1a1a; color:#fff; }

/* Responsive */
@media (max-width:768px) {
    .web-hero__title { letter-spacing:-1.5px; }
    .web-hero__blob--1 { left:20%; }
    .web-feature { grid-template-columns:1fr; gap:24px; }
    .web-feature__img-wrap { aspect-ratio:4/3; }
    .web-pgrid { grid-template-columns:1fr; gap:12px; }
    .web-pgrid__text { order:-1; padding:16px 0 8px; }
    .web-pgrid__btn { align-self:flex-start; }
}
@media (max-width:480px) {
    .web-catnav { gap:6px 16px; }
    .web-feature__btn { display:block; text-align:center; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT US WIDGET
   ═══════════════════════════════════════════════════════ */

/*
 * .wab-wrap does NOT use overflow:hidden — that was clipping full-bleed
 * children on mobile. Full-bleed sections now use .wab-fullbleed which
 * expands via negative margins on the wrapper, while .wab-wrap itself
 * is simply a standard block container with padding.
 */
.wab-wrap { font-family:'Helvetica Neue',Helvetica,Arial,sans-serif; color:#1a1a1a; background:#fff; padding:0 24px; box-sizing:border-box; }
.wab-divider { border:none; border-top:1px solid #e8e8e8; margin:0; }

/* Eyebrow / label */
.wab-eyebrow,
.wab-section-label { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:#999; display:block; margin-bottom:16px; }

/* ── Full-bleed helper
   Pulls the element edge-to-edge relative to .wab-wrap's padding (24px).
   The inner content is padded back to match, so text aligns with the rest.
   No width:calc() tricks — margin-inline removes the parent padding cleanly. */
.wab-fullbleed { margin-left:-24px; margin-right:-24px; padding-left:24px; padding-right:24px; box-sizing:border-box; }
.wab-fullbleed--alt { background:#fafafa; }
.wab-fullbleed--dark { background:#1a1a1a; }

/* ── Hero ── */
.wab-hero { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; padding:80px 0 72px; }
.wab-hero__text { min-width:0; }
.wab-hero__heading { font-family:Georgia,serif; font-size:52px; font-weight:400; line-height:1.1; letter-spacing:-1.5px; color:#1a1a1a; margin:0 0 24px; word-break:break-word; overflow-wrap:break-word; }
.wab-hero__sub { font-size:16px; color:#555; line-height:1.7; white-space:pre-line; }
.wab-hero__img-wrap { border-radius:4px; overflow:hidden; background:#f5f5f0; min-width:0; }
.wab-hero__img { width:100%; height:auto; display:block; }

/* ── Split sections ── */
.wab-section { padding:64px 0; }
.wab-section--split { display:grid; grid-template-columns:220px 1fr; gap:60px; align-items:start; }
.wab-section--split > * { min-width:0; }
.wab-section__heading { font-family:Georgia,serif; font-size:30px; font-weight:400; line-height:1.25; color:#1a1a1a; margin:0 0 20px; word-break:break-word; overflow-wrap:break-word; }
.wab-section__body { font-size:14px; color:#555; line-height:1.85; }
.wab-section__body p { margin:0 0 14px; }
.wab-section__body p:last-child { margin:0; }
.wab-section__top { margin-bottom:48px; }
.wab-section__top .wab-section__heading { font-size:34px; }

/* ── Beliefs grid ── */
.wab-beliefs { display:grid; grid-template-columns:1fr 1fr; gap:0; border-top:1px solid #e8e8e8; border-left:1px solid #e8e8e8; }
.wab-belief { display:flex; gap:20px; align-items:flex-start; padding:36px 32px; border-right:1px solid #e8e8e8; border-bottom:1px solid #e8e8e8; transition:background .2s; min-width:0; }
.wab-belief:hover { background:#fafafa; }
.wab-belief__num { font-family:Georgia,serif; font-size:32px; font-weight:400; color:#1a1a1a; line-height:1; flex-shrink:0; opacity:.15; }
.wab-belief__text { min-width:0; }
.wab-belief__title { font-size:15px; font-weight:600; color:#1a1a1a; margin:0 0 6px; line-height:1.3; word-break:break-word; }
.wab-belief__desc { font-size:13px; color:#666; line-height:1.65; margin:0; }

/* ── Science pillars ── */
.wab-pillars { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid #e8e8e8; }
.wab-pillar { padding:40px 28px; border-right:1px solid #e8e8e8; min-width:0; }
.wab-pillar:last-child { border-right:none; }
.wab-pillar__icon { display:block; font-size:20px; margin-bottom:20px; color:#1a1a1a; opacity:.4; }
.wab-pillar__title { font-size:14px; font-weight:600; color:#1a1a1a; margin:0 0 10px; line-height:1.3; word-break:break-word; }
.wab-pillar__desc { font-size:12px; color:#666; line-height:1.7; margin:0; }

/* ── Promise (full-bleed dark via .wab-fullbleed--dark wrapper) ── */
.wab-promise { color:#fff; padding:96px 0; text-align:center; }
.wab-promise__inner { max-width:640px; margin:0 auto; width:100%; box-sizing:border-box; }
.wab-fullbleed--dark .wab-section-label { color:#666; }
.wab-promise__heading { font-family:Georgia,serif; font-size:40px; font-weight:400; line-height:1.15; color:#fff; margin:0 0 28px; letter-spacing:-.5px; word-break:break-word; overflow-wrap:break-word; }
.wab-promise__body { font-size:15px; color:#aaa; line-height:1.85; margin-bottom:24px; }
.wab-promise__body p { margin:0 0 14px; }
.wab-promise__body p:last-child { margin:0; }
.wab-promise__tagline { font-size:12px; letter-spacing:2px; text-transform:uppercase; color:#555; margin:32px 0 36px; }
.wab-promise__btn { display:inline-block; padding:14px 40px; border:1px solid #fff; color:#fff; text-decoration:none; font-size:13px; letter-spacing:.8px; border-radius:2px; transition:background .2s,color .2s; }
.wab-promise__btn:hover { background:#fff; color:#1a1a1a; }

/* ── Responsive ── */
@media (max-width:900px) {
    .wab-hero { grid-template-columns:1fr; gap:32px; padding:48px 0 40px; }
    .wab-hero__heading { font-size:36px; letter-spacing:-1px; }
    .wab-section--split { grid-template-columns:1fr; gap:20px; }
    .wab-pillars { grid-template-columns:1fr 1fr; }
    .wab-pillar { border-bottom:1px solid #e8e8e8; }
    .wab-pillar:nth-child(2n) { border-right:none; }
    .wab-promise__heading { font-size:28px; }
}
@media (max-width:600px) {
    .wab-wrap { padding:0 16px; }
    /* Keep full-bleed wrappers edge-to-edge at the smaller padding size */
    .wab-fullbleed { margin-left:-16px; margin-right:-16px; padding-left:16px; padding-right:16px; }
    .wab-hero { padding:48px 0 40px; }
    .wab-hero__heading { font-size:28px; letter-spacing:-.5px; }
    .wab-hero__sub { white-space:normal; }
    .wab-beliefs { grid-template-columns:1fr; }
    .wab-belief { padding:24px 16px; }
    .wab-belief__num { font-size:24px; }
    .wab-pillars { grid-template-columns:1fr; }
    .wab-pillar { border-right:none; border-bottom:1px solid #e8e8e8; padding:28px 16px; }
    .wab-section { padding:40px 0; }
    .wab-section__heading { font-size:22px; }
    .wab-promise { padding:64px 0; }
    .wab-promise__heading { font-size:24px; letter-spacing:0; }
    .wab-promise__btn { padding:14px 28px; }
    .wab-promise__tagline { letter-spacing:1px; }
}

/* ═══════════════════════════════════════════════════════
   AUTH WIDGET (Login / Sign Up)
   ═══════════════════════════════════════════════════════ */

.wauth__wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f6f4;
    padding: 40px 16px;
}
.wauth__panel {
    background: #fff;
    border-radius: 4px;
    width: 100%;
    max-width: 440px;
    padding: 48px 44px;
    box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}

/* Brand */
.wauth__brand { text-align: center; margin-bottom: 32px; }
.wauth__logo-img { max-height: 48px; width: auto; display: inline-block; }
.wauth__logo-text { font-family: Georgia, serif; font-size: 22px; font-weight: 400; color: #1a1a1a; letter-spacing: -.5px; }
.wauth__tagline { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; margin-top: 6px; }
.wauth__brand a { text-decoration: none; }

/* Tabs */
.wauth__tabs { display: flex; border-bottom: 1px solid #e8e8e8; margin-bottom: 28px; }
.wauth__tab {
    flex: 1; background: none; border: none; padding: 12px 0; font-size: 13px; font-weight: 500;
    letter-spacing: .3px; color: #aaa; cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -1px; transition: color .2s, border-color .2s;
}
.wauth__tab.is-active { color: #1a1a1a; border-bottom-color: #1a1a1a; }

/* Notices */
.wauth__notice { padding: 12px 16px; border-radius: 4px; font-size: 13px; margin-bottom: 20px; line-height: 1.5; }
.wauth__notice--success { background: #f0faf0; color: #2d7a2d; border: 1px solid #c3e6c3; }
.wauth__notice--error   { background: #fdf3f3; color: #c0392b; border: 1px solid #f5c6cb; }

/* Form header */
.wauth__form-header { margin-bottom: 24px; }
.wauth__heading { font-family: Georgia, serif; font-size: 24px; font-weight: 400; color: #1a1a1a; margin: 0 0 4px; }
.wauth__sub { font-size: 13px; color: #888; margin: 0; }

/* Fields */
.wauth__field { margin-bottom: 18px; }
.wauth__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.wauth__field-row .wauth__field { margin-bottom: 18px; }
.wauth__label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .8px; text-transform: uppercase; color: #666; margin-bottom: 7px; }
.wauth__label-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.wauth__label-row .wauth__label { margin-bottom: 0; }
.wauth__input {
    width: 100%; padding: 11px 14px; border: 1px solid #e0e0e0; border-radius: 4px;
    font-size: 14px; color: #1a1a1a; background: #fff; outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.wauth__input:focus { border-color: #1a1a1a; box-shadow: 0 0 0 3px rgba(26,26,26,.06); }
.wauth__input::placeholder { color: #ccc; }
.wauth__input-wrap { position: relative; }
.wauth__input-wrap .wauth__input { padding-right: 42px; }
.wauth__eye {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: none; border: none; padding: 4px; cursor: pointer; color: #aaa;
    display: flex; align-items: center; transition: color .2s;
}
.wauth__eye:hover { color: #1a1a1a; }

/* Forgot / links */
.wauth__forgot { font-size: 12px; color: #1a1a1a; text-decoration: none; }
.wauth__forgot:hover { text-decoration: underline; }

/* Remember */
.wauth__remember { margin-bottom: 20px; }
.wauth__check-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; cursor: pointer; }
.wauth__check { width: 15px; height: 15px; accent-color: #1a1a1a; cursor: pointer; flex-shrink: 0; }

/* Buttons */
.wauth__btn-primary {
    width: 100%; padding: 13px; background: #1a1a1a; color: #fff; border: 1px solid #1a1a1a;
    border-radius: 4px; font-size: 13px; font-weight: 600; letter-spacing: .5px;
    cursor: pointer; transition: background .2s, opacity .2s; display: flex;
    align-items: center; justify-content: center; gap: 8px;
}
.wauth__btn-primary:hover { background: #333; }
.wauth__btn-primary:disabled { opacity: .6; cursor: not-allowed; }
.wauth__btn-secondary {
    width: 100%; padding: 11px; background: transparent; color: #555; border: 1px solid #e0e0e0;
    border-radius: 4px; font-size: 13px; cursor: pointer; margin-top: 10px;
    display: block; text-align: center; text-decoration: none; transition: border-color .2s;
}
.wauth__btn-secondary:hover { border-color: #1a1a1a; color: #1a1a1a; }

/* Spinner */
@keyframes wauth-spin { to { transform: rotate(360deg); } }
.wauth__spin { animation: wauth-spin .8s linear infinite; }

/* Switch / terms */
.wauth__switch { text-align: center; font-size: 13px; color: #888; margin-top: 20px; margin-bottom: 0; }
.wauth__switch-btn { background: none; border: none; color: #1a1a1a; font-size: 13px; font-weight: 600; cursor: pointer; padding: 0; text-decoration: underline; }
.wauth__terms { font-size: 11px; color: #aaa; line-height: 1.6; margin-bottom: 20px; }
.wauth__terms a { color: #666; }
.wauth__auto-pass { font-size: 12px; color: #888; margin-bottom: 18px; }

/* Logged in state */
.wauth__panel--loggedin { text-align: center; }
.wauth__logged { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.wauth__avatar { border-radius: 50%; }
.wauth__logged-greeting { font-size: 16px; color: #1a1a1a; margin: 0; }

/* Mobile */
@media (max-width: 480px) {
    .wauth__panel { padding: 32px 24px; }
    .wauth__field-row { grid-template-columns: 1fr; }
    .wauth__heading { font-size: 20px; }
}

/* ==========================================================================
   Cart Widget v2 (wcart2__)
   ========================================================================== */

.wcart2__wrap {
    background: #f7f6f4;
    min-height: 60vh;
    padding: 40px 24px 72px;
    font-family: inherit;
}
.wcart2__inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* ── Layout ── */
.wcart2__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: start;
}

/* ── Page header ── */
.wcart2__page-header {
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.wcart2__page-title {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -.5px;
}
.wcart2__item-count {
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #aaa;
}

/* ── Items panel ── */
.wcart2__items-panel {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ebebeb;
    overflow: hidden;
}
.wcart2__items-header {
    display: flex;
    justify-content: space-between;
    padding: 11px 22px;
    border-bottom: 1px solid #f2f2f2;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: #bbb;
}

/* ── Individual item ── */
.wcart2__item {
    display: flex;
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid #f7f6f4;
    transition: opacity .2s;
}
.wcart2__item:last-of-type { border-bottom: none; }

.wcart2__item-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    background: #f7f6f4;
}
.wcart2__item-thumb img  { width: 100%; height: 100%; object-fit: cover; display: block; }
.wcart2__item-thumb a    { display: block; width: 100%; height: 100%; }

.wcart2__item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wcart2__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.wcart2__item-meta { min-width: 0; }
.wcart2__item-name {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    margin-bottom: 3px;
    line-height: 1.4;
}
.wcart2__item-name:hover { text-decoration: underline; }
.wcart2__item-variant {
    font-size: 11px;
    color: #aaa;
    display: block;
    margin-bottom: 3px;
}
.wcart2__item-unit-price {
    font-size: 11px;
    color: #999;
    display: block;
}

/* Remove button */
.wcart2__remove {
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 3px;
    cursor: pointer;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: color .15s;
}
.wcart2__remove:hover { color: #1a1a1a; }

/* Item bottom row */
.wcart2__item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.wcart2__item-total {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Qty stepper ── */
.wcart2__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    height: 32px;
}
.wcart2__qty-btn {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}
.wcart2__qty-btn:hover { background: #1a1a1a; color: #fff; }
.wcart2__qty-val {
    min-width: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    line-height: 30px;
    padding: 0 6px;
}

/* ── Coupon row ── */
.wcart2__coupon-row {
    padding: 14px 22px;
    border-top: 1px solid #f2f2f2;
    background: #fafaf9;
}
.wcart2__coupon-form {
    display: flex;
    gap: 0;
}
.wcart2__coupon-input {
    flex: 1;
    height: 34px;
    padding: 0 13px;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 12px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color .15s;
}
.wcart2__coupon-input:focus { border-color: #1a1a1a; }
.wcart2__coupon-input::placeholder { color: #ccc; }
.wcart2__apply-btn {
    height: 34px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid #1a1a1a;
    border-radius: 0 6px 6px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.wcart2__apply-btn:hover { background: #1a1a1a; color: #fff; }

.wcart2__applied-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
}
.wcart2__coupon-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
    color: #555;
}
.wcart2__coupon-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    font-size: 15px;
    line-height: 1;
    padding: 0;
    transition: color .15s;
}
.wcart2__coupon-remove:hover { color: #c0392b; }
.wcart2__coupon-saving { font-size: 12px; color: #2d7a2d; }

/* ── Continue link ── */
.wcart2__continue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #aaa;
    text-decoration: none;
    transition: color .15s, gap .15s;
}
.wcart2__continue:hover { color: #1a1a1a; gap: 9px; }

/* ── Summary panel ── */
.wcart2__summary {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ebebeb;
    padding: 24px;
    position: sticky;
    top: 24px;
}
.wcart2__summary-heading {
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: -.3px;
}

/* Shipping nudge */
.wcart2__shipping-nudge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f7f4;
    border-radius: 6px;
    padding: 9px 12px;
    font-size: 11px;
    color: #2d7a2d;
    margin-bottom: 18px;
}
.wcart2__shipping-nudge svg { flex-shrink: 0; }

/* Totals */
.wcart2__totals { margin-bottom: 20px; }
.wcart2__total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 0;
    border-bottom: 1px solid #f7f6f4;
    font-size: 12px;
}
.wcart2__total-row:last-child { border-bottom: none; }
.wcart2__total-label { color: #888; }
.wcart2__total-value { color: #1a1a1a; font-weight: 400; }
.wcart2__total-value--saving { color: #2d7a2d; }
.wcart2__total-row--grand {
    border-top: 1px solid #1a1a1a;
    border-bottom: none;
    margin-top: 6px;
    padding-top: 14px;
}
.wcart2__total-row--grand .wcart2__total-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
}
.wcart2__total-value--grand {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

/* ── Checkout button ── */
.wcart2__btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s;
    margin-bottom: 0;
}
.wcart2__btn-primary:hover { opacity: .82; color: #fff; }
.wcart2__btn-wide { width: auto; padding: 13px 36px; }

/* Trust badges */
.wcart2__trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}
.wcart2__trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: #bbb;
}

/* ── Empty state ── */
.wcart2__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 24px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ebebeb;
    max-width: 460px;
    margin: 0 auto;
}
.wcart2__empty-icon { margin-bottom: 22px; }
.wcart2__empty-heading {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 8px;
    letter-spacing: -.3px;
}
.wcart2__empty-sub {
    font-size: 13px;
    color: #aaa;
    margin: 0 0 28px;
}
.wcart2__empty .wcart2__btn-primary {
    width: auto;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .wcart2__layout { grid-template-columns: 1fr; }
    .wcart2__summary { position: static; }
}
@media (max-width: 580px) {
    .wcart2__wrap { padding: 24px 14px 48px; }
    .wcart2__page-title { font-size: 24px; }
    .wcart2__item { padding: 16px 14px; gap: 13px; }
    .wcart2__item-thumb { width: 68px; height: 68px; }
    .wcart2__items-header { padding: 10px 14px; }
    .wcart2__coupon-row { padding: 13px 14px; }
    .wcart2__summary { padding: 18px 16px; }
    .wcart2__total-value--grand { font-size: 17px; }
}

/* ── Product Grid: mobile image + footer overlap fixes ── */
/* Undo Elementor section/container overflow:hidden that clips cards and causes footer overlap */
@media (max-width: 600px) {
    .elementor-widget-web-product-grid,
    .elementor-widget-web-product-grid .elementor-widget-container {
        overflow: visible !important;
    }
    /* Elementor Flexbox Containers */
    .e-con:has(.web-product-grid),
    .e-con-inner:has(.web-product-grid) {
        overflow: visible !important;
    }
    /* Elementor classic sections */
    .elementor-section:has(.web-product-grid),
    .elementor-column:has(.web-product-grid) {
        overflow: visible !important;
    }
    /* Archive template wrapper — give it a proper stacking context above footer */
    .web-archive-template {
        position: relative;
        z-index: 2;
        padding-bottom: 48px;
    }
    /* Ensure footer sits in normal flow below, not overlapping */
    .web-ftr {
        position: relative;
        z-index: 1;
    }
}

/* =============================================================================
   BSICS HOME PAGE WIDGETS
   Append this entire block to the bottom of assets/css/frontend.css
   ============================================================================= */

/* ── Shared CSS Custom Properties ──────────────────────────────────────────── */
.elementor-widget-web-home-hero,
.elementor-widget-web-home-category-nav,
.elementor-widget-web-home-product-grid,
.elementor-widget-web-home-feature,
.elementor-widget-web-home-auth {
  --bsics-black:       #0F0F0F;
  --bsics-charcoal:    #2A2A2A;
  --bsics-body:        #3D3D3D;
  --bsics-grey:        #6B6B6B;
  --bsics-mid:         #9B9B9B;
  --bsics-silver:      #C8C8C8;
  --bsics-border:      #EDE9E3;
  --bsics-border-dark: #D8D3CB;
  --bsics-cream:       #F8F5EE;
  --bsics-offwhite:    #FAF8F3;
  --bsics-white:       #FFFFFF;
  --bsics-accent:      #8B6F47;
  --bsics-H:           'Cormorant Garamond', Georgia, serif;
  --bsics-B:           'DM Sans', system-ui, sans-serif;
}

/* ── Shared Section Utilities ───────────────────────────────────────────────── */
.bsics-section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.bsics-section__h {
  font-family: var(--bsics-H);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--bsics-black);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.bsics-section__h em {
  font-style: italic;
  color: var(--bsics-accent);
}
.bsics-section__b {
  font-family: var(--bsics-B);
  font-size: 15px;
  color: var(--bsics-grey);
  line-height: 1.85;
  font-weight: 300;
  margin: 0 auto;
}

/* ════════════════════════════════════════════════════════════════════════════
   1. HERO  (.bsics-hero)
   ════════════════════════════════════════════════════════════════════════════ */
.bsics-hero {
  background: var(--bsics-cream);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}
.bsics-hero__watermark {
  position: absolute;
  bottom: -80px;
  right: -30px;
  font-family: var(--bsics-H);
  font-style: italic;
  font-size: 320px;
  font-weight: 500;
  color: rgba(139, 111, 71, .06);
  letter-spacing: -8px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.bsics-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.bsics-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0.5px solid var(--bsics-border-dark);
  color: var(--bsics-charcoal);
  padding: 10px 20px;
  font-family: var(--bsics-B);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 36px;
}
.bsics-hero__pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--bsics-accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.bsics-hero__heading {
  font-family: var(--bsics-H);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 500;
  color: var(--bsics-black);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.bsics-hero__heading em {
  font-style: italic;
  color: var(--bsics-accent);
  font-weight: 500;
  display: block;
  font-size: .92em;
  margin-top: 6px;
}
.bsics-hero__sub {
  font-family: var(--bsics-B);
  font-size: 16px;
  color: var(--bsics-grey);
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 42px;
  line-height: 1.7;
}
.bsics-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.bsics-hero__btn-primary {
  background: var(--bsics-black);
  color: var(--bsics-white);
  padding: 16px 36px;
  font-family: var(--bsics-B);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background .2s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.bsics-hero__btn-primary:hover {
  background: var(--bsics-charcoal);
}
.bsics-hero__btn-outline {
  background: transparent;
  color: var(--bsics-black);
  padding: 16px 36px;
  font-family: var(--bsics-B);
  font-size: 12px;
  font-weight: 500;
  border: 0.5px solid var(--bsics-black);
  cursor: pointer;
  border-radius: 2px;
  transition: all .2s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}
.bsics-hero__btn-outline:hover {
  background: var(--bsics-black);
  color: var(--bsics-white);
}
.bsics-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.bsics-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bsics-B);
  font-size: 11px;
  font-weight: 400;
  color: var(--bsics-grey);
  letter-spacing: .5px;
}
.bsics-hero__trust-dot {
  width: 4px;
  height: 4px;
  background: var(--bsics-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   2. INFO STRIP  (.bsics-strip)
   ════════════════════════════════════════════════════════════════════════════ */
.bsics-strip {
  background: var(--bsics-white);
  border-top: 0.5px solid var(--bsics-border);
  border-bottom: 0.5px solid var(--bsics-border);
  display: flex;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.bsics-strip::-webkit-scrollbar { display: none; }
.bsics-strip__item {
  padding: 16px 28px;
  font-family: var(--bsics-B);
  font-size: 11px;
  font-weight: 400;
  color: var(--bsics-charcoal);
  white-space: nowrap;
  letter-spacing: 1.2px;
  border-right: 0.5px solid var(--bsics-border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-transform: uppercase;
  text-decoration: none;
}
.bsics-strip__item:last-child { border-right: none; }

/* ════════════════════════════════════════════════════════════════════════════
   3. PRODUCT GRID  (.bsics-pgrid)
   ════════════════════════════════════════════════════════════════════════════ */
.bsics-pgrid-section {
  padding: 100px 48px;
}
.bsics-pgrid__tag {
  font-family: var(--bsics-B);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bsics-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bsics-pgrid__tag::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--bsics-accent);
  display: block;
}
.bsics-pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.bsics-pgrid__empty {
  grid-column: 1/-1;
  text-align: center;
  font-family: var(--bsics-B);
  color: var(--bsics-grey);
  padding: 40px 0;
}
.bsics-pgrid__card {
  cursor: pointer;
  background: var(--bsics-white);
  border: 0.5px solid var(--bsics-border);
  transition: all .3s;
}
.bsics-pgrid__card:hover {
  border-color: var(--bsics-border-dark);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 15, 15, .06);
}
.bsics-pgrid__img-link { display: block; }
.bsics-pgrid__img {
  aspect-ratio: 3/4;
  background: var(--bsics-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 0.5px solid var(--bsics-border);
}
.bsics-pgrid__img-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bsics-pgrid__img-placeholder {
  text-align: center;
  padding: 40px;
  width: 100%;
}
.bsics-pgrid__img-name {
  font-family: var(--bsics-H);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: var(--bsics-border-dark);
}
.bsics-pgrid__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-family: var(--bsics-B);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  background: var(--bsics-accent);
  color: var(--bsics-white);
}
.bsics-pgrid__info {
  padding: 28px 24px 32px;
  text-align: center;
}
.bsics-pgrid__card-cat {
  font-family: var(--bsics-B);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bsics-accent);
  margin-bottom: 10px;
}
.bsics-pgrid__card-name-link { text-decoration: none; }
.bsics-pgrid__card-name {
  font-family: var(--bsics-H);
  font-size: 24px;
  font-weight: 400;
  color: var(--bsics-black);
  margin-bottom: 8px;
  letter-spacing: -.3px;
  line-height: 1.2;
}
.bsics-pgrid__card-name em { font-style: italic; }
.bsics-pgrid__card-sh {
  font-family: var(--bsics-B);
  font-size: 12px;
  color: var(--bsics-grey);
  margin-bottom: 18px;
  line-height: 1.7;
  font-weight: 300;
}
.bsics-pgrid__card-price {
  font-family: var(--bsics-H);
  font-size: 22px;
  font-weight: 500;
  color: var(--bsics-black);
  margin-bottom: 14px;
}
.bsics-pgrid__card-price del {
  font-family: var(--bsics-B);
  font-size: 14px;
  color: var(--bsics-silver);
  font-weight: 400;
  margin-right: 6px;
}
.bsics-pgrid__swatches {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 18px;
}
.bsics-pgrid__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, .15);
  display: inline-block;
}
.bsics-pgrid__card-btn {
  display: block;
  width: 100%;
  background: var(--bsics-black);
  color: var(--bsics-white);
  padding: 12px;
  font-family: var(--bsics-B);
  font-size: 11px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s;
  text-decoration: none;
  text-align: center;
}
.bsics-pgrid__card-btn:hover {
  background: var(--bsics-accent);
  color: var(--bsics-white);
}

/* ════════════════════════════════════════════════════════════════════════════
   4. BRAND QUOTE  (.bsics-bquote)
   ════════════════════════════════════════════════════════════════════════════ */
.bsics-bquote {
  background: var(--bsics-black);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bsics-bquote__bg {
  position: absolute;
  font-family: var(--bsics-H);
  font-style: italic;
  font-size: 440px;
  color: rgba(255, 255, 255, .02);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: -8px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
.bsics-bquote__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.bsics-bquote__text {
  font-family: var(--bsics-H);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  color: var(--bsics-white);
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 24px;
  font-style: italic;
}
.bsics-bquote__attr {
  font-family: var(--bsics-B);
  font-size: 11px;
  color: var(--bsics-cream);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════════════════════
   4b. WHY US GRID  (.bsics-why-section)
   ════════════════════════════════════════════════════════════════════════════ */
.bsics-why-section {
  padding: 100px 48px;
}
.bsics-why__tag,
.bsics-rev__tag {
  font-family: var(--bsics-B);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bsics-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.bsics-why__tag::before,
.bsics-rev__tag::before {
  content: '';
  width: 24px;
  height: 0.5px;
  background: var(--bsics-accent);
  display: block;
}
.bsics-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.bsics-why__card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bsics-white);
  border: 0.5px solid var(--bsics-border);
  transition: all .3s;
}
.bsics-why__card:hover {
  border-color: var(--bsics-border-dark);
  transform: translateY(-3px);
}
.bsics-why__num {
  font-family: var(--bsics-H);
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  color: var(--bsics-accent);
  margin-bottom: 10px;
  line-height: 1;
}
.bsics-why__title {
  font-family: var(--bsics-H);
  font-size: 20px;
  font-weight: 500;
  color: var(--bsics-black);
  margin-bottom: 12px;
  font-style: italic;
}
.bsics-why__desc {
  font-family: var(--bsics-B);
  font-size: 12.5px;
  color: var(--bsics-grey);
  line-height: 1.75;
  font-weight: 300;
}

/* ════════════════════════════════════════════════════════════════════════════
   5. REVIEWS  (.bsics-rev-section)
   ════════════════════════════════════════════════════════════════════════════ */
.bsics-rev-section {
  padding: 100px 48px;
}
.bsics-rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.bsics-rev__card {
  background: var(--bsics-white);
  border: 0.5px solid var(--bsics-border);
  padding: 36px;
}
.bsics-rev__stars {
  color: var(--bsics-accent);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.bsics-rev__quote {
  font-family: var(--bsics-H);
  font-size: 19px;
  font-weight: 400;
  color: var(--bsics-black);
  line-height: 1.5;
  margin-bottom: 22px;
  font-style: italic;
}
.bsics-rev__author {
  font-family: var(--bsics-B);
  font-size: 11px;
  font-weight: 500;
  color: var(--bsics-accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .bsics-hero           { padding: 72px 24px; }
  .bsics-hero__watermark { font-size: 180px; right: -20px; }
  .bsics-pgrid-section  { padding: 72px 24px; }
  .bsics-pgrid          { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bsics-bquote         { padding: 80px 24px; }
  .bsics-bquote__bg     { font-size: 200px; }
  .bsics-why-section    { padding: 72px 24px; }
  .bsics-why-grid       { grid-template-columns: repeat(2, 1fr); }
  .bsics-rev-section    { padding: 72px 24px; }
  .bsics-rev-grid       { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bsics-pgrid          { grid-template-columns: 1fr; }
  .bsics-why-grid       { grid-template-columns: 1fr; }
}
