
/* Filter Sidebar */
.form-check-input:checked {
    background-color: hsl(var(--primary-color));
    border-color: hsl(var(--primary-color));
}
.breadcrumb-item a {
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #fff !important;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    transition: var(--transition);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Main content */
.sidebar {
    position: sticky;
    top: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-5px);
}

.card-header.bg-gradient-primary {
    background: var(--gradient-primary);
}

.card-header.bg-gradient-secondary {
    background: var(--gradient-accent);
}

.filter-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.filter-form .form-control,
.filter-form .form-select {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 10px 15px;
}

.apply-btn {
    background: var(--gradient-primary);
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.apply-btn:hover {
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.reset-btn {
    border: 1px solid #dee2e6;
}

/* Mobile filters offcanvas */
.offcanvas.glass-bg {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-input {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination .page-link {
    border-radius: 50px !important;
    margin: 0 5px;
    border: none;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .product-image {
        height: 160px;
    }
    
    
    .quantity-control {
        order: 1;
    }
    
    .cart-btn {
        order: 2;
        flex: 1;
    }
    
    .wishlist-btn {
        order: 3;
        flex: none;
        width: 100%;
        margin-top: 10px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


.shape1 {
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
}

.shape2 {
    bottom: -40px;
    right: 10%;
    width: 80px;
    height: 80px;
}

.shape3 {
    top: 50%;
    left: 80%;
    width: 60px;
    height: 60px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

/* Cart Items */
.cart-item {
    background: hsl(var(--surface-color));
    transition: var(--transition);
}
.cart-item:hover {
    background: hsl(var(--background-color));
}

.btn-add-to-cart {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.wishlist-btn {
    background: transparent;
    border: 1px solid #dee2e6;
    color: #495057;
}

.wishlist-btn:hover {
    background: #fff5f5;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.wishlist-btn.active {
    background: #fff5f5;
    border-color: #ff6b6b;
    color: #ff6b6b;
}



.modern-input {
    border-radius: 0.375rem !important;
    padding: 1rem 1rem !important;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

.input-group-text {
    border-radius: 0.375rem 0 0 0.375rem !important;
}


.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.trendy-quantity-group {
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 80%;
    background: hsl(var(--background-color));
    border: 1px solid hsl(var(--border-color));
}
.quantity-btn {
    width: 38px;
    height: 38px;
}

.quantity-input {
    min-width: 1px;
    width: 100%;
    height: 38px;
    -moz-appearance: textfield;
}

@media (max-width: 576px) {
    .trendy-quantity-group {
        max-width: 100%;
    }
    .quantity-btn {
        width: 32px;
        height: 32px;
    }
    .quantity-input {
        height: 32px;
    }
}

.new-products-section {
    overflow: hidden;
}

/* Glass Effect */
.glass-effect {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px 0 rgba(255, 92, 168, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}


/* Product Card */
.product-card {
    font-size: 0.9rem;
    font-weight: 400;
    background: hsla(var(--surface-color), 0.95);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-6px) scale(1.025);
}

.product-badges {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge-new,
.badge-discount {
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    padding: 0.3em 0.8em;
    display: inline-flex;
    align-items: center;
    color: white;
}
.badge-new {
    background: var(--gradient-secondary);
}
.badge-discount {
    background: var(--gradient-danger);
}

.tag-badge {
    background: hsl(var(--background-color));
    color: hsl(var(--primary-color));
    border-radius: 0.8em;
    font-size: 0.75rem;
    padding: 0.2em 0.7em;
    border: 1px solid hsl(var(--border-color));
    font-weight: 500;
    transition: all 0.2s ease;
}
.tag-badge:hover {
    background: hsl(var(--primary-color));
    color: hsl(var(--background-color));
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: hsl(var(--text-secondary));
    margin-right: 0.4em;
}
.price {
    font-size: 1.15rem;
    font-weight: 700;
    color: hsl(var(--primary-color));
}

.stock-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: hsl(var(--accent-color));
    background: hsl(var(--accent-color) / 0.12);
    padding: 0.25em 0.8em;
    border-radius: 0.7em;
    display: flex;
    align-items: center;
    gap: 0.3em;
}



.daily-picks-image {
    background: hsl(var(--background-color-light));
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    overflow: hidden;
}

.daily-picks-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em;
    margin-top: 0.5rem;
}

.daily-picks-actions {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.daily-picks-section {
    background: linear-gradient(145deg, hsl(var(--background-color)), hsl(var(--background-color-light)));
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.daily-picks-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary-color));
    margin-bottom: 1rem;
}

.daily-picks-subtitle {
    font-size: 1.1rem;
    color: hsl(var(--text-secondary));
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.daily-picks-shop-btn {
    display: inline-block;
    background: hsl(var(--primary-color));
    color: hsl(var(--background-color));
    border-radius: 50px;
    transition: all 0.3s ease;
}

.daily-picks-shop-btn:hover {
    background-color: hsl(var(--primary-color) / 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.daily-picks-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
    animation: float 10s infinite ease-in-out;
}

.daily-picks-swiper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
}

.swiper-button-next,
.swiper-button-prev {
    color: hsl(var(--primary-color));
    transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: hsl(var(--primary-color) / 0.8);
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}



/* Advanced, modern, standout product card styles */
.advanced-trendy-products-section {

    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.advanced-trendy-products-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}
.advanced-trendy-products-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
}
.advanced-trendy-products-section .section-subtitle {
    color: hsl(var(--text-secondary));
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.advanced-trendy-products-section .product-card-advanced {
    font-size: 0.5rem;
    font-weight: 200;
    background: hsla(var(--surface-color), 0.95);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
    position: relative;
    overflow: visible;
    border: none;
    min-height: 420px;
    margin: 0 10px;
}
.advanced-trendy-products-section .product-card-advanced:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: var(--shadow-heavy);
    z-index: 2;
}
.advanced-trendy-products-section .product-badges-advanced {
    
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.advanced-trendy-products-section .product-badges-advanced .badge {
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 1rem;
    padding: 0.45em 1.1em;
    box-shadow: 0 2px 8px hsla(var(--secondary-color), 0.10);
    letter-spacing: 0.02em;
}
.advanced-trendy-products-section .badge-advanced-new {
    background: linear-gradient(90deg, hsl(var(--accent-color)) 0%, hsl(var(--accent-color)) 100%);
    color: #fff;
}
.advanced-trendy-products-section .badge-advanced-discount {
    background: var(--gradient-danger);
    color: #fff;
}
.advanced-trendy-products-section .product-image-advanced {
    background: linear-gradient(135deg, hsl(var(--border-color)) 0%, hsl(var(--background-color)) 100%);
    border-radius: 1.25rem;
    overflow: hidden;
    min-height: 180px;
    max-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    box-shadow: 0 2px 12px hsla(var(--secondary-color), 0.07);
}
.advanced-trendy-products-section .product-image-advanced img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 8px hsla(var(--secondary-color), 0.08));
}
.advanced-trendy-products-section .product-card-advanced:hover .product-image-advanced img {
    transform: scale(1.07) rotate(-2deg);
}
.advanced-trendy-products-section .card-title-advanced {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: hsl(var(--text-primary));
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.advanced-trendy-products-section .rating-stars-advanced i {
    font-size: 1rem;
    margin-right: 0.05em;
}
.advanced-trendy-products-section .product-tags-advanced {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}
.advanced-trendy-products-section .tag-badge-advanced {
    font-size: 1.1rem;
    font-weight: 600;
    background: hsl(var(--border-color));
    color: hsl(var(--light-color));
    font-size: 0.85rem;
    border-radius: 0.75rem;
    padding: 0.2em 0.8em;
    font-weight: 600;
}
.advanced-trendy-products-section .price-advanced {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(var(--secondary-color));
}
.advanced-trendy-products-section .old-price-advanced {
    font-size: 0.9rem;
    font-weight: 500;
    color: hsl(var(--text-secondary));
    text-decoration: line-through;
    margin-right: 0.5em;
}
.advanced-trendy-products-section .stock-badge-advanced {
    font-size: 0.80rem;
    font-weight: 400;
    border-radius: 1rem;
    padding: 0.3em 1em;
    background: hsl(var(--accent-color), 0.12);
    color: hsl(var(--accent-color));
    border: 1px solid hsl(var(--accent-color), 0.25);
}
.advanced-trendy-products-section .stock-badge-advanced.out {
    background: hsl(var(--danger-color), 0.10);
    color: hsl(var(--danger-color));
    border: 1px solid hsl(var(--danger-color), 0.18);
}
.advanced-trendy-products-section .product-actions-advanced {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.advanced-trendy-products-section .floating-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.13;
    pointer-events: none;
    filter: blur(2px);
}
.advanced-trendy-products-section .floating-shape.shape1 {
    top: -60px; left: -60px;
    width: 180px; height: 180px;
    background: radial-gradient(circle at 40% 40%, hsl(var(--secondary-color)) 0%, transparent 80%);
    border-radius: 50%;
}
.advanced-trendy-products-section .floating-shape.shape2 {
    bottom: -80px; right: -80px;
    width: 220px; height: 220px;
    background: radial-gradient(circle at 60% 60%, hsl(var(--primary-color)) 0%, transparent 80%);
    border-radius: 50%;
}
.advanced-trendy-products-section .floating-shape.shape3 {
    top: 30%; right: 10%;
    width: 90px; height: 90px;
    background: radial-gradient(circle at 50% 50%, hsl(var(--tertiary-color)) 0%, transparent 80%);
    border-radius: 50%;
}

/* Swiper styles */
.advanced-trendy-products-section .swiper-container {
    padding: 20px 0;
}
.advanced-trendy-products-section .swiper-slide {
    height: auto;
}
.advanced-trendy-products-section .swiper-button-next,
.advanced-trendy-products-section .swiper-button-prev {
    background-color: hsla(var(--surface-color), 0.95);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    color: hsl(var(--text-primary));
    transition: all 0.3s ease;
}
.advanced-trendy-products-section .swiper-button-next:hover,
.advanced-trendy-products-section .swiper-button-prev:hover {
    transform: scale(1.1);
    background-color: hsl(var(--primary-color));
    color: white;
}
.advanced-trendy-products-section .swiper-button-next::after,
.advanced-trendy-products-section .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}
.advanced-trendy-products-section .swiper-pagination-bullet {
    background: hsl(var(--text-secondary));
    opacity: 0.5;
}
.advanced-trendy-products-section .swiper-pagination-bullet-active {
    background: hsl(var(--primary-color));
    opacity: 1;
}

.product-container {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.product-gallery-container {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    background-color: #fff;
}

.main-image-wrapper {
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    padding: 10px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumbs .thumb {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    border-color: var(--bs-primary);
    transform: scale(1.05);
}

.gallery-thumbs .thumb img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.color-options .color-option {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 2px solid #ccc;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.color-options .color-option:hover,
.color-options .color-option.active {
    border-color: var(--bs-primary);
    transform: scale(1.1);
}

.object-cover {
    object-fit: cover;
}

/* Animation بسيطة */
.details-card,
.details-extra-box,
.details-tags .details-tag,
.details-heart-btn {
  transition: all 0.3s ease-in-out;
}

/* عند تمرير الماوس */
.details-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .details-title {
    font-size: 1.5rem;
  }

  .details-price-wrapper {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .details-heart-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .details-extra-box {
    padding: 10px;
    flex-direction: column;
    text-align: center;
  }

  .details-extra-box i {
    margin-bottom: 0.5rem;
    margin-right: 0 !important;
  }
}


/* Base Card Styles */
.shop-card-container {
    --card-padding: 1rem;
    --card-radius: 0.5rem;
    --image-height: 180px;
    --transition-speed: 0.2s;
}
.shop-card {
    position: relative;
    background-color: hsl(var(--surface-color));
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--shadow-light);
    border: 1px solid hsl(var(--border-color) / 0.3);
}
.shop-card:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}
/* Badges */
.shop-card-badges {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.shop-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}
.shop-badge-new {
    background-color: hsl(var(--accent-color));
}
.shop-badge-discount {
    background-color: hsl(var(--danger-color));
}
/* Image Section */
.shop-card-image-link {
    display: block;
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
}
.shop-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 1rem;
    transition: transform var(--transition-speed) ease;
}
.shop-card:hover .shop-card-image {
    transform: scale(1.05);
}
.shop-card-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--background-color));
    color: hsl(var(--text-secondary));
}
.shop-card-image-placeholder i {
    margin-bottom: 0.5rem;
}
/* Card Body */
.shop-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.shop-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: hsl(var(--text-primary));
    margin-bottom: 0.5rem;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8rem;
    line-height: 1.4;
}
.shop-card-title:hover {
    color: hsl(var(--primary-color));
}
/* Rating */
.shop-card-rating {
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
.shop-star-filled {
    color: hsl(var(--tertiary-color));
    font-size: 0.8rem;
}
.shop-star-empty {
    color: hsl(var(--border-color));
    font-size: 0.8rem;
}
/* Tags */
.shop-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin: 0.5rem 0;
}
.shop-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    background-color: hsl(var(--background-color));
    color: hsl(var(--text-secondary));
    border-radius: 0.2rem;
    text-decoration: none;
    border: 1px solid hsl(var(--border-color));
}
.shop-tag:hover {
    background-color: hsl(var(--border-color) / 0.2);
}
/* Price */
.shop-card-price {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.shop-current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: hsl(var(--primary-color));
}
.shop-old-price {
    font-size: 0.9rem;
    color: hsl(var(--text-secondary));
    text-decoration: line-through;
}
/* Stock Status */
.shop-stock-status {
    font-size: 0.8rem;
    color: hsl(var(--accent-color));
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
/* Buttons Container */
.shop-card-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
/* Responsive Adjustments */
@media (min-width: 768px) {
    .shop-card-title {
        font-size: 1rem;
    }
    
    .shop-card-buttons {
        flex-direction: row;
    }
}


.rating-input {
    direction: rtl; /* عشان نبدأ النجوم من اليمين */
    display: flex;
    justify-content: flex-start;
    gap: 5px;
}
.rating-input input[type="radio"] {
    display: none;
}
.rating-input label {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}
.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #FFD700; /* اللون الذهبي */
}
/* لما النجم يكون محدد */
.rating-input input[type="radio"]:checked + label,
.rating-input input[type="radio"]:checked + label ~ label {
    color: #FFD700;
}
/* Product Tabs */
.nav-tabs .nav-link {
    border: none;
    color: hsl(var(--text-secondary));
    font-weight: 500;
    padding: 12px 20px;
}
.nav-tabs .nav-link.active {
    color: hsl(var(--l-color));
    border-bottom: 3px solid hsl(var(--primary-color));
    background: transparent;
}
