/* Special Offers and Category Boxes CSS */

/* ===== ÖZEL TEKLİFLER BÖLÜMÜ ===== */
.ozel-teklifler-section-hash {
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
}

.ozel-teklifler-section-hash .section-title-hash {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #333;
}

.ozel-teklifler-grid-hash {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.ozel-teklif-card-hash {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ozel-teklif-card-hash:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ozel-teklif-card-hash::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 0 0 20px 20px;
}

/* Ürün Resmi - Hash'li Class'lar */
.product-image-hash {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Sayaç Overlay - Hash'li Class'lar */
.countdown-overlay-hash {
    position: relative;
    margin-bottom: 20px;
}

.countdown-overlay-content-hash {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 15px 15px;
    border-radius: 0 0 12px 12px;
}

/* Geri Sayım Sayacı - Hash'li Class'lar */
.countdown-timer-hash {
    text-align: center;
    margin-bottom: 25px;
}

.countdown-overlay-hash .countdown-timer-hash {
    margin-bottom: 0;
}

.countdown-display-hash {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin-bottom: 5px;
}

.countdown-number-hash {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    min-width: 30px;
    text-align: center;
}

.countdown-separator-hash {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.countdown-label-hash {
    display: block;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
}

/* Kart Başlığı - Hash'li Class'lar */
.card-title-hash {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
    flex: 0 0 auto;
}

/* SÜPER TEKLİF Başlığı - Hash'li Class'lar */
.super-offer-title-hash {
    color: #ff6700;
    font-size: 12px;
    margin-bottom: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-content-hash {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-display-hash {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

/* Ortak Stiller - Hash'li Class'lar */
.offer-details-hash {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.offer-details-hash h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.product-name-hash {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.offer-text-hash {
    font-size: 12px;
    color: #888;
    margin-bottom: 0;
}

.welcome-text-hash {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

.product-specs-hash {
    font-size: 12px;
    color: #888;
    margin-bottom: 0;
}

/* ===== KATEGORİ KUTUCUKLARI ===== */
.quick-category-bar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.quick-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.category-item {
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease;
}

.quick-category-grid:hover .category-item {
    opacity: 0.6;
}

.quick-category-grid .category-item:hover {
    opacity: 1;
}

.category-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(45deg, #81c784, #388e3c);
    background-origin: border-box;
    background-clip: content-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-title {
    font-size: 12px;
    font-weight: 500;
    display: block;
}

/* ===== RESPONSIVE TASARIM ===== */

/* Özel Teklifler Responsive */
@media (max-width: 768px) {
    .ozel-teklifler-grid-hash {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ozel-teklif-card-hash {
        min-height: 380px;
        padding: 20px;
    }
    
    .product-image-hash {
        height: 180px;
    }
    
    .countdown-overlay-content-hash {
        padding: 15px 10px 10px;
    }
    
    .countdown-number-hash {
        padding: 3px 6px;
        font-size: 12px;
        min-width: 25px;
    }
    
    .countdown-separator-hash {
        font-size: 12px;
    }
    
    .countdown-label-hash {
        font-size: 10px;
    }
    
    .card-title-hash {
        font-size: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .ozel-teklifler-grid-hash {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ozel-teklif-card-hash:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Kategori Kutucukları Responsive */
@media (min-width: 901px) {
    .quick-category-grid {
        gap: 20px;
    }

    .category-image {
        width: 80px;
        height: 80px;
    }

    .category-title {
        font-size: 14px;
    }
}

/* Kategori Kutucuklarını Desktop'ta Gizle */
@media (min-width: 769px) {
    .quick-category-bar {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .quick-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .category-image {
        width: 50px;
        height: 50px;
    }
    
    .category-title {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .quick-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-image {
        width: 45px;
        height: 45px;
    }
    
    .category-title {
        font-size: 10px;
    }
} 