/* ظاهر کلی سکشن فرصت طلایی */
.golden-deal-section {
    text-align: center;
    padding: 40px 15px;
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(255, 204, 0, 0.3);
    overflow: hidden;
    margin: 20px auto;
}

.golden-deal-title {
    font-size: 2em;
    font-weight: 900;
    color: #ffcc00;
    text-shadow: 0 0 8px #ffcc00;
    margin-bottom: 15px;
}

.golden-deal-timer {
    font-size: 1.3em;
    background: #ffcc00;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

.golden-deal-text {
    margin: 15px auto 25px;
    font-size: 1em;
    color: #ddd;
}

/* تنظیمات اسلایدر و محصولات */
.golden-deal-swiper-container {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 20px;
}

.golden-deal-products-wrapper {
    display: flex;
    justify-content: center !important; /* وسط‌چین کردن محصولات */
    align-items: center;
}

.golden-deal-item {
    text-align: center;
    padding: 4px;
}

.golden-deal-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50% !important; /* اضافه کردن !important */*/
    border: 4px solid #ffcc00; /* حاشیه طلایی ضخیم */
    padding: 6px;
    background: #1d1d1d; /* زمینه تیره پشت تصویر */
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5), 0 0 15px rgba(255, 204, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
    margin: 0 auto;
}

.golden-deal-item img:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.7), 0 0 25px rgba(255, 204, 0, 0.4);
}

.golden-deal-item-name {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1.2;
}

/* فلش‌های اسلایدر */
.swiper-button-prev,
.swiper-button-next {
    color: #ffcc00;
}

/* دکمه خرید */
.golden-deal-button-container {
    margin-top: 20px;
}

.golden-deal-btn {
    background: #e63946;
    color: #fff;
    padding: 10px 24px;
    font-size: 1em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
}

.golden-deal-btn:hover {
    background: #c92a3d;
}

/* استایل صفحه نمایش همه محصولات */
.golden-deal-products-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.golden-deal-page-title {
    text-align: center;
    margin-bottom: 30px;
}

.golden-deal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.golden-deal-product-card {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.golden-deal-product-card:hover {
    transform: translateY(-5px);
}

.golden-deal-product-card img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.golden-deal-product-title {
    font-size: 1em;
    color: #333;
    margin: 0;
}