/* ==========================================================
   SINGLE PRODUCT PAGE
   ========================================================== */

/* חיבולת עוטפת - עוקף את ה-padding של site-main.shop-wrapper */
.product-single {
    max-width: 1300px;
    margin: 0 auto;
}

/* ---------- ביטול float/width הלגסיים של WooCommerce ---------- */
/* WC מוסיף float:left;width:48% ל-.summary ו-float:right;width:48% ל-.images */
.woocommerce div.product .product-single div.summary,
.woocommerce-page div.product .product-single div.summary,
.woocommerce #content div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary,
.product-single .summary.entry-summary {
    float: none !important;
    width: 100% !important;
    clear: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.product-single .woocommerce-product-gallery {
    float: none !important;
    width: 100% !important;
    margin: 0 !important;
}
/* ביטול ה-clearfix של WC */
.woocommerce div.product::before,
.woocommerce div.product::after { content: none !important; display: none !important; }

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}
.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.82rem;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}
.breadcrumbs-list li { margin: 0; }
.breadcrumbs-list a {
    color: var(--color-sage);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs-list a:hover { color: var(--color-forest); }
.breadcrumbs-list .separator { color: var(--color-sage-light); }

/* ---------- MAIN LAYOUT ---------- */
.product-section {
    padding: 1rem 0 4rem;
    position: relative;
    z-index: 2;
}
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* ---------- GALLERY ---------- */
.product-gallery {
    position: sticky;
    top: 120px;
    height: fit-content;
}
/* עיצוב הגלריה של WC */
.product-gallery .woocommerce-product-gallery {
    position: relative;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
}
.product-gallery .woocommerce-product-gallery__image {
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(61, 79, 57, 0.08);
}
.product-gallery .woocommerce-product-gallery__image img {
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    width: 100%;
    height: auto;
}
.product-gallery .woocommerce-product-gallery__wrapper {
    display: block;
}
.product-gallery .flex-control-thumbs {
    display: flex !important;
    gap: 0.8rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}
.product-gallery .flex-control-thumbs li {
    width: 85px !important;
    flex: 0 0 auto;
    margin: 0;
}
.product-gallery .flex-control-thumbs img {
    width: 85px;
    height: 85px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    opacity: 0.5;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    object-fit: cover;
}
.product-gallery .flex-control-thumbs img:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}
.product-gallery .flex-control-thumbs img.flex-active {
    border-color: var(--color-sage);
    opacity: 1;
    box-shadow: 0 4px 20px rgba(122, 139, 111, 0.25);
}
/* תג onsale של WC */
.product-gallery .onsale {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-deep) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(196, 139, 139, 0.3);
    z-index: 9;
    min-height: auto;
    min-width: auto;
    line-height: 1;
    margin: 0;
}

/* כפתור המועדפים */
.gallery-wishlist {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--color-forest);
    z-index: 10;
}
.gallery-wishlist:hover {
    background: var(--color-rose-light);
    color: var(--color-rose-deep);
    transform: scale(1.15);
}
.gallery-wishlist.active {
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-deep) 100%);
    color: white;
}

/* ---------- PRODUCT INFO ---------- */
.product-info { padding-top: 1rem; }
.product-info .product-category {
    font-size: 0.75rem;
    color: var(--color-sage);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}
.product-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-forest);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.product-subtitle {
    font-family: var(--font-handwritten);
    font-size: 1.4rem;
    color: var(--color-rose-deep);
    margin: 0 0 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(61, 79, 57, 0.08);
    flex-wrap: wrap;
}
.rating-stars { color: var(--color-gold); font-size: 1rem; letter-spacing: 2px; }
.rating-count { font-size: 0.85rem; color: var(--color-sage); }
.rating-count a { color: var(--color-sage); text-decoration: underline; }
.rating-count a:hover { color: var(--color-forest); }

/* מחיר */
.product-price-wrapper { margin-bottom: 1.5rem; }
.product-price-wrapper .product-price {
    font-family: var(--font-price);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-forest);
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.product-price-wrapper .product-price del {
    font-size: 1.2rem;
    color: var(--color-sage);
    opacity: 0.6;
    font-weight: 400;
    text-decoration: line-through;
    order: 2;
}
.product-price-wrapper .product-price ins {
    background: transparent;
    text-decoration: none;
    color: var(--color-rose-deep);
    font-weight: 700;
    order: 1;
}
.product-price-wrapper .product-price small {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-sage);
    opacity: 0.8;
    margin-right: 0.3rem;
}
.product-price-per-unit {
    display: block;
    font-size: 0.8rem;
    color: var(--color-sage);
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-weight: 400;
}
.product-price-per-unit .woocommerce-Price-amount { font-weight: 600; color: var(--color-forest); }

.product-short-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-forest);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}
.product-short-desc p { margin: 0 0 0.8rem; }
.product-short-desc p:last-child { margin-bottom: 0; }

/* ---------- פירמידת הריח ---------- */
.fragrance-notes {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(61, 79, 57, 0.05);
}
.fragrance-title {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-forest);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.fragrance-title svg { width: 20px; height: 20px; stroke: var(--color-gold); }
.fragrance-layers { display: flex; flex-direction: column; gap: 0.8rem; }
.fragrance-layer { display: flex; align-items: flex-start; gap: 1rem; }
.fragrance-layer-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-sage);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 60px;
    padding-top: 0.2rem;
}
.fragrance-layer-notes { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.fragrance-note {
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    background: var(--color-cream);
    color: var(--color-forest);
    transition: transform 0.2s;
}
.fragrance-note:hover { transform: translateY(-2px); }
.fragrance-layer:nth-child(1) .fragrance-note { background: var(--color-rose-light); }
.fragrance-layer:nth-child(2) .fragrance-note { background: var(--color-lavender); opacity: 0.7; }
.fragrance-layer:nth-child(3) .fragrance-note { background: var(--color-cream-dark); }

/* ---------- סטטוס מלאי ---------- */
.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}
.stock-status.in-stock { color: #4CAF50; }
.stock-status.low-stock { color: #FF9800; }
.stock-status.out-of-stock { color: var(--color-rose-deep); }
.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulseStock 2s infinite;
}
@keyframes pulseStock { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ---------- הוספה לעגלה (עיצוב על ה-form הסטנדרטי של WC) ---------- */
.tp-add-to-cart-wrap form.cart {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}
.tp-add-to-cart-wrap form.cart .quantity {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    border: 1px solid rgba(61, 79, 57, 0.12);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.tp-add-to-cart-wrap form.cart input.qty {
    width: 50px;
    height: 46px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}
.tp-add-to-cart-wrap form.cart input.qty::-webkit-outer-spin-button,
.tp-add-to-cart-wrap form.cart input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.tp-add-to-cart-wrap form.cart .single_add_to_cart_button {
    flex: 1;
    min-width: 180px;
    padding: 0.95rem 2rem;
    background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-sage-dark) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(122, 139, 111, 0.25);
    white-space: nowrap;
}
.tp-add-to-cart-wrap form.cart .single_add_to_cart_button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.tp-add-to-cart-wrap form.cart .single_add_to_cart_button:hover::before { left: 100%; }
.tp-add-to-cart-wrap form.cart .single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(122, 139, 111, 0.4);
}
.tp-add-to-cart-wrap form.cart .single_add_to_cart_button.loading { opacity: 0.7; pointer-events: none; }

/* כמויות +/- כפתורי CSS שנוסיפים ב-JS */
.tp-qty-btn {
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest);
    transition: all 0.2s;
}
.tp-qty-btn:hover { background: var(--color-cream); color: var(--color-sage-dark); }
.tp-qty-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

/* Buy Now button */
.buy-now-btn {
    width: 100%;
    padding: 0.95rem 2rem;
    background: var(--color-forest);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(61, 79, 57, 0.2);
}
.buy-now-btn:hover {
    background: var(--color-sage-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(61, 79, 57, 0.3);
}
.buy-now-btn.loading { opacity: 0.7; pointer-events: none; }

/* ---------- פעולות משניות ---------- */
.secondary-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(61, 79, 57, 0.08);
    flex-wrap: wrap;
}
.secondary-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-sage);
    cursor: pointer;
    transition: all 0.2s;
    background: none;
    border: none;
    font-family: var(--font-body);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    text-decoration: none;
}
.secondary-action:hover {
    color: var(--color-forest);
    background: rgba(122, 139, 111, 0.08);
}
.secondary-action svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ---------- Trust Badges ---------- */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.2rem 1rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.trust-badge:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(122, 139, 111, 0.15);
}
.trust-badge-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    border-radius: 50%;
    transition: all 0.3s;
}
.trust-badge:hover .trust-badge-icon { transform: scale(1.1) rotate(5deg); }
.trust-badge-icon svg { width: 24px; height: 24px; stroke: white; fill: none; stroke-width: 1.5; }
.trust-badge-text {
    font-size: 0.75rem;
    color: var(--color-forest);
    font-weight: 500;
}

/* ---------- Delivery Info Card ---------- */
.delivery-info {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    border-radius: 20px;
    padding: 1.3rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(122, 139, 111, 0.25);
}
.delivery-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.delivery-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.5; }
.delivery-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.delivery-subtitle { font-size: 0.8rem; opacity: 0.9; }

/* ==========================================================
   ACCORDION
   ========================================================== */
.product-details {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, white 0%, var(--color-cream) 100%);
    margin: 2rem -3rem 0;
    padding-right: 3rem;
    padding-left: 3rem;
}
.product-details-container { max-width: 900px; margin: 0 auto; }
.accordion-new { display: flex; flex-direction: column; gap: 1rem; }
.accordion-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 79, 57, 0.06);
    transition: all 0.3s ease;
}
.accordion-card:hover { box-shadow: 0 8px 35px rgba(61, 79, 57, 0.1); }
.accordion-card.active { box-shadow: 0 10px 40px rgba(61, 79, 57, 0.12); }

.accordion-trigger {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    transition: background 0.3s;
    text-align: right;
}
.accordion-trigger:hover { background: rgba(122, 139, 111, 0.03); }
.accordion-card.active .accordion-trigger {
    background: linear-gradient(135deg, rgba(122, 139, 111, 0.08) 0%, rgba(154, 173, 140, 0.05) 100%);
}
.accordion-icon-wrapper {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}
.accordion-card.active .accordion-icon-wrapper {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
}
.accordion-icon-wrapper svg {
    width: 24px; height: 24px;
    stroke: var(--color-sage); stroke-width: 1.5; fill: none;
    transition: stroke 0.3s;
}
.accordion-card.active .accordion-icon-wrapper svg { stroke: white; }

.accordion-label { flex: 1; text-align: right; }
.accordion-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-forest);
    margin-bottom: 0.2rem;
}
.accordion-subtitle { font-size: 0.8rem; color: var(--color-sage); }

.accordion-arrow {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}
.accordion-card.active .accordion-arrow {
    background: var(--color-sage);
    transform: rotate(180deg);
}
.accordion-arrow svg {
    width: 18px; height: 18px;
    stroke: var(--color-sage); stroke-width: 2; fill: none;
    transition: stroke 0.3s;
}
.accordion-card.active .accordion-arrow svg { stroke: white; }

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-card.active .accordion-panel { max-height: 1200px; }
.accordion-content {
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(61, 79, 57, 0.06);
}
.accordion-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-forest);
    opacity: 0.85;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.accordion-content ul, .accordion-content ol {
    list-style: none;
    margin-top: 1.5rem;
    padding: 0;
}
.accordion-content ul li {
    padding: 0.6rem 2rem 0.6rem 0;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-forest);
    opacity: 0.85;
}
.accordion-content ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; height: 20px;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    border-radius: 50%;
}
.accordion-content ul li::after {
    content: '✓';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ==========================================================
   REVIEWS SECTION (סטטי כרגע)
   ========================================================== */
.reviews-section {
    padding: 5rem 0;
    position: relative;
    z-index: 2;
    background: var(--color-cream);
    margin: 0 -3rem;
    padding-right: 3rem;
    padding-left: 3rem;
}
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-sage), transparent);
    border-radius: 3px;
}
.reviews-container { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 3rem; }
.reviews-header-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-forest);
    margin-bottom: 0.5rem;
}
.reviews-header-subtitle {
    font-family: var(--font-handwritten);
    font-size: 1.3rem;
    color: var(--color-rose-deep);
    margin: 0;
}

/* סיכום דירוגים */
.reviews-summary-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 10px 50px rgba(61, 79, 57, 0.08);
}
.summary-score {
    text-align: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    border-radius: 20px;
}
.summary-number {
    font-family: var(--font-price);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-forest);
    line-height: 1;
}
.summary-stars {
    color: var(--color-gold);
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin: 0.5rem 0;
}
.summary-total { font-size: 0.9rem; color: var(--color-sage); font-weight: 500; }
.summary-bars { padding: 0 1rem; }
.bar-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.7rem; }
.bar-row:last-child { margin-bottom: 0; }
.bar-label { font-size: 0.85rem; color: var(--color-sage); min-width: 50px; font-weight: 500; }
.bar-track {
    flex: 1;
    height: 10px;
    background: var(--color-cream);
    border-radius: 5px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    border-radius: 5px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.bar-count { font-size: 0.85rem; color: var(--color-sage); min-width: 35px; text-align: left; }
.summary-cta { text-align: center; }
.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-rose-deep) 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(212, 165, 165, 0.35);
}
.write-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(212, 165, 165, 0.5);
}
.write-review-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* כרטיסי ביקורות */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.review-card {
    background: white;
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 4px 25px rgba(61, 79, 57, 0.06);
    transition: all 0.3s ease;
    position: relative;
}
.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-cream-dark);
    line-height: 1;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(61, 79, 57, 0.1);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-cream);
}
.review-meta { flex: 1; }
.review-author { font-weight: 600; color: var(--color-forest); font-size: 1rem; margin-bottom: 0.2rem; }
.review-date { font-size: 0.8rem; color: var(--color-sage); }
.review-rating {
    color: var(--color-gold);
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.review-card-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-forest);
    opacity: 0.85;
    margin: 0 0 1rem;
    position: relative;
    z-index: 1;
}
.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    color: #4CAF50;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
}
.review-verified svg { width: 14px; height: 14px; stroke: currentColor; fill: none; }

/* Load more */
.load-more-reviews { display: flex; justify-content: center; }
.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: white;
    color: var(--color-forest);
    border: 2px solid var(--color-sage);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.load-more-btn:hover { background: var(--color-sage); color: white; }
.load-more-btn svg {
    width: 18px; height: 18px;
    stroke: currentColor; fill: none;
    transition: transform 0.3s;
}
.load-more-btn:hover svg { transform: translateY(3px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .product-container { grid-template-columns: 1fr; gap: 2rem; }
    .product-gallery { position: relative; top: 0; }
    .reviews-summary-card { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .summary-bars { order: 2; }
    .summary-cta { order: 3; }
    .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .product-title { font-size: 1.8rem; }
    .product-subtitle { font-size: 1.2rem; }
    .product-price-wrapper .product-price { font-size: 1.6rem; }
    .trust-badges { grid-template-columns: 1fr; }
    .trust-badge { flex-direction: row; text-align: right; padding: 1rem 1.2rem; }
    .trust-badge-icon { margin-bottom: 0; margin-left: 1rem; }
    .product-details, .reviews-section {
        margin-left: -1.2rem;
        margin-right: -1.2rem;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
    }
    .accordion-trigger { padding: 1.2rem 1.3rem; }
    .accordion-content { padding: 0 1.3rem 1.5rem; }
    .tp-add-to-cart-wrap form.cart .single_add_to_cart_button { min-width: 150px; }
    .reviews-summary-card { padding: 1.5rem; }
    .summary-number { font-size: 3rem; }
    .reviews-header-title { font-size: 1.6rem; }
}
