.banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb span {
    color: var(--accent-gold);
    margin-left: 5px;
}


/* Product Details Styles */
.product-details-section {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 40px 0;
}

.gallery-row {
    margin: 0 auto;
    max-width: 1200px;
    /* تحديد أقصى عرض للمعرض */
}

.gallery-item {
    padding: 10px;
}

.gallery-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 300px;
    /* ارتفاع ثابت للصور */
}

.gallery-img-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}



.gallery-img-container:hover .zoom-icon {
    opacity: 1;
}

.gallery-img-container:hover .overlay-icon {
    transform: scale(1);
}

.gallery-img-container:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .gallery-img-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-img-container {
        height: 200px;
    }

    .overlay-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.product-description-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-description-card p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}