/* Wedday Paket Sistemi CSS */

/* Paket Seçimi Ana Container */
.wedday-packages-container {
    margin-bottom: 30px;
}

/* Paket Yükleme */
.wedday-loading-packages {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-size: 16px;
}

.wedday-loading-packages::before {
    content: '⏳';
    display: block;
    font-size: 32px;
    margin-bottom: 15px;
}

.wedday-packages-title {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.wedday-packages-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #EEAC32;
    margin-right: 10px;
    border-radius: 2px;
}

/* Paket Kartları Grid */
.wedday-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* Paket Kartı */
.wedday-package-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px 10px;
    padding: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

#page_content_wrapper .inner .sidebar_content ul, .page_content_wrapper .inner .sidebar_content ul {
    margin-left: 0px !important;
}

.wedday-package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #EEAC32, #FFB74D);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wedday-package-card:hover {
    border-color: #EEAC32;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(238, 172, 50, 0.15);
}

.wedday-package-card:hover::before {
    transform: scaleX(1);
}

.wedday-package-card.selected {
    background: #FFF8E1;
    border-color: #EEAC32;
    box-shadow: 0 4px 15px rgba(238, 172, 50, 0.2);
}

.wedday-package-card.selected::before {
    transform: scaleX(1);
}

/* Paket Başlığı */
.wedday-package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.wedday-package-name {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.wedday-package-description {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Paket Fiyatı */
.wedday-package-price {
    text-align: center;
    margin-bottom: 20px;
    padding: 6px;
    background: linear-gradient(135deg, #EEAC32, #FFB74D);
    border-radius: 8px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.wedday-package-price::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.wedday-package-card:hover .wedday-package-price::before {
    animation: wedday-shine 0.6s ease-in-out;
}

@keyframes wedday-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Hizmet Listesi */
.wedday-package-services {
    margin-bottom: 20px;
}

.wedday-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wedday-service-item-pk {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f8f9fa;
}

.wedday-service-item-pk:last-child {
    border-bottom: none;
}

.wedday-service-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 12px;
    font-weight: bold;
}

.wedday-service-icon.included {
    background: #d4edda;
    color: #155724;
}

.wedday-service-icon.excluded {
    background: #f8d7da;
    color: #721c24;
}

.wedday-service-text {
    flex: 1;
    color: #2c3e50;
}

.wedday-service-text.included {
    color: #155724;
}

.wedday-service-text.excluded {
    color: #721c24;
    text-decoration: line-through;
}

/* Seçim Göstergesi */
.wedday-package-selection {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wedday-package-card.selected .wedday-package-selection {
    background: #EEAC32;
    border-color: #EEAC32;
    color: white;
}

.wedday-package-selection::after {
    content: '✓';
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wedday-package-card.selected .wedday-package-selection::after {
    opacity: 1;
}

/* Paket Özeti */
.wedday-package-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
    display: none !important;
}

.wedday-package-summary-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.wedday-package-summary-title::before {
    content: '📦';
    margin-right: 8px;
    font-size: 18px;
}

.wedday-selected-package {
    background: #FFF8E1;
    border: 2px solid #EEAC32;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.wedday-selected-package-name {
    color: #E65100;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.wedday-selected-package-price {
    color: #EEAC32;
    font-size: 20px;
    font-weight: 700;
}

/* Paket Karşılaştırma */
.wedday-package-comparison {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

.wedday-comparison-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.wedday-comparison-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.wedday-comparison-content {
    padding: 20px;
}

.wedday-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.wedday-comparison-table th,
.wedday-comparison-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.wedday-comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.wedday-comparison-table td {
    color: #6c757d;
}

.wedday-comparison-table .wedday-package-name {
    font-weight: 600;
    color: #2c3e50;
}

.wedday-comparison-table .wedday-package-price {
    font-weight: 700;
    color: #EEAC32;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .wedday-packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wedday-package-card {
        padding: 20px;
    }
    
    .wedday-package-price {
        font-size: 20px;
    }
    
    .wedday-package-name {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .wedday-package-card {
        padding: 15px;
    }
    
    .wedday-package-price {
        font-size: 18px;
        padding: 12px;
    }
    
    .wedday-service-item-pk {
        font-size: 13px;
    }
}

/* Animasyonlar */
@keyframes wedday-package-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.wedday-package-card.selected {
    animation: wedday-package-bounce 0.6s ease-in-out;
}

/* Paket Seçimi Geçişi */
.wedday-package-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Özel Paket Stilleri */
.wedday-package-card.premium {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFF8E1, #ffffff);
}

.wedday-package-card.premium .wedday-package-price {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.wedday-package-card.basic {
    border-color: #6c757d;
}

.wedday-package-card.basic .wedday-package-price {
    background: linear-gradient(135deg, #6c757d, #495057);
}

/* Paket Özellikleri */
.wedday-package-features {
    margin-top: 15px;
}

.wedday-feature-badge {
    display: inline-block;
    background: #EEAC32;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wedday-feature-badge.popular {
    background: #dc3545;
    animation: wedday-pulse 2s infinite;
}

@keyframes wedday-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

/* Paket Seçimi Yardımcı Metni */
.wedday-package-help {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #1565c0;
    font-size: 14px;
    text-align: center;
}

.wedday-package-help::before {
    content: '💡';
    margin-right: 8px;
    font-size: 16px;
}
.wedday-package-fty {
    background: #fde3e3;
    border: 1px solid #fbbbbb;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    color: #b01212;
    font-size: 14px;
    text-align: center;
}

.wedday-package-fty::before {
    content: ' ✨';
    margin-right: 8px;
    font-size: 16px;
}