* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

body { 
    background-color: #fcfcfc; 
    color: #333; 
    direction: rtl; 
}

.main-header { 
    background-color: #fff; 
    border-bottom: 1px solid #eee; 
    padding: 15px 40px; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.03); 
}
.header-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; 
}

.logo-link { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; 
    color: inherit; 
}
.logo-img { 
    max-height: 80px; 
    width: auto; 
    object-fit: contain; 
}

.logo-text h1 { 
    font-size: 1.8rem; 
    font-weight: 900; 
    letter-spacing: 1px; 
    color: #111; 
    line-height: 1.1; 
}

.logo-text span { 
    font-size: 0.8rem; 
    color: #888; 
    display: block; 
}
.search-bar { 
    position: relative; 
    display: flex; 
    align-items: center; 
    background-color: #f7f7f7; 
    border: 1px solid #e0e0e0; 
    border-radius: 25px; 
    padding: 4px 15px; 
    width: 100%; 
    max-width: 320px; 
    transition: all 0.3s ease; 
}

.search-bar:focus-within { 
    border-color: #111; 
    background-color: #fff; 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
}

.search-bar input { 
    border: none; 
    background: transparent; 
    outline: none; 
    width: 100%; 
    padding: 8px 5px; 
    font-size: 0.95rem; 
    color: #333; 
}

.search-btn { 
    background: none; 
    border: none; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 0 5px; 
}

.search-btn svg { 
    stroke: #000000; 
    transition: transform 0.2s; 
}

.search-btn:hover svg { 
    transform: scale(1.1); 
}

.header-actions { 
    display: flex; 
    align-items: center; 
    gap: 22px; 
}

.user-icon, .cart-icon { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
    color: #000; 
    transition: opacity 0.2s ease; 
}

.user-icon:hover, .cart-icon:hover { 
    opacity: 0.7; 
}

.user-icon svg, .cart-icon svg { 
    stroke: #000000; 
}

.user-label, .cart-label { 
    font-weight: 600; 
    font-size: 0.9rem; 
    color: #111; 
}

.cart-badge-container { 
    position: relative; 
    display: flex; 
    align-items: center; 
}

.cart-badge { 
    position: absolute; 
    top: -6px; 
    right: -8px; 
    background-color: #000000; 
    color: white; 
    font-size: 0.7rem; 
    font-weight: bold; 
    width: 18px; 
    height: 18px; 
    border-radius: 50%; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}
.autocomplete-dropdown, .search-dropdown { 
    position: absolute; 
    top: calc(100% + 8px); 
    right: 0; 
    width: 100%; 
    min-width: 320px;
    background: white; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    z-index: 1000; 
    max-height: 300px; 
    overflow-y: auto;

    display: block !important; 
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-15px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s !important;
}

.search-dropdown, .autocomplete-dropdown { 
    position: absolute; 
    top: calc(100% + 8px); 
    right: 0; 
    width: 100%; 
    min-width: 320px;
    background: white; 
    border: 1px solid #eee; 
    border-radius: 8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
    z-index: 1000; 
    max-height: 300px; 
    overflow-y: auto;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(-5px);
}
.search-dropdown.show, .autocomplete-dropdown.show { 
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}
.autocomplete-item { 
    display: flex; 
    align-items: center; 
    padding: 10px 12px; 
    gap: 12px; 
    border-bottom: 1px solid #f0f0f0; 
    text-decoration: none; 
    color: inherit; 
    transition: background 0.2s; 
}
.autocomplete-item:last-child { 
    border-bottom: none; 
}
.autocomplete-item:hover { 
    background-color: #f9f9f9; 
}

.autocomplete-img { 
    width: 44px; 
    height: 44px; 
    object-fit: contain; 
    border-radius: 6px; 
    border: 1px solid #eee; 
}

.autocomplete-info { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}

.autocomplete-name { 
    font-size: 0.85rem; 
    font-weight: 600; 
    color: #111; 
}

.autocomplete-price { 
    font-size: 0.85rem; 
    color: #e91e63; 
    font-weight: bold; 
}

.no-results-msg { 
    padding: 15px; 
    text-align: center; 
    font-size: 0.85rem; 
    color: #777; 
}
.main-nav { 
    background-color: #fff; 
    border-bottom: 1px solid #e5e5e5; 
}

.main-nav ul { 
    list-style: none; 
    display: flex; 
    justify-content: center; 
    gap: 25px; 
    padding: 12px 0; 
}

.main-nav ul li a { 
    text-decoration: none; 
    color: #444; 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: color 0.2s; 
}

.main-nav ul li a:hover { 
    color: #e91e63; 
}

.main-nav ul li a.nav-ai-link {
    color: #e91e63;
    background: #fdf2f6;
    padding: 5px 12px;
    border-radius: 14px;
}

.main-nav ul li a.nav-ai-link:hover {
    background: #fce4ec;
}

.hero-banner { 
    background: linear-gradient(135deg, #f5e6e8 0%, #d5c5c8 100%); 
    height: 300px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    border-radius: 15px; 
    max-width: 1200px; 
    margin: 20px auto; 
}

.hero-content h2 { 
    font-size: 2.2rem; 
    margin-bottom: 10px; 
    color: #111; 
}

.products-section { 
    max-width: 1200px; 
    margin: 50px auto; 
    text-align: center; 
}

.section-header h3 { 
    font-size: 2rem; 
    color: #222; 
    margin-top: 5px; 
}

.title-underline { 
    width: 60px; 
    height: 3px; 
    background-color: #e91e63; 
    margin: 10px auto 30px auto; 
}

/* --- CAROUSEL SINGLE-ROW CONTAINER --- */
/* ==========================================
   CAROUSEL SINGLE-LINE HORIZONTAL FIX
   ========================================== */

/* ==========================================================================
   Carousel Outer Container & Viewing Window
   ========================================================================== */

.carousel-container {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 55px !important; /* Space for arrow navigation */
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.carousel-track-wrapper,
.carousel-view {
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 15px 5px !important; /* Prevents card borders & hover outlines from clipping */
    -webkit-overflow-scrolling: touch; /* momentum scroll on iOS */
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
}
.carousel-track-wrapper::-webkit-scrollbar,
.carousel-view::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.carousel-track-wrapper.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto; /* instant tracking while actively dragging, no lag */
    scroll-snap-type: none; /* don't fight the drag by pulling toward a snap point mid-gesture */
}

/* ==========================================================================
   Sliding Track Layout
   ========================================================================== */

.carousel-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important; /* Keeps cards in a single horizontal row */
    gap: 16px !important;
    width: 100% !important; 
    margin: 0 !important;
    padding: 0 !important;
    align-items: flex-start !important;
    transition: transform 0.3s ease-in-out; /* Smooth JS scrolling */
}

/* ==========================================================================
   Product Card Sizing inside Carousel
   ========================================================================== */

.carousel-track .product-card {
    flex: 0 0 calc((100% - 48px) / 4) !important;
    width: calc((100% - 48px) / 4) !important;
    max-width: calc((100% - 48px) / 4) !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    scroll-snap-align: start;
}

/* ==========================================================================
   Navigation Arrow Buttons
   ========================================================================== */

.carousel-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    background-color: #ffffff !important;
    border: 2px solid #e91e63 !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 100 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.15) !important;
    transition: all 0.2s ease !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.2s ease !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.carousel-arrow.arrow-hidden,
.results-arrow.arrow-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important; /* Prevents clicking while invisible */
}

.prev-arrow { 
    right: 0 !important; 
}

.next-arrow { 
    left: 0 !important; 
}

.carousel-arrow svg { 
    stroke: #e91e63 !important; 
}

.carousel-arrow:hover {
    background-color: #e91e63 !important;
}

.carousel-arrow:hover svg {
    stroke: #ffffff !important;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet View */
@media (max-width: 1024px) {
    .carousel-track .product-card {
        flex: 0 0 calc((100% - 32px) / 3) !important;
        width: calc((100% - 32px) / 3) !important;
        max-width: calc((100% - 32px) / 3) !important;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .carousel-container { 
        padding: 0 8px !important; 
    }

    .carousel-track .product-card {
        flex: 0 0 calc((100% - 16px) / 2) !important;
        width: calc((100% - 16px) / 2) !important;
        max-width: calc((100% - 16px) / 2) !important;
    }

    /* Arrows float over the edge instead of reserving a big gutter - swipe is now the primary gesture */
    .carousel-arrow {
        width: 34px !important;
        height: 34px !important;
    }

    .prev-arrow {
        right: -6px !important;
    }

    .next-arrow {
        left: -6px !important;
    }
}

/* ==========================================================================
   Separate Grid Style (For main catalog/all products page, NOT carousel)
   ========================================================================== */

#all-products-grid,
#search-results-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: flex-start;
    padding: 12px 6px !important;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    #all-products-grid,
    #search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   Shop layout: product grid + filter sidebar (all-products.html, search.html)
   Sidebar renders on the RIGHT: in dir="rtl" flex, the first DOM child sits
   on the right, so <aside> before the grid in the HTML gives a right sidebar.
   ========================================================================== */
.shop-layout {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.shop-layout .products-grid,
.shop-layout #all-products-grid,
.shop-layout #search-results-grid {
    flex: 1;
    min-width: 0; /* prevents flex children from overflowing their container */
}

.products-filter-sidebar {
    flex: 0 0 240px;
    width: 240px;
    background: #fafafa;
    border: 1.5px solid #eee;
    border-radius: 16px;
    padding: 20px;
    position: sticky;
    top: 115px;
    max-height: calc(100vh - 135px);
    overflow-y: auto;
}

.filter-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #111;
}

.filter-sidebar-title {
    font-weight: 800;
    font-size: 1rem;
    color: #111;
}

.filter-clear-btn {
    background: none;
    border: none;
    color: #e91e63;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    padding: 4px;
    font-family: inherit;
}

.filter-clear-btn:hover {
    text-decoration: underline;
}

.filter-section + .filter-section {
    margin-top: 22px;
}

.filter-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.filter-option-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.filter-option {
    display: block;
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 10px 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}

.filter-option:hover {
    background: #fff0f5;
    color: #e91e63;
}

.filter-option.active {
    background: #e91e63;
    color: #fff;
    font-weight: 700;
}

/* Mobile toggle button that opens/closes the sidebar - hidden on desktop */
.filter-mobile-toggle {
    display: none;
}

@media (max-width: 900px) {
    .shop-layout {
        flex-direction: column;
        gap: 12px;
    }

    .filter-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: #fff;
        border: 1.5px solid #e91e63;
        color: #e91e63;
        border-radius: 12px;
        padding: 13px 18px;
        font-weight: 700;
        font-size: 0.92rem;
        cursor: pointer;
        font-family: inherit;
    }

    .products-filter-sidebar {
        position: static;
        width: 100%;
        flex: 1 1 auto;
        max-height: none;
        display: none;
    }

    .products-filter-sidebar.mobile-open {
        display: block;
    }
}

/* ==========================================================================
   "Added to cart" checkmark feedback (any add-to-cart button)
   ========================================================================== */
.added-feedback-active {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
    pointer-events: none;
}
.added-feedback-active svg {
    stroke: #ffffff !important;
}
.added-feedback-active span {
    color: #ffffff !important;
}

/* --- 2. PRODUCT CARD BORDER & HOVER FIXES --- */
.product-card {
    box-sizing: border-box;
    border: 2px solid #e91e63; /* Pink Outer Outline */
    border-radius: 16px;
    padding: 12px;
    background: #ffffff;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Smooth Hover Lift without border clipping */
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(233, 30, 99, 0.18);
}
.product-card { flex: 0 0 250px; background-color: #fff; border: 1px solid #eaeaea; border-radius: 12px; position: relative; overflow: hidden; transition: box-shadow 0.3s; }
.product-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.08); }

.wishlist-btn { position: absolute; top: 12px; left: 12px; background: #fff; border: 1px solid #ddd; border-radius: 50%; width: 34px; height: 34px; cursor: pointer; z-index: 5; display: flex; justify-content: center; align-items: center; transition: all 0.2s ease; }
.wishlist-btn svg { stroke: #000000; }
.wishlist-btn:hover { border-color: #000; background: #f5f5f5; }

.product-image-container {
    width: 100%;
    height: 180px; 
    border: 2px solid #e91e63; /* Pink Image Outline */
    border-radius: 12px;
    overflow: hidden;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}
/* 🔒 בכוונה לא מגדילים את התמונה בהעברת עכבר - רק הכרטיסייה עצמה מתרוממת קלות */

.product-hover-actions { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.85); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; opacity: 0; transition: opacity 0.3s ease; z-index: 4; }
.product-card:hover .product-hover-actions { opacity: 1; }

.action-btn { background-color: transparent; border: 1px solid #000000; border-radius: 20px; padding: 8px 15px; font-size: 0.88rem; color: #000000; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s ease; text-decoration: none; width: 82%; justify-content: center; font-weight: 600; }
.action-btn svg { stroke: #000000; transition: stroke 0.2s ease; }
.action-btn:hover { background-color: #000000; color: #ffffff; }
.action-btn:hover svg { stroke: #ffffff; }

.product-info { text-align: center; }
.brand-tag { font-size: 0.75rem; color: #888888; display: block; margin-bottom: 2px; }
.product-info h4 { font-size: 0.95rem; margin: 2px 0 4px 0; color: #111111; font-weight: 700; line-height: 1.3; }
.price { font-size: 1.1rem; font-weight: 800; color: #e91e63; }

.all-products-page { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; margin-bottom: 60px; }

.breadcrumbs { max-width: 1200px; margin: 15px auto; font-size: 0.85rem; color: #777; padding: 0 20px; }
.breadcrumbs a { color: inherit; text-decoration: none; }
.product-page-container { max-width: 1200px; margin: 20px auto; display: flex; gap: 40px; background: #fff; padding: 30px; border-radius: 12px; border: 1px solid #eee; align-items: flex-start; }
.product-gallery { flex: 1; display: flex; flex-direction: column; gap: 15px; }
.main-image-wrapper { border: 1px solid #f0f0f0; border-radius: 10px; overflow: hidden; padding: 20px; background: #fff; display: flex; justify-content: center; height: 400px; }
.main-image-wrapper img { width: 100%; height: 100%; object-fit: contain; }

.product-details-content { flex: 1.2; }
.brand-tag#page-brand { font-size: 1.1rem; color: #888; font-weight: bold; margin-bottom: 5px; display: block; }
.product-title { font-size: 1.8rem; margin-bottom: 8px; color: #222; }
.product-subtitle { color: #555; margin-bottom: 15px; line-height: 1.5; font-size: 1rem; }
.price-box { margin-bottom: 25px; }
.current-price-large { font-size: 2.2rem; font-weight: bold; color: #e91e63; }
.purchase-actions-row { display: flex; gap: 15px; align-items: center; margin-bottom: 30px; }
.quantity-selector { display: flex; border: 1px solid #ccc; border-radius: 8px; overflow: hidden; }
.quantity-selector button { width: 35px; height: 45px; background: #f5f5f5; border: none; cursor: pointer; font-size: 1.2rem; }
.quantity-selector input { width: 45px; text-align: center; border: none; font-weight: bold; font-size: 1.1rem; }
.add-to-cart-big-btn { background-color: #000; color: white; border: none; padding: 0 35px; height: 45px; border-radius: 25px; font-weight: bold; font-size: 1.1rem; cursor: pointer; transition: background 0.2s; }
.add-to-cart-big-btn:hover { background-color: #e91e63; }
.ask-ai-product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    color: #e91e63;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid #f5c1d3;
    border-radius: 20px;
    padding: 9px 16px;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.ask-ai-product-link:hover {
    background: #fdf2f6;
    border-color: #e91e63;
}
.shop-benefits-box { background-color: #fafafa; border: 1px solid #f0f0f0; padding: 20px; border-radius: 10px; margin-bottom: 30px; }
.shop-benefits-box h4 { margin-bottom: 10px; font-size: 1rem; }
.shop-benefits-box ul { list-style: none; font-size: 0.9rem; color: #555; line-height: 1.8; }

.product-accordion { border-top: 1px solid #eee; margin-top: 20px; }
.accordion-btn { background-color: transparent; color: #222; cursor: pointer; padding: 18px 0; width: 100%; text-align: right; border: none; border-bottom: 1px solid #eee; outline: none; font-size: 1.1rem; font-weight: bold; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.accordion-btn:hover, .accordion-btn.active { color: #e91e63; }
.accordion-content { 
    background-color: white; 
    color: #555; 
    line-height: 1.6; 
    font-size: 0.95rem;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    opacity: 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}

.accordion-content.open {
    max-height: 1000px; 
    padding: 15px 0;
    opacity: 1;
}

.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar { position: fixed; top: 0; right: -100%; width: 100%; max-width: 380px; height: 100%; background: #fff; box-shadow: -5px 0 15px rgba(0,0,0,0.1); z-index: 2000; display: flex; flex-direction: column; transition: right 0.3s ease; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; border-bottom: 1px solid #eee; background: #fafafa; }
.close-cart-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 4px; }
.close-cart-btn svg { stroke: #000000; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.cart-item { display: flex; align-items: center; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0; }
.cart-item-img { width: 70px; height: 70px; object-fit: contain; border-radius: 8px; border: 1px solid #eee; }
.cart-item-info { flex: 1; }
.cart-item-title { font-size: 0.9rem; margin-bottom: 5px; color: #333; }
.cart-item-price { color: #e91e63; font-weight: bold; font-size: 0.95rem; margin-bottom: 8px; display: block; }
.cart-qty-controls { display: flex; border: 1px solid #ccc; border-radius: 4px; overflow: hidden; }
.cart-qty-controls button { width: 25px; height: 25px; background: #f9f9f9; border: none; cursor: pointer; }
.cart-qty-controls input { width: 30px; text-align: center; border: none; font-size: 0.9rem; }
.remove-item-btn { background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 4px; transition: opacity 0.2s; }
.remove-item-btn svg { stroke: #000000; }
.remove-item-btn:hover { opacity: 0.6; }

/* ==========================================
   חלון התחברות והרשמה (Auth Modal) - מעודכן
========================================== */

.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.auth-modal.show,
.auth-modal.active {
    display: flex;
    opacity: 1;
}

.auth-modal-content { 
    background-color: #fff; 
    padding: 35px 30px; 
    border-radius: 12px; 
    width: 90%; 
    max-width: 400px; 
    position: relative; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); 
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.auth-modal.show .auth-modal-content,
.auth-modal.active .auth-modal-content {
    transform: translateY(0) scale(1) !important;
}

.close-auth { 
    position: absolute; 
    top: 15px; 
    left: 15px; 
    font-size: 24px; 
    cursor: pointer; 
    color: #888; 
    transition: color 0.2s ease, transform 0.2s ease; 
}
.close-auth:hover { 
    color: #333; 
    transform: rotate(90deg);
}

.auth-tabs { 
    display: flex; 
    margin-bottom: 25px; 
    border-bottom: 1px solid #eee; 
    position: relative; 
}

.auth-tab { 
    flex: 1; 
    padding: 12px; 
    border: none; 
    background: none; 
    font-size: 1.05rem; 
    cursor: pointer; 
    color: #888; 
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-tab.active { 
    color: #e91e63; 
    font-weight: bold; 
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #e91e63;
    animation: slideInTab 0.3s ease forwards;
}

@keyframes slideInTab {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.auth-form { 
    display: none; 
    flex-direction: column; 
    gap: 12px; 
}

.auth-form.active { 
    display: flex; 
    animation: formFadeIn 0.35s ease forwards;
}

@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-form input { 
    padding: 12px; 
    border: 1px solid #ccc; 
    border-radius: 6px; 
    font-size: 0.98rem; 
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.auth-submit-btn { 
    background-color: #333; 
    color: white; 
    border: none; 
    padding: 12px; 
    border-radius: 6px; 
    font-size: 1.05rem; 
    font-weight: 600;
    cursor: pointer; 
    transition: background-color 0.3s ease, transform 0.1s ease; 
    margin-top: 5px;
}

.auth-submit-btn:hover { 
    background-color: #e91e63; 
}

.auth-submit-btn:active {
    transform: scale(0.98);
}

.auth-error { 
    color: #d9534f; 
    font-size: 0.9rem; 
    text-align: center; 
    margin-top: 10px; 
    min-height: 20px; 
}

.top-announcement-bar {
    background-color: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.announcement-track {
    display: inline-block;
    padding-right: 100%;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.announcement-track:hover {
    animation-play-state: paused;
}

.product-volume-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f9f9f9;
    padding: 8px 18px;
    border-radius: 25px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}
.product-volume-box:hover {
    background-color: #fff;
    border-color: #e91e63;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.1);
}
.product-volume-box .volume-label { 
    color: #666; 
    font-size: 0.95rem; 
}

.product-volume-box .volume-value { 
    color: #e91e63; 
    font-weight: 700; 
    font-size: 1.05rem; 
}

/* אזור הוראות ותדירות שימוש */
.usage-info-wrapper {
    background: #fff;
    border-right: 3px solid #e91e63;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 0 0 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.usage-frequency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff0f4;
    padding: 6px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.meta-badge-label { color: #e91e63; font-weight: 600; font-size: 0.9rem; }
.meta-badge-val { color: #333; font-size: 0.95rem; font-weight: 500; }

.usage-instructions-title {
    display: block;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    font-size: 1.05rem;
}
#page-usage {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}
.product-meta-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.meta-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff0f4;
    padding: 8px 16px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.meta-badge-item:hover {
    background: #fff;
    border-color: #e91e63;
}

.meta-badge-icon {
    color: #e91e63;
    display: flex;
    align-items: center;
}

.meta-badge-label { 
    color: #e91e63; 
    font-weight: 600; 
    font-size: 0.9rem; 
}

.meta-badge-val { 
    color: #333; 
    font-size: 0.95rem; 
    font-weight: 500; 
}

/* עידון קל של הטקסט בתוך האקורדיון (בשביל הוראות השימוש) */
.accordion-inner #page-usage {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Password Validation Checklist UI */
.password-rules-container {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    text-align: right;
}

.password-rules-container .rule {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0;
    transition: color 0.2s ease;
}

.password-rules-container .rule.invalid {
    color: #d9534f;
}

.password-rules-container .rule.valid {
    color: #2e7d32;
    font-weight: 600;
}

/* Email Verification Notice Text under Create Account */
.verification-notice {
    font-size: 0.85rem;
    color: #2e7d32;
    background-color: #edf7ed;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    padding: 10px 12px;
    margin-top: 14px;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
}

/* Validation Box Smooth Fade-in Style */
.field-rules-container {
    background-color: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 0 12px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 0.82rem;
    text-align: right;
    transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.field-rules-container.visible {
    max-height: 120px;
    opacity: 1;
    padding: 8px 12px;
    margin-bottom: 12px;
}

.gender-select-group {
    margin-bottom: 14px;
}

.gender-select-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 6px;
}

.gender-options {
    display: flex;
    gap: 8px;
}

.gender-option {
    flex: 1;
    position: relative;
}

.gender-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.gender-option span {
    display: block;
    text-align: center;
    padding: 10px 8px;
    border: 1.5px solid #e0e0e0;
    border-radius: 24px;
    font-size: 0.88rem;
    color: #666;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gender-option input:checked + span {
    border-color: #e91e63;
    background: #fdf2f6;
    color: #e91e63;
    font-weight: 700;
}

.gender-option:hover span {
    border-color: #e91e63;
}

.field-rules-container .rule {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 0;
    transition: color 0.2s ease;
}

.field-rules-container .rule.invalid {
    color: #d9534f;
}

.field-rules-container .rule.valid {
    color: #2e7d32;
    font-weight: 600;
}

/* ==========================================
   Custom Modals & Slide-Up Animations
========================================== */

/* Overlay רקע כהה */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* כרטיס המודאל - Slide/Fade In מלמטה */
.custom-modal-card {
    background: #ffffff;
    width: 90%;
    max-width: 440px;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(40px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-modal-overlay.active .custom-modal-card {
    transform: translateY(0) scale(1);
}

/* אלמנטים פנימיים במודאל */
.custom-modal-icon {
    width: 60px;
    height: 60px;
    background: #fdf2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.custom-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.custom-modal-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.custom-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-cancel-btn {
    flex: 1;
    background: #f1f1f1;
    color: #444;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-cancel-btn:hover {
    background: #e5e5e5;
}

.modal-delete-btn {
    flex: 1.2;
    background: #d9534f;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, width 0.3s;
    overflow: hidden;
}

.modal-delete-btn:hover {
    background: #c9302c;
}

/* טקסט, ספינר ו-Checkmark בתוך הכפתור */
.btn-text, .btn-spinner, .btn-success-check {
    transition: all 0.25s ease;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btnSpin 0.7s linear infinite;
}

.btn-success-check {
    display: none;
    font-size: 1.2rem;
    font-weight: bold;
}


@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* מצבי טעינה והצלחה לכפתור */
.modal-delete-btn.loading .btn-text { display: none; }
.modal-delete-btn.loading .btn-spinner { display: inline-block; }

.modal-delete-btn.success {
    background: #28a745 !important;
}
.modal-delete-btn.success .btn-text { display: none; }
.modal-delete-btn.success .btn-spinner { display: none; }
.modal-delete-btn.success .btn-success-check { display: inline-block; }


@keyframes marquee-scroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* ==========================================
   Site Footer Styling (Advanced)
========================================== */
.site-footer {
    background-color: #0d0d0d;
    color: #ffffff;
    padding: 60px 20px 25px 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* טקסט רקע ענק ברקע ה-Footer */
.footer-background-text {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    letter-spacing: 6px;
    pointer-events: none;
    user-select: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding-bottom: 45px;
    border-bottom: 1px solid #222222;
    position: relative;
    z-index: 1;
}

/* עמודת אודות ולוגו */
.footer-about {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text h2 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.1;
    color: #ffffff;
}

.footer-logo-text span {
    font-size: 0.75rem;
    color: #888888;
    display: block;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin-top: 5px;
}

/* רשתות חברתיות */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
    color: #ffffff;
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

/* כותרות עמודות */
.footer-col h3 {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: #ffffff;
    position: relative;
    padding-bottom: 8px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: #e91e63;
}

/* קישורים ופרטי התקשרות */
.footer-links, .footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact-info li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #bbbbbb;
    line-height: 1.5;
}

.footer-links a, .footer-contact-info a {
    color: #bbbbbb;
    text-decoration: none;
    transition: color 0.2s ease, padding-right 0.2s ease;
    display: inline-block;
}

.footer-links a:hover, .footer-contact-info a:hover {
    color: #e91e63;
    padding-right: 4px;
}

/* תיבת אופן תשלום והזמנה */
.footer-notice-box {
    background-color: #161616;
    border-right: 3px solid #e91e63;
    padding: 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #cccccc;
    line-height: 1.6;
}

.footer-notice-box p {
    margin-bottom: 8px;
}

.footer-notice-box p:last-child {
    margin-bottom: 0;
}

/* חלק תחתון - זכויות יוצרים ותג תשלום */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 22px;
    position: relative;
    z-index: 1;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #777777;
}

.payment-badge {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #e91e63;
    font-weight: 600;
}

/* התאמה למסכים קטנים (מובייל) */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-background-text {
        font-size: 3.5rem;
    }
}
/* ==========================================
   Wishlist Sidebar (Left Side)
========================================== */
.wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wishlist-overlay.open {
    opacity: 1;
    visibility: visible;
}

.wishlist-sidebar {
    position: fixed;
    top: 0;
    left: -100%; /* נכנס משמאל */
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: #fff;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
}

.wishlist-sidebar.open {
    left: 0;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
}

.wishlist-header h3 {
    font-size: 1.1rem;
    color: #111;
    font-weight: 700;
}

.close-wishlist-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: #555;
    transition: color 0.2s;
}

.close-wishlist-btn:hover {
    color: #e91e63;
}

.wishlist-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.wishlist-item-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
}

.wishlist-item-info {
    flex: 1;
}

.wishlist-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.wishlist-item-price {
    color: #e91e63;
    font-weight: bold;
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

.move-to-cart-btn {
    background-color: #111;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.78rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.move-to-cart-btn:hover {
    background-color: #e91e63;
}

.remove-wishlist-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.remove-wishlist-btn:hover {
    color: #d9534f;
}

/* עיצוב כפתור הלב בכרטיס מוצר כשהוא מסומן */
.wishlist-btn.active svg {
    fill: #e91e63;
    stroke: #e91e63;
}
.wishlist-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: #111;
    transition: color 0.2s ease;
}

/* --- עיצוב אייקון משאלות בסרגל העליון --- */
.wishlist-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 4px;
    color: #111;
    transition: color 0.2s ease;
}

.wishlist-icon:hover {
    color: #e91e63;
}

.wishlist-icon:hover svg {
    stroke: #e91e63;
}

.ai-header-icon,
.booking-header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: #111;
    transition: color 0.2s ease;
}

.ai-header-icon:hover,
.booking-header-icon:hover {
    color: #e91e63;
}

.ai-header-icon:hover svg,
.booking-header-icon:hover svg {
    stroke: #e91e63;
}

.wishlist-badge-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-label {
    font-size: 0.75rem;
    color: #555;
}

/* --- אנימציית קפיצה ומילוי הלב בכרטיס המוצר --- */
@keyframes heartPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.35);
    }
    100% {
        transform: scale(1);
    }
}

.wishlist-btn.active {
    animation: heartPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wishlist-btn.active svg {
    fill: #e91e63 !important;
    stroke: #e91e63 !important;
}
.move-to-cart-btn {
    background-color: transparent;
    color: #111;
    border: 1px solid #111;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 8px;
}

/* במצב רגיל האייקון הוא שקוף עם מסגרת */
.move-to-cart-btn svg {
    fill: transparent;
    stroke: currentColor;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

/* במצב ריחוף (Hover) הכפתור מתמלא בצבע שחור והטקסט+אייקון הופכים ללבנים */
.move-to-cart-btn:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}

/* --- עדכון לאייקון רשימת המשאלות בסרגל העליון (Outline שמתמלא בוורוד ב-Hover) --- */
.wishlist-icon svg {
    fill: transparent;
    stroke: #000;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.wishlist-icon:hover svg {
    fill: #e91e63;
    stroke: #e91e63;
}
/* --- עיצוב עמוד Checkout --- */
.checkout-body { background-color: #fcfcfc; }
.checkout-header { text-align: center; padding: 20px; background: #fff; border-bottom: 1px solid #eee; display: flex; justify-content: center; }
.checkout-container { max-width: 1000px; margin: 40px auto; padding: 0 20px; }
.checkout-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #111; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary-section { order: -1; /* בסלולר הסיכום יופיע למעלה */ }
}

.checkout-form-section, .checkout-summary-section { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #eaeaea; }
.checkout-form-section h3, .checkout-summary-section h3 { margin-bottom: 25px; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; }

.checkout-notice { display: flex; gap: 15px; background: #fdf2f5; border: 1px solid #f8d7e3; padding: 15px; border-radius: 6px; margin-bottom: 25px; color: #d81b60; align-items: flex-start; }
.checkout-notice p { margin: 5px 0 0 0; font-size: 0.85rem; color: #555; }

.submit-order-btn { width: 100%; background: #111; color: #fff; border: none; padding: 15px; font-size: 1.1rem; border-radius: 4px; cursor: pointer; transition: 0.3s ease; }
.submit-order-btn:hover { background: #e91e63; }

.checkout-items { max-height: 400px; overflow-y: auto; margin-bottom: 20px; }
.checkout-item { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.checkout-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.checkout-item-details { flex-grow: 1; }
.checkout-item-title { font-weight: 500; font-size: 0.95rem; }
.checkout-item-price-qty { font-size: 0.85rem; color: #777; margin-top: 5px; }
.checkout-total-row { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 700; border-top: 2px solid #111; padding-top: 15px; }
/* --- עיצוב כפתור התשלום בעגלה (מעוגל, מרווח וממורכז) --- */
.checkout-btn {
    display: block;
    width: 90%; /* משאיר קצת מרווח מהקירות */
    margin: 20px auto; /* ממרכז אותו באמצע העמוד ומרחיק מהטקסט של הסה"כ */
    background-color: #111; /* שחור אלגנטי */
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px; /* עושה אותו עגול! */
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* צללית עדינה מאוד */
}

.checkout-btn:hover {
    background-color: #e91e63; /* הופך לוורוד כשעוברים עליו */
    transform: translateY(-2px); /* קפיצה קטנה למעלה */
    box-shadow: 0 6px 15px rgba(233, 30, 99, 0.3);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-order-icon {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #000000;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.track-order-icon:hover {
    opacity: 0.7;
}
/* --- Quick View Modal Styles --- */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* This rule makes it appear smoothly */
.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Animated Modal Box */
.modal-container {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    width: 90%;
    max-width: 680px;
    position: relative;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quick-view-modal.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    left: 18px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000000;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: #e91e63;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 640px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
}

/* --- PRODUCT CARD STYLING & FIXES --- */
.product-card, .product-card * {
    box-sizing: border-box; /* Prevents border changes from shaking/janking the layout */
}

.product-card {
    border: 2px solid #e91e63; /* Iconic Pink Outer Outline */
    border-radius: 16px;
    padding: 12px;
    background: #ffffff;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Smooth, Non-Janky Hover Lift */
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(233, 30, 99, 0.18);
}

/* FIX: Image Container (Eliminates the big empty gap) */
.product-image-container {
    width: 100%;
    height: 180px; /* Compact height */
    border: 2px solid #e91e63; /* Iconic Pink Image Outline */
    border-radius: 12px;
    overflow: hidden;
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* Reduced gap between image and text */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fits product cleanly without giant gray spaces */
    padding: 6px;
}
/* 🔒 בכוונה לא מגדילים את התמונה בהעברת עכבר */

/* Product Info Area */
.product-info {
    text-align: center;
}

.brand-tag {
    font-size: 0.75rem;
    color: #888888;
    display: block;
    margin-bottom: 2px;
}

.product-info h4 {
    font-size: 0.95rem;
    margin: 2px 0 4px 0;
    color: #111111;
    font-weight: 700;
    line-height: 1.3;
}

.price-container {
    margin-top: 2px;
}

.price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #e91e63;
}

/* Wishlist Button Positioning */
.wishlist-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    right: auto;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e91e63;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: #fce4ec;
}

/* --- ACCORDION EXPANDABLE CONTENT AREA --- */
/* Update this selector in style.css */
.card-expand-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    /* NEW, SLOWER TRANSITION VALUES: */
    transition: max-height 0.7s ease, opacity 0.5s ease, margin-top 0.5s ease, padding-top 0.5s ease;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
}

.product-card.expanded {
    box-shadow: 0 12px 28px rgba(233, 30, 99, 0.22);
}

.product-card.expanded .card-expand-content {
    max-height: 240px;
    opacity: 1;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #fce4ec;
}

.expand-desc {
    font-size: 0.82rem;
    color: #555555;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
}

.expand-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- ACTION BUTTON DESIGN FIXES --- */

/* Add to Cart Button (Solid Pink) */
.btn-expand-add {
    width: 100%;
    background-color: #e91e63;
    color: #ffffff;
    border: 1px solid #e91e63;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 8px rgba(233, 30, 99, 0.25);
}

.btn-expand-add:hover {
    background-color: #d81b60;
    border-color: #d81b60;
    transform: translateY(-1px);
}

.btn-expand-add svg {
    stroke: #ffffff;
}

/* Product Details Link Button (Outline Style) */
.btn-expand-link {
    width: 100%;
    background-color: transparent;
    color: #111111;
    border: 1px solid #dddddd;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-expand-link:hover {
    border-color: #e91e63;
    color: #e91e63;
    background-color: #fff5f8;
}

.btn-expand-link svg {
    stroke: currentColor;
}
/* ==========================================
   GLOBAL RESPONSIVE & DYNAMIC LAYOUTS
   ========================================== */

/* Ensure images and media never overflow their containers */
img, svg, video {
    max-width: 100%;
    height: auto;
}

/* --- 1. TABLET & SMALL LAPTOPS (Max-width: 1024px) --- */
@media (max-width: 1024px) {
    .header-container {
        gap: 16px;
        padding: 10px 16px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    #all-products-grid,
    #search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
}

/* --- 2. TABLET PORTRAIT (Max-width: 768px) --- */
@media (max-width: 768px) {
    /* Product Detail Page: stack image above info instead of squeezing both columns side by side */
    .product-page-container {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
        margin: 12px auto;
    }

    .main-image-wrapper {
        height: 280px;
    }

    .purchase-actions-row {
        flex-wrap: wrap;
    }

    .add-to-cart-big-btn {
        flex: 1;
        min-width: 160px;
    }

    /* Top Announcement Bar */
    .top-announcement-bar {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    /* Main Header Layout */
    .main-header {
        padding: 10px 16px;
    }

    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .logo {
        justify-content: center;
    }

    .logo-img {
        max-height: 46px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .logo-text span {
        font-size: 0.7rem;
    }

    .search-bar {
        width: 100%;
        order: 3; /* Places search bar below actions on mobile */
    }

    .header-actions {
        justify-content: space-around;
        width: 100%;
        border-top: 1px solid #f0f0f0;
        padding-top: 10px;
        gap: 8px;
    }

    .user-label, .cart-label {
        font-size: 0.78rem;
    }

    /* Navigation Bar */
    .main-nav ul {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px 16px;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav ul::-webkit-scrollbar {
        display: none; /* Hide scrollbar for clean app-like menu */
    }

    /* Hero Banner */
    .hero-banner {
        padding: 40px 16px;
        text-align: center;
    }

    /* Product Grid */
    #all-products-grid,
    #search-results-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 products per row on mobile */
        gap: 12px;
        padding: 8px 4px !important;
    }

    /* Product Card Mobile Tweaks */
    .product-card {
        padding: 10px;
    }

    .product-image-container {
        height: 150px;
    }

    .product-info h4 {
        font-size: 0.85rem;
    }

    .price {
        font-size: 1rem;
    }

    /* Cart & Wishlist Sidebars */
    .cart-sidebar,
    .wishlist-sidebar {
        width: 100%; /* Full screen overlay on mobile */
        max-width: 100%;
    }

    /* Expanded Card Mobile Layout */
    .product-card.expanded .card-expand-content {
        max-height: 300px;
    }

    .expand-actions {
        gap: 6px;
    }

    .btn-expand-add,
    .btn-expand-link {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    /* Footer Single Column Stack */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* --- 3. SMALL MOBILE SCREENS (Max-width: 480px) --- */
@media (max-width: 480px) {
    #all-products-grid,
    #search-results-grid {
        grid-template-columns: repeat(2, 1fr); /* Keeps 2 per row with tighter spacing */
        gap: 8px;
    }

    .product-image-container {
        height: 130px;
    }

    .brand-tag {
        font-size: 0.7rem;
    }

    .product-info h4 {
        font-size: 0.8rem;
        height: 2.4em; /* Limits title height to 2 lines for uniform card alignment */
        overflow: hidden;
    }

    .wishlist-btn {
        width: 28px;
        height: 28px;
        top: 10px;
        left: 10px;
        right: auto;
    }

    .carousel-view {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .carousel-track .product-card {
        scroll-snap-align: start;
        min-width: 75vw; /* Each card takes 75% of screen width in horizontal scroll */
    }
}
/* ==========================================
   LUXURY LAYOUT & NEW HOVER EFFECTS
   ========================================== */

/* --- 1. HERO SECTION --- */
.hero-section {
    background-color: #fcfaf8; /* Soft, high-end nude tone */
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid #f0ebe1;
}
.hero-content h2 {
    font-size: 3rem;
    color: #111;
    margin-bottom: 15px;
    font-weight: 300; /* Thin, elegant font weight */
}
.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 35px;
}
.hero-btn {
    background-color: #111;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.hero-btn:hover {
    background-color: #e91e63; /* Pink on hover */
}

/* --- 2. CATEGORIES SECTION --- */
.categories-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.categories-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}
.category-item {
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
}
.category-item:hover {
    transform: translateY(-5px);
    color: #e91e63;
}
.cat-circle {
    width: 100px;
    height: 100px;
    background-color: #fcfaf8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

/* --- 3. TRUST BADGES --- */
.trust-badges {
    display: flex;
    justify-content: space-around;
    background-color: #fcfaf8;
    padding: 50px 20px;
    margin-top: 50px;
    border-top: 1px solid #f0ebe1;
}
.badge { text-align: center; }
.badge span { font-size: 2.5rem; display: block; margin-bottom: 10px; }
.badge h4 { font-size: 1rem; color: #444; font-weight: 600; }

/* --- 4. THE MAGIC HOVER CARD EFFECT --- */
.product-card {
    border: 2px solid transparent !important; /* Invisible border initially */
    transition: all 0.4s ease !important;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03) !important;
}

.product-image-container {
    border: 2px solid transparent !important; /* Invisible image border */
    transition: all 0.4s ease !important;
}

/* The card expands content automatically on hover (Desktop) */
.product-card .card-expand-content {
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 1px solid transparent !important;
}

/* WHEN HOVERED */
.product-card:hover {
    border-color: #e91e63 !important; /* Outline animates in */
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.1) !important;
}
.product-card:hover .product-image-container {
    border-color: #e91e63 !important; /* Image Outline animates in */
}
.product-card:hover .card-expand-content {
    max-height: 250px !important; /* Content slides down */
    opacity: 1 !important;
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid #fce4ec !important;
}

/* Mobile Fallback: On phones, tap acts as hover */
@media (max-width: 768px) {
    .hero-content h2 { font-size: 2rem; }
    .categories-grid { gap: 20px; }
    .cat-circle { width: 80px; height: 80px; }
    .trust-badges { flex-direction: column; gap: 30px; }
}
/* General Styling for Story Sections */
.brand-story {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.story-image-col {
    flex: 1.1; /* Image takes a little more space */
    overflow: hidden;
}
.story-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 🔒 בכוונה לא מגדילים את התמונה בהעברת עכבר */

.story-text-col {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.story-text-col .sub-title {
    margin-bottom: 8px;
}

.story-text-col h3 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 25px;
    font-weight: 300;
}

.story-text-col p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-story-link {
    background-color: transparent;
    color: #111;
    text-decoration: none;
    border: 1px solid #ddd;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}
.btn-story-link:hover {
    background-color: #f7f7f7;
    border-color: #111;
    color: #e91e63;
}

/* Layout 1: Image Left, Text Right */
.brand-story-v1 {
    flex-direction: row;
}

/* Layout 2: Text Left, Image Right */
.brand-story-v2 {
    flex-direction: row-reverse;
}

/* Mobile Responsiveness for Story Sections */
@media (max-width: 900px) {
    .brand-story {
        flex-direction: column;
        margin: 50px 20px;
    }
    .brand-story-v2 {
        flex-direction: column; /* Stack image on top for both on mobile */
    }
    .story-image-col {
        height: 350px;
    }
    .story-text-col {
        padding: 50px 30px;
        align-items: center;
        text-align: center;
    }
    .story-text-col h3 {
        font-size: 1.8rem;
    }
}
.brand-highlight-banner {
    position: relative;
    width: 100%;
    /* UPDATE this image with your own beautiful photo path */
    background-image: url('product-photos/dalitbanner (1).webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect - super premium */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    margin-top: 50px;
}

/* Dark overlay to make text pop */
.brand-highlight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* adjust transparency */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2; /* Sits above overlay */
    text-align: center;
    max-width: 800px;
}

.banner-content .sub-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.banner-content h3 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.banner-btn {
    background-color: #fff;
    color: #111;
    text-decoration: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.banner-btn:hover {
    background-color: #e91e63;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

/* Mobile Responsiveness for Banner */
@media (max-width: 768px) {
    .brand-highlight-banner { padding: 80px 20px; }
    .banner-content h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}
.results-gallery-section {
    padding: 80px 20px;
    background-color: #f5f5f5; /* <--- Sleek light grey shade */
    max-width: 1300px;
    margin: 0 auto;
}

.results-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Text Column */
.results-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.results-text-col .sub-title {
    color: #e91e63;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.results-text-col h3 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 300;
}

.results-text-col p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.results-cta-btn {
    display: inline-block;
    background-color: transparent;
    color: #e91e63;
    text-decoration: none;
    border: 2px solid #e91e63;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.results-cta-btn:hover {
    background-color: #e91e63;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.2);
}

/* Carousel Column */
.results-carousel-col {
    flex: 1.2; /* Takes up more space than text */
    position: relative;
}

.results-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.results-track-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
}
.results-track-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.results-track-wrapper.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.results-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}

.result-img {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* Forces the perfect landscape ratio for before/afters */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    scroll-snap-align: start;
    -webkit-user-drag: none; /* stops the browser's native ghost-image drag from fighting the custom drag gesture */
}

/* Pink Arrows Styling */
.results-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: 2px solid #e91e63;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
    color: #e91e63;
    transition: all 0.2s ease;
}

.results-arrow:hover {
    background-color: #e91e63;
    color: #fff;
}

/* Positioning based on RTL */
.prev-results { right: -22px; } /* overlap a bit */
.next-results { left: -22px; }

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .results-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .results-text-col {
        align-items: center;
    }
}

/* ==========================================
   REVIEWS SECTION (text testimonials + star rating)
   ========================================== */
.reviews-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.review-card {
    background: #fff;
    border: 1.5px solid #f0ebe6;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card.in-view .review-stars svg {
    opacity: 1;
    transform: scale(1);
}

.review-stars svg:nth-child(1) { transition-delay: 0.05s; }
.review-stars svg:nth-child(2) { transition-delay: 0.15s; }
.review-stars svg:nth-child(3) { transition-delay: 0.25s; }
.review-stars svg:nth-child(4) { transition-delay: 0.35s; }
.review-stars svg:nth-child(5) { transition-delay: 0.45s; }

.review-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.review-author {
    font-weight: 700;
    color: var(--brand-espresso, #111);
    font-size: 0.9rem;
    border-top: 1px solid #f0ebe6;
    padding-top: 12px;
    margin-top: auto;
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   AI CONSULTANT PAGE
   ========================================== */
.ai-page-main {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px 60px;
}

.ai-login-required {
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 50px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.ai-login-required p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.ai-primary-btn {
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}

.ai-primary-btn:hover {
    background: #c2185b;
    transform: translateY(-1px);
}

.ai-primary-btn:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

.ai-tabs {
    display: flex;
    gap: 8px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 24px;
}

.ai-tab {
    background: none;
    border: none;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.ai-tab.active {
    color: #e91e63;
    border-bottom-color: #e91e63;
}

.ai-tab-panel {
    display: none;
}

.ai-tab-panel.active {
    display: block;
}

.ai-disclaimer {
    background: #fdf2f6;
    border: 1px solid #fce4ec;
    color: #8a5468;
    font-size: 0.85rem;
    line-height: 1.6;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.ai-disclaimer a {
    color: #e91e63;
    font-weight: 700;
}

.ai-chat-header-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
}

@media (max-width: 640px) {
    .ai-chat-header-row {
        flex-direction: column;
    }
}

/* --- Chat --- */
.ai-chat-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.ai-conversations-sidebar {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-new-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ai-new-chat-btn:hover {
    background: #c2185b;
}

.ai-conversations-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    max-height: 500px; /* matches .ai-chat-thread max-height for visual balance */
}

.ai-conversations-empty,
.ai-conversations-loading {
    color: #999;
    font-size: 0.8rem;
    text-align: center;
    padding: 20px 8px;
}

.ai-conversation-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
}

.ai-conversation-item:hover {
    background: #fdf2f6;
}

.ai-conversation-item.active {
    background: #fce4ec;
}

.ai-conversation-title {
    font-size: 0.83rem;
    color: #444;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.ai-conversation-item.active .ai-conversation-title {
    color: #c2185b;
    font-weight: 600;
}

.ai-conversation-delete-btn {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.ai-conversation-item:hover .ai-conversation-delete-btn {
    opacity: 1;
}

.ai-conversation-delete-btn:hover {
    color: #e91e63;
    background: #fff;
}

.ai-chat-main {
    flex: 1;
    min-width: 0; /* prevents the chat thread from overflowing its flex parent */
    display: flex;
    flex-direction: column;
}

.ai-sidebar-toggle-btn {
    display: none; /* hidden on desktop - sidebar is always visible there */
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 10px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #444;
    cursor: pointer;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .ai-sidebar-toggle-btn {
        display: flex;
    }

    .ai-conversations-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80vw, 300px);
        height: 100%;
        background: #fff;
        z-index: 2000;
        padding: 20px 16px;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
    }

    .ai-conversations-sidebar.open {
        right: 0;
    }

    .ai-conversations-list {
        max-height: none;
        flex: 1;
    }
}

.ai-chat-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 320px;
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 14px;
}

.ai-bubble {
    max-width: 78%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.92rem;
    line-height: 1.6;
    white-space: pre-wrap;
    animation: aiBubbleIn 0.35s cubic-bezier(0.25, 0.8, 0.4, 1);
}

@keyframes aiBubbleIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ai-bubble-user {
    align-self: flex-start;
    background: #e91e63;
    color: #fff;
    border-bottom-left-radius: 4px;
}

.ai-bubble-ai {
    align-self: flex-end;
    background: #fff;
    color: #222;
    border: 1px solid #eee;
    border-bottom-right-radius: 4px;
}

.ai-bubble-ai .ai-reply-text {
    display: inline-block;
    animation: aiTextFadeIn 0.3s ease;
}

@keyframes aiTextFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.ai-typing-dots {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 2px;
}

.ai-typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #e0a8bc;
    animation: aiTypingBounce 1.3s infinite ease-in-out;
}

.ai-typing-dots span:nth-child(1) { animation-delay: 0s; }
.ai-typing-dots span:nth-child(2) { animation-delay: 0.18s; }
.ai-typing-dots span:nth-child(3) { animation-delay: 0.36s; }

@keyframes aiTypingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.ai-chat-input-row {
    display: flex;
    gap: 10px;
}

.ai-chat-input-row input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    font-size: 0.95rem;
    outline: none;
}

.ai-chat-input-row input:focus {
    border-color: #e91e63;
}

.ai-chat-input-row button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #e91e63;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.ai-chat-input-row button:hover {
    background: #c2185b;
}

.ai-chat-input-row button:disabled {
    background: #ddd;
    cursor: not-allowed;
}

/* --- Skin photo analysis --- */
.skin-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.skin-photo-slot label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.skin-photo-slot input[type="file"] {
    display: none;
}

.skin-photo-preview {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 2px dashed #e0a8bc;
    border-radius: 12px;
    background-color: #fdf2f6;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease;
}

.skin-photo-preview span {
    font-size: 2rem;
    color: #e91e63;
    font-weight: 300;
}

.skin-photo-preview.has-photo {
    border-style: solid;
    border-color: #e91e63;
}

.skin-photo-preview.has-photo span {
    display: none;
}

.skin-photo-label {
    font-size: 0.82rem;
    color: #666;
    font-weight: 600;
}

.ai-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
    cursor: pointer;
}

.ai-consent-row input {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: #e91e63;
}

.ai-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 60px 20px;
    color: #888;
}

.ai-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid #f0d0dc;
    border-top-color: #e91e63;
    border-radius: 50%;
    animation: aiSpin 0.8s linear infinite;
}

@keyframes aiSpin {
    to { transform: rotate(360deg); }
}

.skin-analysis-result {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.skin-analysis-result h4 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 14px;
}

.skin-analysis-result h4 span {
    color: #e91e63;
    font-weight: 800;
}

.skin-concerns-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.skin-concern-tag {
    background: #fdf2f6;
    color: #c2185b;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.skin-analysis-summary {
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}

.skin-analysis-disclaimer {
    font-size: 0.78rem;
    color: #999;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .skin-photo-preview span {
        font-size: 1.4rem;
    }
    .ai-bubble {
        max-width: 88%;
    }
}

/* ==========================================
   BOOKING PAGE
   ========================================== */

@keyframes bookingStepIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideOutRight {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(45px); }
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-45px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutLeft {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(-45px); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(45px); }
    to { opacity: 1; transform: translateX(0); }
}

.booking-step-viewport {
    position: relative;
}

.booking-step.anim-out-right,
.booking-step.anim-out-left {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.booking-step.anim-out-right { animation: slideOutRight 0.32s ease forwards; }
.booking-step.anim-in-left { animation: slideInFromLeft 0.32s ease forwards; }
.booking-step.anim-out-left { animation: slideOutLeft 0.32s ease forwards; }
.booking-step.anim-in-right { animation: slideInFromRight 0.32s ease forwards; }

.booking-edit-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fdf2f6;
    border: 1.5px solid #f5c1d3;
    color: #c2185b;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.booking-edit-banner button {
    background: none;
    border: 1px solid #e91e63;
    color: #e91e63;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.booking-edit-banner button:hover {
    background: #e91e63;
    color: #fff;
}

@keyframes cardStaggerIn {
    from { opacity: 0; transform: translateY(10px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes slotStaggerIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slotPop {
    0% { transform: scale(1); }
    45% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes circleDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes successPopIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* --- Progress stepper --- */
.booking-progress-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.progress-step-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e5e5;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.25s ease;
}

.progress-step-label {
    font-size: 0.72rem;
    color: #aaa;
    font-weight: 600;
    transition: color 0.3s ease;
}

.progress-step.active .progress-step-circle {
    background: #e91e63;
    border-color: #e91e63;
    color: #fff;
    transform: scale(1.12);
}

.progress-step.active .progress-step-label {
    color: #e91e63;
}

.progress-step.completed .progress-step-circle {
    background: #fdf2f6;
    border-color: #e91e63;
    color: #e91e63;
}

.progress-step.completed .progress-step-label {
    color: #c2185b;
}

.progress-step-line {
    height: 2px;
    flex: 1;
    background: #e5e5e5;
    margin-bottom: 22px;
    max-width: 50px;
}

.booking-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.booking-form-card,
.my-appointments-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}

.booking-form-card {
    flex: 2;
    min-width: 0;
}

.my-appointments-card {
    flex: 1;
    min-width: 260px;
    position: sticky;
    top: 100px;
}

.my-appointments-card h4 {
    margin-bottom: 16px;
    font-size: 1rem;
    color: #333;
}

.booking-step {
    animation: bookingStepIn 0.4s ease;
}

.booking-step h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: #333;
    margin-bottom: 16px;
}

.booking-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e91e63;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.treatment-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.treatment-option-card {
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: cardStaggerIn 0.45s ease backwards;
}

.treatment-option-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fdf2f6;
    color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.treatment-option-card:hover {
    border-color: #f5c1d3;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(233,30,99,0.1);
}

.treatment-option-card:hover .treatment-option-icon {
    transform: scale(1.08) rotate(-4deg);
}

.treatment-option-card.selected {
    border-color: #e91e63;
    background: #fdf2f6;
    box-shadow: 0 8px 20px rgba(233,30,99,0.14);
}

.treatment-option-card.selected .treatment-option-icon {
    background: #e91e63;
    color: #fff;
}

.treatment-option-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.treatment-option-duration {
    font-size: 0.78rem;
    color: #999;
}

.custom-date-picker {
    position: relative;
    max-width: 300px;
}

.date-picker-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    background: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    color: #999;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.date-picker-trigger.has-value {
    color: #333;
    font-weight: 600;
}

.date-picker-trigger:hover {
    border-color: #f5c1d3;
}

.date-picker-trigger svg:first-child {
    color: #e91e63;
    flex-shrink: 0;
}

.date-picker-trigger span {
    flex: 1;
    text-align: right;
}

.date-picker-chevron {
    color: #aaa;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.calendar-dropdown.open + .date-picker-chevron,
.date-picker-trigger:has(+ .calendar-dropdown.open) .date-picker-chevron {
    transform: rotate(180deg);
}

.calendar-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    padding: 16px;
    width: min(300px, calc(100vw - 48px));
    z-index: 100;
    animation: bookingStepIn 0.2s ease;
}

.calendar-dropdown.open {
    display: block;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.calendar-nav-btn {
    background: #fdf2f6;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    color: #e91e63;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.calendar-nav-btn:hover {
    background: #fce4ec;
}

.calendar-month-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #333;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 6px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #aaa;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.calendar-day-cell:not(.disabled):not(.empty):hover {
    background: #fdf2f6;
}

.calendar-day-cell.empty {
    cursor: default;
}

.calendar-day-cell.disabled {
    color: #ddd;
    cursor: not-allowed;
}

.calendar-day-cell.today {
    font-weight: 800;
    color: #e91e63;
}

.calendar-day-cell.selected {
    background: #e91e63;
    color: #fff;
    font-weight: 700;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.time-slot-btn {
    padding: 10px 6px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    background: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.15s ease;
    animation: slotStaggerIn 0.3s ease backwards;
}

.time-slot-btn:hover {
    border-color: #f5c1d3;
    transform: translateY(-2px);
}

.time-slot-btn.selected {
    border-color: #e91e63;
    background: #e91e63;
    color: #fff;
    animation: slotPop 0.3s ease;
}

.booking-summary-box {
    background: #fdf2f6;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    animation: bookingStepIn 0.35s ease;
}

.booking-summary-row {
    font-size: 0.9rem;
    color: #444;
    padding: 4px 0;
}

.booking-summary-row strong {
    color: #333;
}

.booking-success-box {
    text-align: center;
    padding: 30px 10px;
    animation: successPopIn 0.4s ease;
}

.success-checkmark-svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: block;
}

.success-checkmark-circle {
    stroke: #e91e63;
    stroke-width: 2;
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: circleDraw 0.6s ease forwards;
}

.success-checkmark-check {
    stroke: #e91e63;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    animation: checkDraw 0.35s ease 0.55s forwards;
}

.booking-success-box h4 {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 8px;
}

.booking-success-box p {
    color: #666;
    margin-bottom: 20px;
}

.my-appointment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #f2f2f2;
    transition: background 0.2s ease;
}

.my-appointment-item:last-child {
    border-bottom: none;
}

.my-appointment-treatment {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.my-appointment-datetime {
    font-size: 0.78rem;
    color: #999;
    margin-top: 2px;
}

.my-appointment-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.my-appointment-edit-btn {
    background: none;
    border: 1px solid #f5c1d3;
    color: #e91e63;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.my-appointment-edit-btn:hover {
    background: #fdf2f6;
    border-color: #e91e63;
}

.my-appointment-cancel-btn {
    background: none;
    border: 1px solid #eee;
    color: #999;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 14px;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.my-appointment-cancel-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
    background: #fdf2f6;
}

@media (max-width: 900px) {
    .booking-layout {
        flex-direction: column;
        align-items: stretch;
    }
    .my-appointments-card {
        position: static;
        width: 100%;
    }
    .booking-form-card {
        width: 100%;
    }
    .progress-step-label {
        display: none;
    }
    .booking-progress-stepper {
        max-width: 280px;
    }
    .calendar-dropdown {
        width: min(340px, calc(100vw - 24px)) !important;
        padding: 12px;
    }
    .calendar-day-cell {
        font-size: 0.9rem;
    }
}

/* ==========================================
   PINNED SCROLL CSS (RESTORED & TIGHTENED)
   ========================================== */
.scroll-track {
    position: relative;
    height: 250vh; 
}

.sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #fff;
}

.clinic-treatments-section {
    padding: 0 20px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.treatments-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* --- TEXT COLUMN --- */
.treatments-text-col {
    flex: 1; 
    max-height: 80vh;
}

.treatments-text-col h3 {
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 10px;
    font-weight: 300;
}

.treatments-accordion { 
    margin-top: 15px;
    border-top: 1px solid #eee; 
}

.clinic-accordion-item { 
    border-bottom: 1px solid #eee; 
}

/* TIGHTENED TITLES */
.clinic-accordion-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.clinic-accordion-item.active .clinic-accordion-header { color: var(--brand-rose-dark, #e91e63); }

/* THE SLIDE */
.clinic-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
    padding: 0 10px; 
}

.clinic-accordion-item.active .clinic-accordion-content {
    max-height: 400px; 
    padding-top: 5px;
    padding-bottom: 15px; 
    opacity: 1;
}

.clinic-accordion-content p {
    color: #555;
    font-size: 15.5px; 
    line-height: 1.6;
    margin: 0;
}

/* --- WHATSAPP FADE-IN BUTTON --- */
.booking-btn-wrapper {
    margin-top: 40px;
    text-align: right;
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none; 
}

.booking-btn-wrapper.show-btn {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; 
}

.booking-fade-btn {
    display: inline-block;
    background-color: #e91e63;
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.booking-fade-btn:hover {
    background-color: #c2185b; 
    transform: scale(1.05);
}

/* --- IMAGE COLUMN --- */
.treatments-image-col {
    flex: 1; 
}

.sticky-image-wrapper {
    position: relative;
    width: 100%;
    height: 50vh; 
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.treatments-img {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.treatments-img.active-img {
    opacity: 1;
}

/* Mobile: instead of the pinned-scroll effect (fragile on phones - mobile
   browsers resize the viewport as the address bar shows/hides, which breaks
   height-based scroll math), the images become a swipeable gallery using the
   same natively-scrollable drag pattern as the product/results carousels.
   Tapping a treatment title scrolls to its photo, and swiping the photos
   updates which title is open - synced in both directions, driven by simple
   scrollLeft math instead of viewport-height calculations. */
@media (max-width: 900px) {
    .scroll-track { height: auto; }

    .sticky-viewport {
        position: static;
        height: auto;
        display: block;
        padding: 30px 0 0;
        overflow: visible;
    }

    .treatments-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .treatments-image-col {
        width: 100%;
    }

    .sticky-image-wrapper {
        position: static;
        height: 38vh;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        border-radius: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        cursor: grab;
        scrollbar-width: none;
    }
    .sticky-image-wrapper::-webkit-scrollbar { display: none; }
    .sticky-image-wrapper.is-dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    .treatments-img {
        position: static; /* overrides the desktop absolute-stack positioning */
        flex: 0 0 100%;
        width: 100%;
        height: 100%;
        opacity: 1 !important; /* all visible side-by-side in the strip; desktop's opacity-toggle doesn't apply here */
        scroll-snap-align: start;
        -webkit-user-drag: none;
    }

    .treatments-text-col {
        width: 100%;
        max-height: none;
        padding: 24px 4px 10px;
    }
}
/* ==========================================
   THE "HOW WE DO IT" PROCESS SECTION
   ========================================== */
.process-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.process-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* This is the magic that centers the bottom row */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    direction: rtl; /* Ensures the numbers 01, 02, 03 flow right-to-left */
}

.process-card {
    background: #fafafa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    
    /* Flexbox sizing for perfect symmetry */
    flex: 1 1 320px; /* Allows cards to grow/shrink based on screen size */
    max-width: 350px; /* Keeps all cards the exact same uniform size */
    text-align: right;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-top: 4px solid var(--brand-rose, #e91e63);
}

.process-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(184, 123, 128, 0.15); 
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.process-card h4 {
    color: var(--brand-rose-dark, #e91e63);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}
/* Make the last card span wider if needed on desktop */
@media (min-width: 768px) {
    .process-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    .process-card:nth-child(5) .process-number {
        left: 50%;
        transform: translateX(-50%);
    }
}
/* ==========================================
   FEATURED PRODUCTS & IMAGE SECTION
   ========================================== */

/* Main outer section */
/* ==========================================
   CLEAN PRODUCT CARD & SMOOTH HOVER EXPAND
   ========================================== */

/* Main outer section setup */
/* ==========================================
   FEATURED PRODUCTS & IMAGE SECTION
   ========================================== */

/* Main outer section setup */
.featured-products-section {
    padding: 60px 20px;
    background-color: #fff;
    direction: rtl; /* Ensures Hebrew text and layout flow correctly */
}

/* Container holding the 2x2 grid and the large lifestyle image */
.featured-products-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: stretch;
}

/* Force 2x2 Grid Layout */
.featured-products-section .products-grid,
.featured-products-section #featured-products-grid {
    flex: 1 1 500px;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    align-items: start !important; /* Prevents sibling cards from stretching vertically */
}

/* Base Featured Product Card */
.featured-product-card {
    box-sizing: border-box;
    border: 2px solid #e91e63; /* Pink Outer Outline */
    border-radius: 16px;
    padding: 12px;
    background: #ffffff;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

/* Top Right Wishlist/Badge Container */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    z-index: 2;
}
.featured-product-card .card-main-content {
    height: 340px !important; /* Fixed wrapper height for image + brand + title + price */
    min-height: 340px !important;
    max-height: 340px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden !important;
    width: 100%;
}

/* Product Image Box */
.featured-product-card .product-image-container {
    height: 160px !important;
    min-height: 160px !important;
    max-height: 160px !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
}

/* Product Image Rules (Completely stops zoom, scaling, or expansion) */
.featured-product-card img,
.featured-product-card .product-img,
.featured-product-card:hover img,
.featured-product-card:hover .product-img {
    height: 100% !important;
    width: 100% !important;
    max-height: 160px !important;
    object-fit: contain !important;
    transform: none !important; /* Disables any scale or transform effect */
    scale: 1 !important;
    transition: none !important;
}

/* Product Text Information */
.featured-product-card .product-info {
    width: 100%;
    text-align: center;
}
.featured-product-card .product-info h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em; /* reserves space for 2 lines even when a name only needs 1, keeping the price aligned across cards */
}
.featured-product-card .card-expand-content {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease, margin-top 0.25s ease;
    margin-top: 0;
    width: 100%;
}

/* Hover State: Lifts card slightly & opens drawer at bottom */
.featured-product-card:hover {
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.featured-product-card:hover .card-expand-content {
    max-height: 150px; /* Smoothly reveals description & buttons cleanly */
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
}

.featured-image-wrapper {
    flex: 1 1 400px;
    display: flex;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .featured-products-container {
        flex-direction: column-reverse;
    }

    .featured-products-section .products-grid,
    .featured-products-section #featured-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .featured-image-wrapper {
        height: 350px;
    }
}
/* ------------------------------------------
   1. ISOLATED MAIN TOP CONTENT (Image + Info)
   ------------------------------------------ */



.product-brand {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 6px;
}

.product-size-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e6005c;
}

/* ------------------------------------------
   2. SEPARATE EXPANDABLE BOTTOM DRAWER
   ------------------------------------------ */



/* ------------------------------------------
   3. BUTTONS & RIGHT LIFESTYLE IMAGE
   ------------------------------------------ */

.btn-black {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-black:hover {
    background-color: #333;
}

.btn-beige {
    background-color: #dfd5c9;
    color: #333;
    border: none;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.btn-beige:hover {
    background-color: #d0c4b5;
}

/* Large Lifestyle Image Side */

/* =========================================
   RICH & COLORFUL BRAND THEME OVERRIDES
   ========================================= */

:root {
    /* צבעי המותג המעודכנים */
    --brand-rose: #d9a0a5;       /* ורוד עתיק/פודרה אלגנטי */
    --brand-rose-dark: #b87b80;  /* ורוד עמוק למעברי עכבר */
    --brand-nude: #f4ece6;       /* ניוד/בז' חמים */
    --brand-cream: #faf5f3;      /* שמנת רכה מאוד לרקע הכללי */
    --brand-espresso: #2c2423;   /* חום-אספרסו כהה במקום שחור (יוקרתי יותר) */
    --brand-gold: #c4a582;       /* זהב רך לאקסטרות */
}

/* 1. רקע כללי של כל האתר (שמנת רכה במקום לבן/אפור) */
body {
    background-color: var(--brand-cream) !important;
    color: var(--brand-espresso) !important;
}

/* 2. פס הכרזות עליון ופוטר תחתון - צבע אספרסו עמוק ועשיר */
.top-announcement-bar,
.site-footer,
.main-footer {
    background: var(--brand-espresso) !important;
    color: var(--brand-nude) !important;
}

.site-footer h2, .site-footer h3, .site-footer span, .site-footer a, .site-footer p {
    color: var(--brand-nude) !important;
}

.site-footer {
    margin-top: 60px !important;
    border-top: none !important;
}

/* 3. שורת התפריט (ניווט) - צבע ניוד רך */
.main-nav {
    background-color: var(--brand-nude) !important;
    border-bottom: 1px solid #eaddd3 !important;
}

/* 4. באנר ראשי (Hero) - מעבר צבעים מזמין */
.hero-section,
.hero-banner {
    background: linear-gradient(135deg, var(--brand-nude) 0%, #e8d3cf 100%) !important;
    border-radius: 20px;
    margin: 20px auto !important;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 60px 20px !important;
}

/* 5. באנר התייעצות (Highlight) - צבע ורוד עתיק בולט */
.brand-highlight-banner {
    background: linear-gradient(90deg, var(--brand-rose) 0%, var(--brand-rose-dark) 100%) !important;
    color: #fff !important;
    padding: 40px 20px !important;
    border-radius: 20px;
    margin: 24px auto !important;
    max-width: 1200px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(217, 160, 165, 0.4);
}

.brand-highlight-banner h3, 
.brand-highlight-banner span.sub-title {
    color: #fff !important;
    background: transparent !important;
}

/* 6. אזור שיטת העבודה - רקע ניוד שמבליט את הכרטיסיות הלבנות */
.process-section {
    background-color: var(--brand-nude) !important;
    padding: 50px 20px !important;
    border-radius: 20px;
    margin: 24px auto !important;
    max-width: 1200px;
}

.process-section .process-card {
    background-color: #fff !important;
    border-top: 4px solid var(--brand-rose) !important;
}

/* 7. אזורי קרוסלות המוצרים - מסגרת לבנה מעודנת על הרקע השמנתי */
.products-section {
    background-color: #fff !important;
    padding: 44px 20px !important;
    border-radius: 20px;
    margin: 24px auto !important;
    max-width: 1200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02) !important;
}

/* 7b. אזור טיפולי הקליניקה (הגלילה הדביקה) - נשאר במכוון full-bleed ברוחב מלא;
   לא מוסיפים לו max-width/overflow כדי לא לשבור את אפקט ה-position:sticky.
   הרווח סביבו כבר מצטמצם דרך המרווחים המוקטנים של process-section ו-products-section למעלה/למטה. */

/* 8. סיפור המותג - רקע ניוד חמים */
.brand-story {
    background-color: var(--brand-nude) !important;
    padding: 60px 20px !important;
    border-radius: 20px;
    margin: 24px auto !important;
    max-width: 1200px;
}

/* 8b. מוצרים נבחרים - אותה מסגרת לבנה כמו שאר האזורים, כדי שלא תרגיש כמו רצועה תלושה */
.featured-products-section {
    background-color: #fff !important;
    padding: 50px 20px !important;
    border-radius: 20px !important;
    margin: 24px auto !important;
    max-width: 1200px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02) !important;
}

/* 9. עיצוב כותרות, טקסטים ותגיות */
h1, h2, h3, h4, h5, h6 {
    color: var(--brand-espresso) !important;
}

.sub-title {
    color: var(--brand-espresso) !important;
    background: var(--brand-nude);
    padding: 6px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
    border: 1px solid var(--brand-rose);
}

.title-underline {
    background-color: var(--brand-rose) !important;
    height: 4px !important;
    border-radius: 2px;
}

/* 10. עיצוב כל הכפתורים באתר לקו יוקרתי אחיד */
.hero-btn, 
.btn-black, 
.auth-submit-btn, 
.checkout-btn,
.results-cta-btn,
.btn-story-link,
.booking-fade-btn {
    background-color: var(--brand-espresso) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(44, 36, 35, 0.2);
    transition: all 0.3s ease !important;
}

.hero-btn:hover, 
.btn-black:hover, 
.auth-submit-btn:hover, 
.checkout-btn:hover,
.results-cta-btn:hover,
.btn-story-link:hover,
.booking-fade-btn:hover {
    background-color: var(--brand-rose-dark) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 123, 128, 0.4);
}

.banner-btn, 
.btn-beige {
    background-color: #fff !important;
    color: var(--brand-espresso) !important;
    font-weight: bold !important;
}

.banner-btn:hover, 
.btn-beige:hover {
    background-color: var(--brand-nude) !important;
}

/* 11. עיצוב כרטיסיות המוצרים */
.product-card {
    border-color: var(--brand-rose) !important;
    background-color: #fff !important;
}

.product-card .price {
    color: var(--brand-rose-dark) !important;
    font-size: 1.2rem !important;
}

/* 12. סמלים (מועדפים ועגלה) */
.wishlist-btn {
    color: var(--brand-rose-dark) !important;
}
.cart-badge {
    background-color: var(--brand-rose-dark) !important;
    color: #fff !important;
}
/* ==========================================
   SALE STATUS TOGGLE STYLES
   ========================================== */

/* 🚫 Hide all sale elements automatically when the sale is OFF */
body.sale-is-off .sale-badge,
body.sale-is-off .sale-announcement,
body.sale-is-off .discount-tag,
body.sale-is-off .free-item-note {
    display: none !important;
}

/* 🏷️ Show standard pricing layout when sale is OFF */
body.sale-is-off .original-price-line {
    text-decoration: none !important;
    color: inherit !important;
}

/* ==========================================
   MOBILE SPACING - keeps a small breathing margin
   on phones instead of the boxed sections sitting
   flush against the screen edge (must stay last in
   the file so it wins over the !important rules above)
   ========================================== */
@media (max-width: 900px) {
    .process-section,
    .products-section,
    .brand-story,
    .featured-products-section {
        margin: 16px 12px !important;
        border-radius: 16px;
    }
}

/* ==========================================
   HARD LOCK: product images never scale/zoom on hover.
   Placed last on purpose so it beats any other rule in
   this file regardless of specificity or !important.
   ========================================== */
.product-card .product-img,
.product-card:hover .product-img,
.featured-product-card .product-img,
.featured-product-card:hover .product-img {
    transform: none !important;
    scale: 1 !important;
}
