:root {
    --prime-color: #0e3475;
    --prime-light: #1a4a9f;
    --secondary-color: #f5f7fa;
    --border-color: #e0e6ed;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.play-btn {
    width: 62px;
    height: 44px;
    border: none;
    outline: none;
    border-radius: 15px;
    background: red;
}

.main-bg {
    background: var(--main) !important
}

.product-main {
    direction: rtl;
    min-height: 100vh;
}

.breadcrumb-nav {
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: var(--text-light);
    transition: color 0.3s;
}

.breadcrumb-link:hover {
    color: var(--prime-color);
}

.product-container {
    align-items: flex-start;
}

.product-gallery {
    min-width: 400px;
}

.gallery-main-image {
    object-fit: cover;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
}

.gallery-thumbnails {
    overflow-x: auto;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail-item.active {
    border-color: var(--prime-color);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-category-tag {
    display: inline-block;
}

.category-badge {
    background-color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    color: var(--prime-color);
    font-weight: 600;
}

.hashtag-badge {
    background-color: #f0f6ff;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    color: var(--prime-color);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}



.product-description {
    line-height: 1.6;
}

.colors-container {
    flex-wrap: wrap;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.color-option.active {
    border-color: var(--prime-color);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--prime-color);
}

.product-option-label {

    color: var(--text-dark);
}

.custom-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.custom-btn.active {
    background-color: var(--prime-color);
    color: white;
    border-color: var(--prime-color);
}

.custom-btn:hover {
    border-color: var(--prime-color);
}
.benefit-item i {
    color: #2D8AB1
}

.details-tabs {
    display: flex;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.details-tab-btn {
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1rem;
    color: var(--text-light);
    cursor: pointer;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.details-tab-btn.active {
    color: var(--prime-color);
}

.details-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    height: 2px;
    background-color: var(--prime-color);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(180deg, #000000 0%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
}

.specifications-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.spec-row {
    display: flex;
    padding: 1rem;
    background-color: #F0F6FF;
    border-radius: 1rem;
    gap: 1rem;
}

@media screen (max-width:456px) {
    .spec-row:nth-child(odd) {
        background-color: #FAFDFF;
    }
}


.spec-label {
    font-weight: 600;
    color: var(--main);
    width: 40%;
}

.spec-value {
    color: var(--main);
    flex: 1;
}



.rating-score {
    font-size: 2.5rem;

    color: var(--main);
}

.rating-breakdown {
    margin-top: 1.5rem;
}

.breakdown-row {
    margin-bottom: 1rem;
}

.breakdown-label {
    font-size: 1rem;
    width: 60px;
    color: var(--sec)
}

.breakdown-count {
    font-size: 1rem;
    color: #2D8AB1;
    min-width: 40px;
    text-align: right;
}

.rate-text-input {
    border: 1px solid #ededed !important;
    outline: none
}

.rate-text-input:focus {
    box-shadow: none !important
}

.progress {
    height: 8px;
    background-color: #e0e0e0;
}

.progress-bar {
    background: #2D8AB1;
    border-radius: 5px;
}


.review-avatar {
    width: 50px;
    height: 50px;
}

.review-username {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--main);
}

.review-rating-stars {
    color: #F9C771;
    font-size: 1.3rem;
    display: flex;
    gap: 12px
}

.review-text {
    font-size: 1.32rem;
    color: var(--sec);
    line-height: 1.6;
}

.rating-star {
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-star.active,
.rating-star:hover {
    color: #F9C771;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
}

.product-card-image {
    overflow: hidden;
    aspect-ratio: 1;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-category {
    color: var(--text-light);
}

.product-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.product-card-rating {
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .product-container {
        flex-direction: column;
    }

    .product-gallery {
        min-width: 100%;
    }

    .specifications-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.25rem;
    }

    .details-tabs {
        gap: 1rem;
    }

    .details-tab-btn {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }
}