@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&display=swap');

/* 
   CHRISTMAS RENK PALETİ:
   - Koyu Yeşil: #1d351d
   - Orta Yeşil: #325632
   - Ana Kırmızı (Açık): #a11d23
   - Koyu Kırmızı: #8b181d
   - Bej/Altın: #e6be9a
*/

.gc-xmas-banner {
    background: linear-gradient(135deg, #a11d23 0%, #8b181d 50%, #a11d23 100%);
    border: 2px solid rgba(230, 190, 154, 0.5);
    border-radius: 12px;
    padding: 28px 36px;
    font-family: 'Urbanist', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4), 
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(161, 29, 35, 0.4);
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
}

.gc-xmas-banner *, 
.gc-xmas-banner *::before, 
.gc-xmas-banner *::after {
    box-sizing: border-box;
}

.gc-xmas-snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.gc-xmas-snowflake {
    position: absolute;
    top: -20px;
    color: #fff;
    opacity: 0;
    animation: gc-xmas-snowfall linear infinite;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

@keyframes gc-xmas-snowfall {
    0% { 
        opacity: 0; 
        transform: translateY(-20px) rotate(0deg) translateX(0); 
    }
    10% { 
        opacity: 0.95; 
    }
    90% { 
        opacity: 0.8; 
    }
    100% { 
        opacity: 0; 
        transform: translateY(200px) rotate(360deg) translateX(30px); 
    }
}

.gc-xmas-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(230, 190, 154, 0.08) 0%, transparent 50%);
    pointer-events: none;
    animation: gc-xmas-shimmer 8s ease-in-out infinite;
    z-index: 0;
}

.gc-xmas-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d351d 0%, #325632 20%, #e6be9a 50%, #325632 80%, #1d351d 100%);
    opacity: 1;
    z-index: 1;
}

@keyframes gc-xmas-shimmer {
    0%, 100% { transform: rotate(0deg); opacity: 0.5; }
    50% { transform: rotate(5deg); opacity: 1; }
}

.gc-xmas-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.gc-xmas-left {
    flex: 1.2;
    min-width: 0;
}

.gc-xmas-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1d351d 0%, #325632 100%);
    border: 1px solid rgba(230, 190, 154, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 700;
    color: #e6be9a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 2px 10px rgba(29, 53, 29, 0.5);
}

.gc-xmas-badge-icon {
    font-size: 14px;
}

.gc-xmas-title {
    font-family: 'Urbanist', sans-serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    text-transform: none !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gc-xmas-title .gc-xmas-highlight {
    color: #e6be9a;
    position: relative;
    text-shadow: 0 2px 15px rgba(230, 190, 154, 0.5), 0 0 30px rgba(230, 190, 154, 0.3);
}

.gc-xmas-subtitle {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0 16px 0 !important;
    font-weight: 500 !important;
    padding: 0 !important;
}

/* Hediye Bilet Al Butonu */
.gc-xmas-gift-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e6be9a 0%, #d4a574 100%) !important;
    border: 2px solid #1d351d !important;
    color: #1d351d !important;
    font-family: 'Urbanist', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(230, 190, 154, 0.4) !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
}

.gc-xmas-gift-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(230, 190, 154, 0.6) !important;
    background: linear-gradient(135deg, #f0cba8 0%, #e6be9a 100%) !important;
    color: #1d351d !important;
}

.gc-xmas-gift-btn:active {
    transform: translateY(0);
}

.gc-xmas-gift-icon {
    font-size: 16px;
    animation: gc-xmas-gift-shake 2s ease-in-out infinite;
}

@keyframes gc-xmas-gift-shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.gc-xmas-center {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    border-left: 1px solid rgba(230, 190, 154, 0.3);
    border-right: 1px solid rgba(230, 190, 154, 0.3);
}

.gc-xmas-countdown-label {
    font-size: 11px;
    font-weight: 700;
    color: #e6be9a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gc-xmas-countdown {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gc-xmas-time-block {
    background: linear-gradient(180deg, #1d351d 0%, #325632 100%);
    border: 1px solid rgba(230, 190, 154, 0.4);
    border-radius: 8px;
    padding: 12px 14px;
    min-width: 58px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.gc-xmas-time-value {
    font-family: 'Urbanist', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #e6be9a;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 8px rgba(230, 190, 154, 0.4);
}

.gc-xmas-time-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    display: block;
}

.gc-xmas-expired {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #e6be9a;
    padding: 20px 0;
    text-shadow: 0 2px 10px rgba(230, 190, 154, 0.5);
}

.gc-xmas-right {
    flex: 0.9;
    text-align: center;
}

.gc-xmas-coupon-wrapper {
    background: linear-gradient(135deg, rgba(29, 53, 29, 0.4) 0%, rgba(50, 86, 50, 0.3) 100%);
    border: 2px dashed rgba(230, 190, 154, 0.6);
    border-radius: 10px;
    padding: 18px 22px;
    box-shadow: inset 0 0 20px rgba(29, 53, 29, 0.3);
}

.gc-xmas-coupon-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.gc-xmas-coupon-code {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #e6be9a;
    letter-spacing: 3px;
    margin-bottom: 14px;
    text-shadow: 0 2px 15px rgba(230, 190, 154, 0.5), 0 0 30px rgba(230, 190, 154, 0.3);
}

.gc-xmas-copy-btn {
    background: linear-gradient(135deg, #1d351d 0%, #325632 100%) !important;
    border: 2px solid rgba(230, 190, 154, 0.5) !important;
    color: #e6be9a !important;
    font-family: 'Urbanist', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(29, 53, 29, 0.5) !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-block !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
}

.gc-xmas-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 53, 29, 0.6) !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #325632 0%, #1d351d 100%) !important;
    border-color: #e6be9a !important;
}

.gc-xmas-copy-btn:active {
    transform: translateY(0);
}

.gc-xmas-copy-btn.gc-xmas-copied {
    background: linear-gradient(135deg, #e6be9a 0%, #d4a574 100%) !important;
    border-color: #1d351d !important;
    color: #1d351d !important;
    box-shadow: 0 4px 15px rgba(230, 190, 154, 0.5) !important;
}

/* Tablet */
@media (max-width: 992px) {
    .gc-xmas-banner { 
        padding: 24px 28px; 
        margin-left: 15px;
        margin-right: 15px;
    }
    .gc-xmas-container { gap: 20px; }
    .gc-xmas-title { font-size: 24px !important; }
    .gc-xmas-time-block { padding: 10px 12px; min-width: 50px; }
    .gc-xmas-time-value { font-size: 24px; }
    .gc-xmas-coupon-code { font-size: 18px; }
}

/* Mobil */
@media (max-width: 768px) {
    .gc-xmas-banner { 
        padding: 24px 20px; 
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 10px;
    }
    .gc-xmas-container { 
        flex-direction: column; 
        text-align: center; 
        gap: 24px; 
    }
    .gc-xmas-left { text-align: center; }
    .gc-xmas-badge { margin-left: auto; margin-right: auto; }
    .gc-xmas-title { 
        font-size: 26px !important; 
        line-height: 1.3 !important;
    }
    .gc-xmas-subtitle {
        margin-bottom: 14px !important;
    }
    .gc-xmas-gift-btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
    }
    .gc-xmas-center {
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(230, 190, 154, 0.3);
        border-bottom: 1px solid rgba(230, 190, 154, 0.3);
        padding: 20px 0;
        width: 100%;
    }
    .gc-xmas-countdown { gap: 10px; }
    .gc-xmas-time-block { padding: 14px 16px; min-width: 60px; }
    .gc-xmas-time-value { font-size: 26px; }
    .gc-xmas-right { width: 100%; }
    .gc-xmas-coupon-wrapper { padding: 20px; }
    .gc-xmas-coupon-code { font-size: 24px; }
    .gc-xmas-copy-btn { 
        width: 100%; 
        padding: 16px 28px !important; 
        font-size: 14px !important; 
    }
}

/* Küçük Mobil */
@media (max-width: 400px) {
    .gc-xmas-banner { 
        padding: 20px 16px; 
        margin-left: 10px;
        margin-right: 10px;
    }
    .gc-xmas-title { 
        font-size: 22px !important; 
        line-height: 1.35 !important;
    }
    .gc-xmas-countdown { gap: 6px; }
    .gc-xmas-time-block { padding: 12px 10px; min-width: 52px; }
    .gc-xmas-time-value { font-size: 22px; }
    .gc-xmas-time-label { font-size: 8px; }
    .gc-xmas-gift-btn {
        padding: 10px 18px !important;
        font-size: 12px !important;
    }
}
