/* WooCommerce Elementor Builder - Frontend Styles */

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

@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;
}

.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;
    gap: 8px;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    /* Solid ambient background the blobs sit on */
    background: linear-gradient(145deg, #f4f4f6 0%, #f7f5f7 40%, #f3f5f7 100%);
    isolation: isolate;
}
/* Decorative blobs — these are what backdrop-filter blurs through */
.web-accordion::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(180,180,195,0.35) 0%, rgba(180,180,195,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.web-accordion::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(190,195,210,0.30) 0%, rgba(190,195,210,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.web-accordion__item {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
    overflow: hidden;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.web-accordion__item:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
}
.web-accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 36px;
    cursor: pointer;
    user-select: none;
    list-style: none;
}
.web-accordion__header:focus { outline: none; }
.web-accordion__title {
    font-weight: 600;
    font-size: 1rem;
    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 36px 28px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
}
.web-accordion__content p:last-child { margin-bottom: 0; }

/* ---- Product Ingredients Accordion — Glassmorphism ---- */
.web-ingredients { width: 100%; }
.web-ing__heading { margin-bottom: 20px; font-size: 1.4rem; font-weight: 700; color: #1a1a1a; }
.web-ing__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #f4f5f4 0%, #f6f4f6 40%, #f4f4f6 100%);
    isolation: isolate;
}
.web-ing__list::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185,195,185,0.30) 0%, rgba(185,195,185,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.web-ing__list::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -30px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(195,185,200,0.28) 0%, rgba(195,185,200,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.web-ing__item {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.60);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.7);
    overflow: hidden;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.web-ing__item:hover {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
}
.web-ing__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    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: 400;
}
.web-ing__name {
    font-size: 1rem;
    font-weight: 400;
    color: #1a1a1a;
}
.web-ing__body { overflow: hidden; }
.web-ing__content {
    padding: 0 20px 16px 48px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
}
.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; }
.web-hdr-drawer__list li a::after {
    content: '→';
    font-size: 0.9rem;
    color: #999;
}
.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; }

/* ---- 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;
    }
}
