/* Minimum Sipariş Bildirimi */
.min-order-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 10px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.min-order-notice i {
    margin-right: 8px;
    font-size: 16px;
}

/* Fırsat Ürünleri Geri Sayım */
.opportunity-countdown {
    margin-top: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.countdown-label {
    font-weight: 600;
    color: #e63946;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.countdown-label i {
    margin-right: 8px;
    font-size: 18px;
}

.countdown-timer {
    display: flex;
    justify-content: space-between;
}

.countdown-item {
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
    padding: 8px;
    min-width: 60px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.countdown-item span {
    display: block;
}

.countdown-item .days,
.countdown-item .hours,
.countdown-item .minutes,
.countdown-item .seconds {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.countdown-item .label {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

.countdown-expired {
    color: #e63946;
    font-weight: 600;
    text-align: center;
    font-size: 18px;
}

/* Paket Satış Modülü */
.package-detail {
    padding: 30px 0;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.package-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.package-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.package-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.package-price .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 18px;
}

.package-price .current-price {
    font-size: 24px;
    font-weight: 700;
    color: #e63946;
}

.package-price .discount-badge {
    background-color: #e63946;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: 600;
}

.add-package-to-cart-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.add-package-to-cart-btn:hover {
    background-color: #388e3c;
}

.add-package-to-cart-btn i {
    margin-right: 8px;
}

.package-products h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.package-products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-product-item {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.package-product-item .product-image {
    width: 100px;
    height: 100px;
    margin-right: 15px;
}

.package-product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.package-product-item .product-details {
    flex: 1;
}

.package-product-item .product-name {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.package-product-item .product-price {
    margin-bottom: 8px;
}

.package-product-item .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 14px;
}

.package-product-item .current-price {
    font-size: 16px;
    font-weight: 600;
    color: #e63946;
}

.package-product-item .product-quantity {
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-item .days,
    .countdown-item .hours,
    .countdown-item .minutes,
    .countdown-item .seconds {
        font-size: 16px;
    }
    
    .countdown-item .label {
        font-size: 10px;
    }
}