/* Pages CSS - Category & Grid Layouts */

/* Product Grid Layout */
.showcase-grid-static {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

@media (max-width: 1200px) {
    .showcase-grid-static {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .showcase-grid-static {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .showcase-grid-static {
        grid-template-columns: repeat(1, 1fr);
        /* Or 2 if you prefer tighter mobile grid */
    }
}

/* Product Card Styling (Ensuring Consistency) */
.product-card {
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 8px;
    /* Rounded corners */
    border: 1px solid #e5e5e5;
    /* Border */
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #333;
    /* Darker border on hover */
}

/* Add to Cart Button (Bottom Right) */
/* Add to Cart Button (Bottom Right) */
.bubs-cart-trigger {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid var(--color-primary, #704831);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary, #704831);
    font-size: 15px;
    z-index: 20;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(4px);
}

.product-card:hover .bubs-cart-trigger {
    opacity: 1;
    transform: translateY(0);
}

.bubs-cart-trigger:hover {
    background: var(--color-primary, #704831);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(112, 72, 49, 0.25);
}

/* Favorite Button (Top Right) */
/* Favorite Button (Top Right) */
.card-fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid var(--color-primary, #704831);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-primary, #704831);
    font-size: 15px;
    z-index: 20;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-4px);
}

.card-fav-btn i {
    color: var(--color-primary, #704831);
    transition: color 0.3s ease;
}

.product-card:hover .card-fav-btn {
    opacity: 1;
    transform: translateY(0);
}

.card-fav-btn:hover {
    background: var(--color-primary, #704831);
    color: #fff !important;
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(112, 72, 49, 0.25);
}

.card-fav-btn:hover i {
    color: #fff !important;
}

/* Favoriye eklenmiş durumu - .fav-active class ile kontrol edilir */
.card-fav-btn.fav-active {
    background: #fff;
    border-color: var(--color-primary, #704831);
}

.card-fav-btn.fav-active i,
.fav-btn i.fas.fa-heart {
    color: var(--color-primary, #704831) !important;
}

.card-fav-btn.fav-active:hover {
    background: var(--color-primary, #704831);
    border-color: var(--color-primary, #704831);
}

.card-fav-btn.fav-active:hover i {
    color: #fff !important;
}

.product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    /* Standard e-commerce aspect ratio */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effects */
.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px 0;
    text-align: center;
}

.product-title {
    display: block;
    color: #999;
    font-size: 13px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-decoration: none;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    font-size: 14px;
    margin-right: 8px;
}

/* Color Variant Swatches on Product Cards */
.card-color-swatches {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.card-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}

.card-color-dot:hover,
.card-color-dot.active {
    border-color: var(--color-primary, #333);
    transform: scale(1.15);
    box-shadow: 0 0 0 2px rgba(93, 0, 30, 0.2);
}

/* Badge Container - Stacks badges vertically */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    pointer-events: none;
}

.product-badge {
    display: inline-block;
    position: relative;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    background-color: var(--color-primary) !important;
}

.out-of-stock {
    background-color: #333 !important;
    color: #fff !important;
}

/* Dots Styling for Hover Effect */
.image-gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: -15px;
    /* Pull up into image area or just below */
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass through */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .image-gallery-dots {
    opacity: 1;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 3px;
    transition: background-color 0.2s ease;
}

.gallery-dot.active {
    background-color: #333;
    transform: scale(1.2);
}

/* Product Detail Action Group Styling */
.prod-det-action-group {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 20px;
    flex-wrap: nowrap !important;
    width: 100%;
    justify-content: flex-start;
}

.prod-det-qty-selector {
    display: flex !important;
    align-items: center !important;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    height: 50px;
    background: #fff;
    overflow: hidden;
    float: none !important;
    margin: 0 !important;
    min-width: 120px;
    max-width: 140px;
}

.prod-det-qty-selector a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    font-size: 18px;
    color: #333;
    transition: background 0.2s;
    text-decoration: none;
}

.prod-det-qty-selector a:hover {
    background: #f5f5f5;
}

.prod-det-qty-selector span.qty-val {
    width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.prod-det-add-to-cart {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 30px;
    height: 50px;
    background: var(--color-primary, #5D001E);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 2;
    min-width: 180px;
    margin: 0 !important;
    float: none !important;
}

.prod-det-add-to-cart:hover {
    background: var(--color-primary-light, #7D1030);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 0, 30, 0.2);
    color: #fff;
}

.prod-det-favorite-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px;
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    font-size: 20px;
    color: var(--color-primary, #5D001E);
    transition: all 0.3s ease;
    flex: 0 0 50px;
    margin: 0 !important;
    float: none !important;
}

.prod-det-favorite-btn:hover {
    background: #fff0f5;
    border-color: var(--color-primary, #5D001E);
    transform: scale(1.05);
}

.whatsapp-offer-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 30px;
    height: 50px;
    background: #25D366;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 2;
    text-decoration: none;
    margin: 0 !important;
    float: none !important;
}

.whatsapp-offer-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 576px) {
    .prod-det-action-group {
        display: grid !important;
        grid-template-columns: 1fr 50px !important;
        gap: 10px !important;
        flex-direction: row !important;
        /* Grid handles layout */
        flex-wrap: wrap !important;
        align-items: stretch !important;
    }

    .prod-det-qty-selector {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: none !important;
        justify-content: space-between !important;
        height: 45px !important;
    }

    .prod-det-qty-selector a,
    .prod-det-qty-selector span.qty-val {
        width: 33.33% !important;
        flex: 1 !important;
    }

    .prod-det-add-to-cart {
        grid-column: 1 / 2 !important;
        width: 100% !important;
        margin: 0 !important;
        flex: auto !important;
    }

    .prod-det-favorite-btn {
        display: flex !important;
        grid-column: 2 / 3 !important;
        width: 100% !important;
        flex: none !important;
        margin: 0 !important;
    }

    .whatsapp-offer-btn {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
}

/* ================================================================= */
/* ÃœRÃœN DETAY SAYFASI - ÃœrÃ¼n Detay Container                        */
/* ================================================================= */

#zirve-product-detail-container {
    position: relative;
    float: none;
    width: 100%;
    box-sizing: border-box;
}

#zirve-product-detail-container *,
#zirve-product-detail-container *::before,
#zirve-product-detail-container *::after {
    box-sizing: border-box;
}

/* Varyant Listesi (Eski size-filter) */
#zirve-product-detail-container .prod-det-varyant-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

#zirve-product-detail-container .prod-det-varyant-list li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    background: none !important;
}

#zirve-product-detail-container .prod-det-varyant-list li a {
    display: block;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none !important;
    color: #333;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

#zirve-product-detail-container .prod-det-varyant-list li.active a {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: bold;
}

/* === Renk Varyant ButonlarÄ± === */
#zirve-product-detail-container .color-swatch-section {
    margin-top: 15px;
    margin-bottom: 10px;
}

#zirve-product-detail-container .color-swatch-section strong {
    display: block;
    margin-bottom: 8px;
}

#zirve-product-detail-container .color-swatch-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

#zirve-product-detail-container .color-swatch-list li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#zirve-product-detail-container .color-swatch-list li a {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 6px 14px;
    border-radius: 5px;
    text-decoration: none !important;
    color: #333;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

#zirve-product-detail-container .color-swatch-list li a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

#zirve-product-detail-container .color-swatch-list li.active a {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: bold;
}

/* === Beden ButonlarÄ± (Renk sistemi iÃ§in) === */
#zirve-product-detail-container .size-section {
    margin-top: 12px;
    margin-bottom: 10px;
}

#zirve-product-detail-container .size-section strong {
    display: block;
    margin-bottom: 8px;
}

#zirve-product-detail-container .size-btn-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0 !important;
    margin: 0 !important;
}

#zirve-product-detail-container .size-btn-list li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#zirve-product-detail-container .size-btn-list li a {
    display: block;
    border: 1px solid #ccc;
    padding: 5px 12px;
    border-radius: 5px;
    text-decoration: none !important;
    color: #333;
    background-color: #f9f9f9;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

#zirve-product-detail-container .size-btn-list li a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

#zirve-product-detail-container .size-btn-list li.active a {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    font-weight: bold;
}

#zirve-product-detail-container .size-btn-list li.stok-yok a {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

#zirve-product-detail-container .selected-color-name {
    display: inline-block;
    margin-left: 8px;
    font-weight: 600;
    color: #333;
}

/* === ÃœrÃ¼n Detay Buton Grubu (Scoped) === */
#zirve-product-detail-container .prod-det-action-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    margin-top: 16px;
    width: 100%;
}

#zirve-product-detail-container .prod-det-qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    width: 110px;
    flex-shrink: 0;
    height: 50px;
}

#zirve-product-detail-container .prod-det-qty-selector a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    background-color: #f9fafb;
    color: #374151;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background-color 0.2s;
    position: static !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

#zirve-product-detail-container .prod-det-qty-selector a:hover {
    background-color: #e5e7eb;
}

#zirve-product-detail-container .prod-det-qty-selector span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
}

#zirve-product-detail-container .prod-det-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 15px;
    height: 50px;
    border-radius: 8px;
    background-color: var(--color-primary) !important;
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
    font-family: 'Urbanist', sans-serif !important;
    white-space: nowrap;
    transition: filter 0.2s, opacity 0.2s;
}

#zirve-product-detail-container .prod-det-add-to-cart:hover {
    filter: brightness(1.15);
}

#zirve-product-detail-container .prod-det-add-to-cart i {
    margin-right: 8px;
    font-size: 1.2rem;
}

#zirve-product-detail-container .prod-det-favorite-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: var(--color-primary) !important;
    background-color: white;
    text-decoration: none;
    padding: 0;
    transition: border-color 0.2s, background-color 0.2s;
}

#zirve-product-detail-container .prod-det-favorite-btn:hover {
    border-color: var(--color-primary);
    background-color: #fdf2f8;
}

@media (min-width: 640px) {
    #zirve-product-detail-container .prod-det-action-group {
        justify-content: flex-start;
    }

    #zirve-product-detail-container .prod-det-add-to-cart {
        flex: 0 0 auto;
        width: auto;
        min-width: 160px;
        padding: 0 30px;
    }
}

/* --- MOBILE OVERFLOW & LAYOUT FIXES --- */
@media (max-width: 991px) {

    .comments-area .row .col-lg-8,
    .comments-area .row .col-lg-4 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #product-thumb-slider {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 400px) {
    #zirve-product-detail-container .prod-det-action-group {
        flex-wrap: wrap !important;
    }

    #zirve-product-detail-container .prod-det-add-to-cart {
        width: 100% !important;
        flex: 0 0 100% !important;
        margin-top: 10px;
        order: 3;
    }

    #zirve-product-detail-container .prod-det-qty-selector {
        width: 100px !important;
    }

    .product-details h1 {
        font-size: 1.5rem !important;
        word-wrap: break-word;
    }
}

/* === Progress Bar (YÄ±ldÄ±z Puanlama) === */
.progress {
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.progress-bar {
    height: 100%;
    background: #FFC107;
    border-radius: 5px;
    color: #333;
    font-size: 0.75rem;
    text-align: right;
    padding-right: 5px;
}

/* === Product Gallery & Slider === */
.product-gallery {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 767px) {
    .product-gallery #product-main-slider .slick-slide.slick-current.slick-active {
        width: 100% !important;
        transform: translate3d(0, 0, 0) !important;
        left: 0 !important;
        right: 0 !important;
    }

    .product-gallery #product-main-slider .slick-slide {
        width: 100% !important;
        float: left;
        height: auto;
    }

    .product-gallery #product-main-slider img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 1023px) {
    #product-main-slider .swiper-slide {
        width: 100% !important;
    }

}


/* ================================================================= */
/* NEW PRODUCT PAGE STYLES (PHASE 1)                                */
/* ================================================================= */

.prod-main-wrapper {
    padding-top: 20px;
    padding-bottom: 60px;
    background-color: #fff;
    font-family: 'Urbanist', sans-serif;
    /* Ensuring requested font */
}

/* 1. BREADCRUMB */
.prod-breadcrumb-container {
    width: 100%;
    padding: 10px 40px;
    /* Aligned with logo/header padding usually */
    margin-bottom: 20px;
}

.prod-breadcrumb {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.prod-breadcrumb a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.prod-breadcrumb a:hover {
    color: var(--color-primary);
}

.prod-breadcrumb .sep {
    margin: 0 8px;
    color: #ccc;
    font-size: 12px;
}

.prod-breadcrumb .current {
    color: var(--color-primary);
    font-weight: 600;
}

/* 2. LAYOUT GRID */
.prod-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    /* Standard wide container */
    margin: 0 auto;
    padding: 0 20px;
}

.prod-gallery-section {
    flex: 0 0 55%;
    /* Slightly wider for gallery */
    max-width: 55%;
}

.prod-details-section {
    flex: 0 0 40%;
    max-width: 40%;
}

/* 3. GALLERY STYLES */
.prod-gallery-wrapper {
    display: flex;
    gap: 20px;
    height: 600px;
    /* Fixed height for vertical alignment, or auto */
}

/* Vertical Thumbnails (Left) */
.prod-thumbs-col {
    flex: 0 0 90px;
    max-width: 90px;
    height: 100%;
    max-height: 600px;
    /* Match main image max height */
    overflow-y: auto;
    /* Scroll if too many images */
    scrollbar-width: thin;
    /* Firefox */
}

.prod-thumbs-col::-webkit-scrollbar {
    width: 4px;
}

.prod-thumbs-col::-webkit-scrollbar-thumb {
    background: #eee;
}

.prod-thumbs-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prod-thumb-item {
    width: 100%;
    aspect-ratio: 1/1.2;
    /* Better ratio for vertical products */
    position: relative;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s;
}

.prod-thumb-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.prod-thumb-item:hover,
.prod-thumb-item.active {
    border-color: var(--color-primary);
    border-width: 2px;
}

/* Main Image (Right) */
.prod-main-image-col {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    /* or center */
    justify-content: center;
}

.prod-main-image-wrapper {
    width: 100%;
    height: 100%;
    /* Fill container */
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* For zoom containment */
}

.prod-main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: crosshair;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .prod-layout {
        flex-direction: column;
    }

    .prod-gallery-section,
    .prod-details-section {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .prod-gallery-wrapper {
        flex-direction: column-reverse;
        /* Put thumbs below on tablet? Or keep vertical? User asked for Vertical specifically. Keeping vertical for tablet, maybe smaller height. */
        height: auto;
    }

    .prod-main-image-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .prod-gallery-wrapper {
        flex-direction: column-reverse;
    }

    .prod-thumbs-col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        height: auto;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .prod-thumbs-list {
        flex-direction: row;
    }

    .prod-thumb-item {
        width: 70px;
        aspect-ratio: 1/1.2;
        flex-shrink: 0;
    }
}

/* PHASE 5: PRICE DISPLAY */
.prod-price-container {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #777;
    margin-bottom: 2px;
    font-weight: 500;
    order: 1;
    /* First */
}

.current-price-row {
    margin-bottom: 5px;
    order: 3;
    /* Third */
}

.current-price {
    font-size: 38px;
    /* Large and bold */
    font-weight: 700;
    color: #8B4513;
    /* SaddleBrown to match the requested "Brown/Gold" look */
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.old-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 2;
    /* Second */
    margin-bottom: 5px;
}

.market-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.discount-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

/* PHASE 4: PREMIUM UX (VARIANTS & TABS) */

/* --- Action Group Container --- */
.prod-actions-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f1f1f1;
}

/* --- Quantity Selector --- */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    /* Theme Standard */
    height: 50px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s;
    padding: 0;
}

.qty-selector:hover {
    border-color: #ccc;
}

.qty-btn {
    width: 45px;
    height: 100%;
    border: none;
    background: #f9f9f9;
    font-size: 18px;
    cursor: pointer;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    border-radius: 0;
    /* Flat inside */
}

.qty-btn:hover {
    background: #eee;
    color: #000;
}

.qty-input {
    width: 50px;
    height: 100%;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: transparent;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* --- Add to Cart Button --- */
.add-to-cart-btn {
    flex: 2;
    height: 50px;
    background: var(--color-primary);
    /* Use Theme Primary */
    color: #fff;
    border: none;
    border-radius: 4px;
    /* Theme Standard */
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.add-to-cart-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn i {
    font-size: 18px;
}

/* --- Favorite Button --- */
.fav-btn {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    /* Theme Standard */
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.fav-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #fff0f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* --- Variant Buttons (Premium) --- */
.var-group {
    margin-bottom: 25px;
}

.var-group label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.var-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.var-btn {
    min-width: 60px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: #fff;
    color: #333;
    padding: 0 20px;
    border-radius: 30px;
    /* Pill */
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Gap for color dot */
    transition: all 0.2s ease;
}

.var-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #fff;
}

/* Active: Primary Color Pill */
.var-btn.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Color Dot Style (Dynamic JS) */
.var-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
}

/* Size Buttons: Slightly different sizing */
.var-size-btn {
    min-width: 50px;
    padding: 0 15px;
}

/* Disabled State: More Distinct */
.var-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f0f0f0;
    /* Darker gray background */
    border-color: #ddd;
    color: #aaa;
    pointer-events: none;
    text-decoration: line-through;
    position: relative;
}

/* Specific Border for Disabled Size Buttons */
.var-size-btn.disabled {
    border: 1px solid #bbb !important;
    /* Force darker border */
}

/* Optional: Diagonal line for extra visibility */
.var-btn.disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: #999;
    transform: rotate(-10deg);
}


/* --- TABS SECTION --- */
.prod-bottom-tabs {
    margin-top: 70px;
    border-top: 1px solid #f0f0f0;
    padding-top: 50px;
}

.prod-tabs-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    justify-content: center;
    /* Centered Tabs */
}

.prod-tabs-nav li {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    padding-bottom: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prod-tabs-nav li:hover {
    color: #333;
}

.prod-tabs-nav li.active {
    color: var(--color-primary);
    font-weight: 700;
}

.prod-tabs-nav li.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
    max-width: 900px;
    margin: 0 auto;
    /* Centered Content */
    text-align: left;
}

.tab-pane.active {
    display: block;
}

.prod-tab-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

/* Product Description Styling (Premium Layout) */
.prod-description-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px;
    background: #fcfcfc;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    letter-spacing: 0.3px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    font-family: var(--font-primary, 'Urbanist', sans-serif);
}

.prod-description-content p {
    margin-bottom: 25px;
}

.prod-description-content strong {
    color: #222;
    font-weight: 700;
}

.prod-description-content ul,
.prod-description-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.prod-description-content li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .prod-description-content {
        padding: 20px;
        font-size: 15px;
        line-height: 1.7;
        margin-top: 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .prod-actions-area {
        flex-wrap: wrap;
        margin-top: 20px;
        gap: 10px;
        /* Consistent gap */
    }

    .qty-selector {
        width: calc(100% - 62px);
        /* 100% minus fav-btn width (50px + 2px border) and gap (10px) */
        margin-bottom: 0;

        /* First */
    }

    .prod-actions-area .qty-selector .qty-btn,
    .prod-actions-area .qty-selector .qty-input {
        width: 33.333% !important;
        flex: 1 !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .fav-btn {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;

        /* Second (Next to Qty) */
        background: #fff;
    }

    .add-to-cart-btn {
        width: 100%;
        min-width: 100%;
        height: 48px;
        margin-top: 5px;
        /* Spacing from top row */

        /* Third (New Row) */
    }

    .prod-bottom-tabs {
        margin-top: 30px;
        padding-top: 20px;
    }

    .prod-tabs-nav {
        gap: 15px;
        flex-wrap: wrap;
        border-bottom: none;
        padding-bottom: 5px;
        justify-content: center;
    }

    .prod-tabs-nav li {
        border: 1px solid #eee;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        margin-bottom: 0;
    }

    .prod-tabs-nav li.active {
        background: var(--color-primary);
        color: #fff;
        border-color: var(--color-primary);
    }

    .prod-tabs-nav li.active::after {
        display: none;
    }
}

/* --- Tab Badge --- */
.tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin-left: 6px;
    line-height: 1;
    vertical-align: middle;
}

/* --- REVIEW SYSTEM --- */
.review-summary-panel {
    display: flex;
    gap: 40px;
    padding: 30px;
    background: #fafafa;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.review-score-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    flex-shrink: 0;
}

.review-score-number {
    font-size: 48px;
    font-weight: 800;
    color: #222;
    line-height: 1;
    font-family: 'Urbanist', sans-serif;
}

.review-score-stars {
    display: flex;
    gap: 3px;
    margin: 8px 0 6px;
    font-size: 16px;
    color: #f59e0b;
}

.review-count-label {
    font-size: 13px;
    font-weight: 500;
    color: #888;
}

.review-bars-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.review-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-bar-label {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    min-width: 45px;
    text-align: right;
    white-space: nowrap;
}

.review-bar-label i {
    color: #f59e0b;
    font-size: 11px;
}

.review-bar-track {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

.review-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.review-bar-pct {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    min-width: 36px;
    text-align: right;
}

/* Review List */
.review-list {
    margin-bottom: 35px;
}

.review-item {
    padding: 22px 0;
    border-bottom: 1px solid #f0f0f0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-item-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    font-family: 'Urbanist', sans-serif;
}

.review-item-meta {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.review-item-name {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.review-item-date {
    font-size: 12px;
    color: #aaa;
    margin-top: 1px;
}

.review-item-stars {
    display: flex;
    gap: 2px;
    font-size: 13px;
    color: #f59e0b;
}

.review-item-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Empty State */
.review-empty {
    text-align: center;
    padding: 50px 20px;
    color: #bbb;
}

.review-empty i {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.review-empty p {
    font-size: 15px;
    font-weight: 500;
    color: #999;
}

/* Review Form */
.review-form-section {
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.review-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 560px;
}

.review-form-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-form-rating>label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin: 0;
}

/* Interactive Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 22px;
    color: #ddd;
    transition: color 0.15s ease;
    margin: 0;
    padding: 0;
}

.star-rating-input input:checked~label,
.star-rating-input label:hover,
.star-rating-input label:hover~label {
    color: #f59e0b;
}

.review-form-field textarea {
    width: 100%;
    min-height: 100px;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
    color: #333;
    resize: vertical;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.review-form-field textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.review-submit-btn {
    align-self: flex-start;
    padding: 12px 28px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Urbanist', sans-serif;
    transition: opacity 0.2s;
}

.review-submit-btn:hover {
    opacity: 0.85;
}

/* Login Prompt */
.review-login-prompt {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.review-login-prompt i {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
    color: #ccc;
}

.review-login-prompt p {
    font-size: 14px;
    font-weight: 500;
}

.review-login-prompt a {
    color: var(--color-primary);
    font-weight: 700;
    text-decoration: none;
}

.review-login-prompt a:hover {
    text-decoration: underline;
}

/* No Content Message */
.no-content-msg {
    text-align: center;
    color: #bbb;
    font-weight: 500;
    padding: 30px 0;
}

/* Review Mobile */
@media (max-width: 576px) {
    .review-summary-panel {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .review-score-box {
        min-width: auto;
    }

    .review-score-number {
        font-size: 36px;
    }

    .tab-pane {
        max-width: 100%;
    }

    .review-item {
        padding: 20px 15px;
        /* Add horizontal padding */
        background: #fff;
    }

    .review-item-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .review-form {
        max-width: 100%;
    }
}

/* --- RECOMMENDED PRODUCTS SECTION --- */
.recommended-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    padding-bottom: 40px;
}

.recommended-header {
    text-align: center;
    margin-bottom: 35px;
}

.recommended-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0;
    font-family: 'Urbanist', sans-serif;
}

.recommended-divider {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .recommended-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .recommended-products-section {
        margin-top: 30px;
        padding-top: 20px;
    }

    .recommended-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* --- RECOMMENDED PRODUCTS SECTION --- */
.recommended-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    padding-bottom: 40px;
}

.recommended-header {
    text-align: center;
    margin-bottom: 35px;
}

.recommended-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0;
    font-family: 'Urbanist', sans-serif;
}

.recommended-divider {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .recommended-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .recommended-products-section {
        margin-top: 30px;
        padding-top: 20px;
    }

    .recommended-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* --- CART PAGE POLISH --- */

/* Variant Display */
.bubs-variant-row {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bubs-var-sep {
    color: #ccc;
    margin: 0 8px;
    font-weight: 300;
}

.bubs-item-variant {
    font-weight: 500;
    color: #555;
    /* Ensure label and value are distinguishable if needed, but plain text is fine */
}


/* Horizontal Quantity Selector */
.bubs-cart-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
    /* Space from variants */
    background-color: #fff;
    height: 36px;
}

.bubs-cart-qty-selector .qty-btn {
    width: 32px;
    height: 100%;
    border: none;
    background: #f9f9f9;
    color: #555;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.bubs-cart-qty-selector .qty-btn:hover {
    background: #eee;
    color: #000;
}

.bubs-cart-qty-selector .qty-input {
    width: 40px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    /* Remove borders as container has one */
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    -moz-appearance: textfield;
}

.bubs-cart-qty-selector .qty-input::-webkit-outer-spin-button,
.bubs-cart-qty-selector .qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Trash Icon */
.bubs-delete-btn {
    font-size: 18px;
    color: #999;
    transition: all 0.2s ease;
    padding: 5px;
}

.bubs-delete-btn:hover {
    color: var(--color-primary);
    /* Standard Red or match Theme Primary */
    transform: scale(1.1);
}

/* Coupon Section */
.btn-coupon-custom-style {
    background-color: #333;
    /* Dark default */
    color: #fff;
    border: none;
    padding: 0 20px;
    font-weight: 500;
    transition: all 0.3s;
    height: 45px;
    /* Match input height usually */
    border-radius: 0 4px 4px 0;
}

.btn-coupon-custom-style:hover {
    background-color: var(--color-primary);
    /* Theme Color */
    color: #fff !important;
    /* Ensure text ensures visible */
}

/* Coupon Input Container */
#coupon-form .d-flex {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for visibility */
    border-radius: 4px;
}

#coupon-form input[name="kod"] {
    height: 45px;
    border: 1px solid #e1e1e1;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding-left: 15px;
}

#coupon-form input[name="kod"]:focus {}

/* --- RECOMMENDED PRODUCTS SECTION --- */
.recommended-products-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    padding-bottom: 40px;
}

.recommended-header {
    text-align: center;
    margin-bottom: 35px;
}

.recommended-title {
    font-size: 22px;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 12px 0;
    font-family: 'Urbanist', sans-serif;
}

.recommended-divider {
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.recommended-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.recommended-grid>.product-card {
    width: calc((100% - 80px) / 5);
}

@media (max-width: 1200px) {
    .recommended-grid>.product-card {
        width: calc((100% - 60px) / 4);
    }
}

@media (max-width: 992px) {
    .recommended-grid>.product-card {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 768px) {
    .recommended-grid {
        gap: 12px;
    }

    .recommended-grid>.product-card {
        width: calc((100% - 12px) / 2);
    }

    .recommended-products-section {
        margin-top: 30px;
        padding-top: 20px;
    }

    .recommended-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* =========================================
   VARIANT POPUP STYLES
   Product card renk-beden seÃ§im popup'Ä±
   ========================================= */

.variant-popup {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.variant-popup.active {
    display: block;
    animation: vpSlideUp 0.25s ease-out;
}

@keyframes vpSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vp-inner {
    background: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    padding: 14px 16px 16px;
    max-height: 280px;
    overflow-y: auto;
}

.vp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.vp-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary, #333);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vp-close {
    font-size: 20px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.vp-close:hover {
    background: #f0f0f0;
    color: #333;
}

.vp-section {
    margin-bottom: 12px;
}

.vp-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Renk ButonlarÄ± */
.vp-color-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.vp-color-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 11px;
    color: #555;
}

.vp-color-btn:hover {
    border-color: #aaa;
}

.vp-color-btn.active {
    border-color: var(--color-primary, #333);
    background: #fafafa;
    font-weight: 600;
    color: var(--color-primary, #333);
}

.vp-color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    display: none;
}

.vp-color-name {
    white-space: nowrap;
    max-width: 60px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Beden ButonlarÄ± */
.vp-size-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.vp-size-btn {
    min-width: 38px;
    height: 32px;
    padding: 0 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: #444;
    transition: all 0.2s;
    text-align: center;
}

.vp-size-btn:hover:not(.vp-oos) {
    border-color: #999;
}

.vp-size-btn.active {
    border-color: var(--color-primary, #333);
    background: var(--color-primary, #333);
    color: #fff;
    font-weight: 600;
}

.vp-size-btn.vp-oos {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
    pointer-events: none;
}

/* Sepete Ekle Butonu */
.vp-add-btn {
    width: 100%;
    height: 38px;
    border: none;
    border-radius: 8px;
    background: var(--color-primary, #333);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.vp-add-btn:hover:not(:disabled) {
    opacity: 0.9;
    transform: translateY(-1px);
}

.vp-add-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.vp-add-btn i {
    font-size: 13px;
}

/* Mobil uyumluluk */
@media (max-width: 480px) {
    .vp-inner {
        padding: 10px 12px 12px;
        max-height: 240px;
    }

    .vp-color-name {
        display: none;
    }

    .vp-color-btn {
        padding: 4px;
    }

    .vp-size-btn {
        min-width: 34px;
        height: 30px;
        font-size: 11px;
    }
}

/* ================================================================= */
/* PROMO IMAGES SECTION (TanÄ±tÄ±m GÃ¶rselleri)                         */
/* ================================================================= */

.promo-images-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.promo-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between rows */
}

.promo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between items in a row */
    width: 100%;
}

.promo-item {
    flex: 1;
    /* Distribute space equally */
    position: relative;
    overflow: hidden;
    min-width: 0;
    /* Prevent flex item from overflowing */
}

/* Specific column overrides if needed, but flex:1 handles most cases */

.promo-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    /* Rounded corners */
}

.promo-img-container {
    width: 100%;
    position: relative;
    /* Aspect ratio handling could go here, but usually images define height */
}

.promo-img-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

/* Hover Effect */
.promo-item:hover .promo-img-container img {
    transform: scale(1.05);
}

/* Optional Overlay */
.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.promo-item:hover .promo-overlay {
    opacity: 1;
}

.promo-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* MOBIL RESPONSIVE */
@media (max-width: 768px) {
    .promo-row {
        gap: 10px;
    }

    .promo-images-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (max-width: 576px) {
    /* On small mobile, maybe we want to force 2 per row even if config says 4? 
       Or stack them? Let's try to respect "flex: 1" but add a min-width logic 
       so they wrap if too small. */

    .promo-row {
        flex-wrap: wrap;
    }

    .promo-item {
        /* Force 50% width on mobile for better visibility, 
           or 100% if it was a single item row */
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }

    /* If a row had only 1 item, it should stay 100% */
    .promo-cols-1 .promo-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Automatic Aspect Ratios based on Column Count */
/* Automatic Aspect Ratios based on Column Count */
.promo-cols-1 .promo-img-container {
    /* Enforce a banner-like aspect ratio to match the height of 2-column rows */
    aspect-ratio: 32 / 9;
    width: 100%;
}

.promo-cols-2 .promo-img-container {
    aspect-ratio: 16 / 9;
}

.promo-cols-3 .promo-img-container {
    aspect-ratio: 4 / 3;
    /* or 1/1 depending on preference */
}

.promo-cols-4 .promo-img-container,
.promo-cols-5 .promo-img-container,
.promo-cols-6 .promo-img-container {
    aspect-ratio: 3 / 4;
}

/* Ensure images cover the area */
.promo-img-container {
    height: 100%;
}

.promo-img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* STRICT COLUMN WIDTHS - Replaced by Inline Styles for Desktop */
/* We keep default behavior as fallback */

/* On Mobile, force stack or 2-col */
@media (max-width: 768px) {
    .promo-row {
        /* Disable the flex row behavior if needed, or allow wrap */
    }

    .promo-item {
        /* Override inline styles for mobile */
        flex: 0 0 calc(50% - 10px) !important;
        max-width: calc(50% - 10px) !important;
        height: auto !important;
        /* Reset calculated heights */
        aspect-ratio: auto !important;
        /* Allow natural or fixed ratio */
    }

    .promo-img-container {
        aspect-ratio: 16/9;
        /* Enforce standard ratio on mobile for consistency */
    }
}

@media (max-width: 576px) {
    .promo-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .promo-img-container {
        aspect-ratio: 3/2;
        /* Slightly taller on mobile */
    }
}

/* On Mobile, simplify to 2 columns max for readability */
@media (max-width: 768px) {

    .promo-cols-3 .promo-item,
    .promo-cols-4 .promo-item,
    .promo-cols-5 .promo-item,
    .promo-cols-6 .promo-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .promo-img-container {
        aspect-ratio: 3/2;
        /* Slightly taller on mobile */
    }
}

/* ================================================================= */
/* COMMENT BANNER SECTION (Yorum Banner)                             */
/* ================================================================= */

.comment-banner-section {
    position: relative;
    /* Allows user to separate it visually */
}

.comment-banner-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-banner-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.comment-banner-link img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 35px;
    /* Optional: Limit max-height to ensure it's banner-like */
    /* max-height: 400px; object-fit: cover; */
}

@media (max-width: 576px) {

    /* For smaller screens, maybe 2 col is still okay or 1 col? */
    /* Let's keep 2 col pattern but adjust for smaller gap if needed */
    .promo-cols-2 .promo-item,
    .promo-cols-3 .promo-item,
    .promo-cols-4 .promo-item,
    .promo-cols-5 .promo-item,
    .promo-cols-6 .promo-item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
}

/* Empty Cart Icon - User Request */
.cart-empty-basket-icon {
    font-size: 80px;
    color: var(--color-primary, #704831);
    margin: 0 auto 2rem auto;
    display: block;
    width: fit-content;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.cart-empty-basket-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Ensure Variant Popup Color Name is Visible on Mobile */
@media (max-width: 991px) {
    .vp-color-name {
        display: inline-block !important;
        font-size: 12px !important;
        margin-left: 5px !important;
        color: #333 !important;
    }

    .vp-color-btn {
        width: auto !important;
        padding-right: 10px !important;
    }

    /* Fix Mobile Double Click Issue - Ensure Fav Button is Visible */
    .card-fav-btn {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        z-index: 20 !important;
        pointer-events: auto !important;
    }
}

/* =========================================
   COMMENTS PAGE REDESIGN
   ========================================= */

/* Hero Section */
.comments-hero {
    background-color: var(--color-bg-light, #F3E5DC);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.comments-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading, 'Cinzel', serif);
    font-size: 3rem;
    color: var(--color-primary, #5D001E);
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-family: var(--font-primary, 'Urbanist', sans-serif);
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary, #5D001E);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #777;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #eee;
}

.stat-stars i {
    color: var(--color-action, #D4AF37);
    font-size: 1rem;
    margin: 0 1px;
}

/* Comments Section & Grid */
.comments-section {
    padding: 60px 0;
    background-color: #fff;
}

.comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.comment-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-accent, #F3E5DC);
}

/* Card Header */
.card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #f9f9f9;
    background: transparent;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-accent, #F3E5DC);
    color: var(--color-primary, #5D001E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.user-meta {
    flex: 1;
}

.user-name {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.comment-date {
    font-size: 0.8rem;
    color: #999;
}

.card-rating {
    display: flex;
    gap: 2px;
}

.card-rating i {
    font-size: 0.8rem;
    color: #ddd;
}

.card-rating i.filled {
    color: var(--color-action, #D4AF37);
}

/* Card Body */
.card-body {
    padding: 20px;
    flex: 1;
}

.comment-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Card Footer (Product Link) */
.card-footer-product {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
    text-decoration: none;
    gap: 15px;
    transition: background-color 0.2s ease;
}

.card-footer-product:hover {
    background-color: var(--color-accent, #F3E5DC);
}

.product-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
    overflow: hidden;
    text-align: left;
}

.product-label {
    display: block;
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.product-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.product-action {
    color: var(--color-primary, #5D001E);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.card-footer-product:hover .product-action {
    opacity: 1;
    transform: translateX(0);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 0;
}

.empty-icon {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .comments-hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .comments-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ORDER HISTORY (SipariÅŸlerim) DESIGN
   ========================================= */

.orders-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.order-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #e0e0e0;
}

.order-card-header {
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: background 0.2s;
}

.order-card-header:hover {
    background: #f9f9f9;
}

.order-card-header[aria-expanded="true"] {
    background: #fdfdfd;
    border-bottom-color: #eee;
}

.order-header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* Header Boxes */
.order-id-box .label,
.order-date-box .label,
.order-total-box .label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.order-id-box .value {
    font-weight: 700;
    color: var(--color-primary, #333);
    font-size: 15px;
}

.order-date-box .value {
    color: #555;
    font-size: 14px;
}

.order-total-box .value {
    font-weight: 700;
    color: #333;
    font-size: 15px;
}

/* Status Badges */
.order-status-badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.status-warning {
    background-color: #fff8e1;
    color: #f59e0b;
}

.status-success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-danger {
    background-color: #fee2e2;
    color: #ef4444;
}

.status-secondary {
    background-color: #f3f4f6;
    color: #4b5563;
}

/* Toggle Icon */
.order-toggle-icon {
    margin-left: auto;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #777;
    transition: transform 0.3s;
}

.order-card-header[aria-expanded="true"] .order-toggle-icon {
    transform: rotate(180deg);
    background: var(--color-primary, #333);
    color: #fff;
}

/* Card Body */
.order-card-body {
    padding: 25px;
    background: #fcfcfc;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

/* Products Grid */
.order-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.order-product-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.op-image {
    width: 90px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #f1f1f1;
    flex-shrink: 0;
}

.op-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.op-details {
    flex: 1;
    min-width: 0;
}

.op-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.4;
}

.op-title a {
    color: #333;
    transition: color 0.2s;
}

.op-title a:hover {
    color: var(--color-primary, #333);
}

.op-variant {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.op-meta {
    font-size: 13px;
    color: #555;
}

.op-total {
    font-weight: 700;
    font-size: 15px;
    color: #333;
    margin-left: 10px;
}

.order-divider {
    height: 1px;
    background: #eee;
    margin: 25px 0;
}

/* Info Grid */
.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.order-info-col {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.info-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.info-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.cargo-info {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    font-size: 13px;
}

.cargo-label {
    font-weight: 600;
    color: #333;
}

.cargo-value {
    color: #555;
    margin-left: 5px;
}

/* Summary Row */
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 14px;
}

.summary-row.total {
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary, #333);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-header-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .order-toggle-icon {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .order-products-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ACCOUNT DETAILS (KullanÄ±cÄ± Bilgileri) DESIGN
   ========================================= */

.account-section-card {
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.account-section-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--color-primary, #333);
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.account-details-form .form-group {
    margin-bottom: 20px;
}

.account-details-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 13px;
    display: block;
}

.account-details-form label .required {
    color: #e53935;
    margin-left: 2px;
}

.account-details-form .form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    padding: 0 18px;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
    background: #fff;
}

.account-details-form textarea.form-control {
    height: auto;
    padding: 15px;
    resize: vertical;
}

.account-details-form .form-control:focus {
    border-color: var(--color-primary, #333);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.03);
    outline: none;
}

.btn-fill-out {
    background-color: var(--color-primary, #333);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-fill-out:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .account-section-card {
        padding: 20px;
    }
}

/* =========================================
   CATEGORY PAGE DESIGN
   ========================================= */

/* Empty State */
.empty-category-container {
    padding: 60px 40px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 15px;
    margin: 30px 0;
}

.empty-state-icon-box {
    width: 80px;
    height: 80px;
    background: var(--color-primary, #333);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transform: rotate(-10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.empty-state-icon-box i {
    font-size: 40px;
    color: #fff;
    transform: rotate(10deg);
}

.empty-cat-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.4;
}

.empty-cat-text {
    font-size: 15px;
    color: #666;
    max-width: 400px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-empty-cat {
    background: transparent;
    border: 2px solid var(--color-primary, #333);
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-empty-cat:hover {
    background: var(--color-primary, #333);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Product Card Redesign (Category Page) */
.product-card .product-info {
    text-align: center;
    padding: 15px 10px 5px !important;
}

.product-card .product-title {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.product-card .product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
    line-height: 1.4;
    height: 38px;
    /* Fixed height for 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-card .product-price {
    justify-content: center !important;
}

/* Badges */
.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
    pointer-events: none;
}

.product-badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.product-badge.out-of-stock {
    background: #333;
    color: #fff;
}

.product-badge.discount-badge {
    background: var(--color-primary, #704831);
    color: #fff;
    position: static;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Override existing page specific styles that might interfere */
.product-cart-wrap .product-content-wrap {
    text-align: center;
}

/* User Request: Mobile Product Card Adjustments */
@media (max-width: 768px) {

    /* Equal Height Cards */
    .product-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    /* Fixed Image Aspect Ratio */
    .product-image {
        aspect-ratio: 3 / 4 !important;
        height: auto !important;
        flex-shrink: 0 !important;
    }

    /* Fill Image Container */
    .product-image img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    /* Flexible Content Area to Push Price Down */
    .product-info {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding-bottom: 10px !important;
    }

    .product-info-bottom {
        justify-content: center !important;
        margin-top: auto !important;
        /* Forces price to bottom */
    }

    .product-badges {
        top: 10px !important;
        left: 10px !important;
        bottom: auto !important;
    }

    /* Reserve space for Brand Title so Product Name aligns perfectly */
    .product-card .product-title {
        min-height: 15px !important;
    }

    /* If Brand Title is missing (Product Name is first child), add phantom margin */
    .product-info>.product-name:first-child {
        margin-top: 17px !important;
        /* 15px min-height + 2px margin-bottom */
    }

    /* Add to Cart Button Always Visible on Mobile */
    .bubs-cart-trigger {
        opacity: 1 !important;
        transform: translateY(0) !important;
        background: rgba(255, 255, 255, 0.95) !important;
        z-index: 20 !important;
    }

    /* Prevent Price Wrapping (TL Symbol) */
    .product-price .price-sale,
    .product-price .price-original {
        white-space: nowrap !important;
        display: inline-block !important;
    }
}

/* Contact Page Redesign */
.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

@media (min-width: 992px) {
    .contact-info-card {
        margin-right: 20px;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item .icon-box {
    width: 48px;
    height: 48px;
    background: #f4f6fa;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-box {
    background: var(--color-primary);
    color: #fff;
}

.contact-details h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.social-connect h5 {
    font-weight: 700;
    font-size: 16px;
}

.social-icons-list {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #f4f6fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #444;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-icon.facebook:hover {
    background: #3b5998;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.instagram:hover {
    background: #e1306c;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-control-modern {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ececec;
    padding: 0 20px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    background: #fbfbfb;
}

.form-control-modern:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
    outline: none;
}

.textarea-modern {
    height: 150px;
    padding: 20px;
    resize: none;
}

.submit-btn {
    background: var(--color-primary);
    color: #fff;
    border: none;
    height: 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
}

.submit-btn:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-map-wrapper {
    height: 450px;
    width: 100%;
    margin-top: 50px;
}

.contact-map-frame {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.contact-map-frame:hover {
    filter: grayscale(0%);
}

/* Review Page Redesign */
.review-card-modern {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.review-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
    color: #333;
}

.rating-stars {
    color: #f59e0b;
    font-size: 12px;
}

.review-date {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.review-body {
    margin-bottom: 20px;
}

.review-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.review-product {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.review-product .product-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: color 0.2s;
}

.review-product .product-link:hover {
    color: var(--color-primary);
}

.review-product img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.review-product span {
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.stats-card-modern {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f5f5f5;
}

.stat-box {
    text-align: center;
}

.stat-box .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-box .label {
    font-size: 14px;
    color: #777;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-card-modern {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

/* Updated Contact Page Styles */
.contact-item {
    display: block;
    /* Changed from flex to block for new layout */
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-header h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: #2c3e50;
    margin-left: 0;
}

.contact-item .icon-box {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    background: transparent;
    border: 1px solid #eee;
    color: var(--color-primary);
}

.contact-details {
    padding-left: 60px;
    /* Indent details to align under title */
}

.contact-details p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Submit Button */
.submit-btn-custom {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    height: 55px;
    border-radius: 8px;
    /* Rounded radius */
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn-custom:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced Reviews Page Redesign */
.review-card-modern {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.review-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.05);
}

.review-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 15px;
}

.author-meta {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #a17359 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 14px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(var(--color-primary-rgb), 0.3);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-badge {
    color: #10b981;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.review-date-badge {
    font-size: 12px;
    color: #999;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-rating {
    color: #fbbf24;
    font-size: 13px;
    letter-spacing: 1px;
}

.review-body {
    position: relative;
    flex-grow: 1;
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 40px;
    color: var(--color-primary);
    opacity: 0.05;
    z-index: 0;
}

.review-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.review-footer {
    margin-top: auto;
    padding-top: 5px;
}

.review-product-link {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.review-product-link:hover {
    background: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-product-link .product-thumb {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
    border: 1px solid #eee;
}

.review-product-link .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-mini {
    flex-grow: 1;
    overflow: hidden;
}

.product-info-mini .label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.product-info-mini .name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-product-link .action-icon {
    color: var(--color-primary);
    font-size: 16px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.review-product-link:hover .action-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Stats Card Modern */
.stats-card-modern {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: 1px solid #eee;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.stat-icon.purchase {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.stat-icon.star {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    line-height: 1.1;
}

.stat-label {
    font-size: 14px;
    color: #777;
    font-weight: 500;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 80px;
    background: #eee;
}

.stat-stars {
    color: #fbbf24;
    font-size: 14px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .stats-card-modern {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
        align-items: flex-start;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-item {
        width: 100%;
    }
}


/* =========================================
   CONTACT PAGE REDESIGN
   ========================================= */

.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Left Side: Contact Info (Dark/Brand Theme) */
.contact-info-modern {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3e2b26 100%);
    padding: 60px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Decorative Circle Overlay */
.contact-info-modern::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.contact-info-modern::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.info-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff !important;
    position: relative;
    z-index: 2;
}

.info-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 50px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    color: #fff !important;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.c-item {
    display: flex;
    align-items: flex-start;
}

.c-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.c-item .content h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
}

.c-item .content p,
.c-item .content p a {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    text-decoration: none;
}

.social-connect-modern {
    margin-top: auto;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.social-connect-modern h5 {
    font-size: 14px;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.sc-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sc-icon:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Right Side: Contact Form */
.contact-form-modern-wrapper {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.form-desc {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

/* Floating Label Form */
.form-group.floating-label {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating-label .form-control {
    height: 55px;
    padding: 20px 15px 5px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    font-size: 15px;
    width: 100%;
    transition: all 0.2s ease;
}

.form-group.floating-label textarea.form-control {
    height: auto;
    padding: 25px 15px 5px;
}

.form-group.floating-label label {
    position: absolute;
    top: 18px;
    left: 15px;
    font-size: 15px;
    color: #999;
    transition: all 0.2s ease;
    pointer-events: none;
    font-weight: 500;
}

/* Active State for Inputs */
.form-group.floating-label .form-control:focus,
.form-group.floating-label .form-control:not(:placeholder-shown) {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.form-group.floating-label .form-control:focus~label,
.form-group.floating-label .form-control:not(:placeholder-shown)~label {
    top: 8px;
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
}

.btn-modern-submit {
    background: var(--color-primary);
    color: #fff;
    border: none;
    height: 55px;
    padding: 0 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.2);
    width: auto;
}

.btn-modern-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--color-primary-rgb), 0.3);
    filter: brightness(1.1);
}

/* Full Width Map */
.contact-map-full {
    height: 350px;
}

/* Product Actions - Universal styles */
.fav-btn i.fas.fa-heart {
    color: var(--color-primary) !important;
}

.prod-actions-area .fav-btn {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.prod-actions-area .fav-btn:hover {
    border-color: var(--color-primary);
    background: #fdfaf8;
}

/* Mobile Product Page Adjustments */
@media (max-width: 768px) {

    /* Hide Breadcrumbs */
    .prod-breadcrumb-container {
        display: none !important;
    }

    /* Reduce top spacing since breadcrumb is gone */
    .prod-main-wrapper {
        padding-top: 10px !important;
    }

    /* Action Buttons in One Row */
    .prod-actions-area {
        display: grid !important;
        grid-template-columns: 100px 1fr 50px !important;
        /* Qty - Add - Fav */
        gap: 10px !important;
        align-items: center !important;
    }

    .prod-actions-area .qty-selector {
        width: 100% !important;
        margin: 0 !important;
    }

    .prod-actions-area .add-to-cart-btn {
        width: 100% !important;
        margin: 0 !important;
        font-size: 14px !important;
        /* Adjust font if needed to fit */
        white-space: nowrap;
        padding: 0 5px !important;
    }

    .prod-actions-area .fav-btn {
        width: 100% !important;
        /* Becomes full column in grid on mobile */
    }

}