/* ============================================
   SİTE RENKLERİ İLE MODERN EFEKTLER
   ============================================ */

:root {
    /* Site Ana Renkleri */
    --cinali-yellow: #ffda00;
    --cinali-yellow-dark: #e6c400;
    --cinali-yellow-light: #ffdf91;
    --cinali-dark: #333;
    --cinali-gray: #666;
    --cinali-light-gray: #999;
    --cinali-bg: #eaeaea;
}

/* ============================================
   MODERN BUTONLAR - CIN ALI RENKLERİ
   ============================================ */

/* Primary Button - Sarı */
.btn-cinali-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cinali-yellow) 0%, var(--cinali-yellow-dark) 100%);
    color: var(--cinali-dark);
    box-shadow: 0 4px 15px rgba(255, 218, 0, 0.4);
}

.btn-cinali-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 218, 0, 0.6);
    color: var(--cinali-dark);
    background: linear-gradient(135deg, var(--cinali-yellow-dark) 0%, var(--cinali-yellow) 100%);
}

/* Dark Button */
.btn-cinali-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--cinali-dark) 0%, var(--cinali-gray) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(51, 51, 51, 0.4);
}

.btn-cinali-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(51, 51, 51, 0.6);
    color: white;
}

/* Outline Yellow Button */
.btn-cinali-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--cinali-yellow);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--cinali-dark);
}

.btn-cinali-outline:hover {
    background: var(--cinali-yellow);
    color: var(--cinali-dark);
    box-shadow: 0 8px 25px rgba(255, 218, 0, 0.4);
    transform: translateY(-2px);
}

/* Shimmer Effect */
.btn-cinali-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-cinali-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-cinali-shimmer:hover::before {
    left: 100%;
}

/* Glass Effect */
.btn-cinali-glass {
    background: rgba(255, 218, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 218, 0, 0.3);
    color: var(--cinali-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cinali-glass:hover {
    background: rgba(255, 218, 0, 0.2);
    border-color: rgba(255, 218, 0, 0.5);
    transform: translateY(-2px);
    color: var(--cinali-dark);
}

/* Small Size */
.btn-cinali-sm {
    padding: 8px 20px;
    font-size: 14px;
    border-radius: 6px;
}

/* Large Size */
.btn-cinali-lg {
    padding: 16px 40px;
    font-size: 18px;
    border-radius: 10px;
}

/* ============================================
   SOSYAL MEDYA BUTONLARI - CIN ALI STİLİ
   ============================================ */

.btn-cinali-social {
    width: 45px;
    height: 45px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: var(--cinali-yellow);
    color: var(--cinali-dark);
    border: 2px solid transparent;
}

.btn-cinali-social:hover {
    background: var(--cinali-dark);
    color: var(--cinali-yellow);
    border-color: var(--cinali-yellow);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 218, 0, 0.4);
}

/* ============================================
   GRADIENT TEXT - CIN ALI RENKLERİ
   ============================================ */

.text-cinali-gradient {
    background: linear-gradient(135deg, var(--cinali-yellow) 0%, var(--cinali-yellow-dark) 50%, var(--cinali-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.text-cinali-glow {
    color: var(--cinali-yellow);
    text-shadow: 0 0 10px rgba(255, 218, 0, 0.8), 0 0 20px rgba(255, 218, 0, 0.5);
    animation: cinaliGlowPulse 2s ease-in-out infinite;
}

@keyframes cinaliGlowPulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 218, 0, 0.8), 0 0 20px rgba(255, 218, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 218, 0, 1), 0 0 30px rgba(255, 218, 0, 0.8);
    }
}

/* ============================================
   BACK TO TOP BUTTON - CIN ALI STİLİ
   ============================================ */

.back-to-top-cinali {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cinali-yellow) 0%, var(--cinali-yellow-dark) 100%);
    color: var(--cinali-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 218, 0, 0.4);
    border: 2px solid var(--cinali-dark);
}

.back-to-top-cinali.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top-cinali:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 218, 0, 0.6);
    background: var(--cinali-dark);
    color: var(--cinali-yellow);
}

/* ============================================
   GLASS CARD - CIN ALI STİLİ
   ============================================ */

.glass-card-cinali {
    background: rgba(255, 218, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 218, 0, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card-cinali:hover {
    background: rgba(255, 218, 0, 0.1);
    border-color: rgba(255, 218, 0, 0.4);
    box-shadow: 0 12px 40px rgba(255, 218, 0, 0.2);
    transform: translateY(-5px);
}

/* ============================================
   SHADOW EFFECTS - CIN ALI RENKLERİ
   ============================================ */

.shadow-cinali-yellow {
    box-shadow: 0 10px 40px rgba(255, 218, 0, 0.4);
}

.shadow-cinali-dark {
    box-shadow: 0 10px 40px rgba(51, 51, 51, 0.4);
}

/* ============================================
   ARAMA ÇUBUĞU - MODERN
   ============================================ */

.search-box-modern {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box-modern input {
    width: 100%;
    padding: 15px 60px 15px 25px;
    border: 2px solid var(--cinali-yellow);
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-box-modern input:focus {
    outline: none;
    border-color: var(--cinali-yellow-dark);
    box-shadow: 0 6px 25px rgba(255, 218, 0, 0.3);
    transform: translateY(-2px);
}

.search-box-modern button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--cinali-yellow);
    color: var(--cinali-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box-modern button:hover {
    background: var(--cinali-dark);
    color: var(--cinali-yellow);
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   HEADER DÜKKAN LİNKİ - MODERN
   ============================================ */

.header-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--cinali-yellow) 0%, var(--cinali-yellow-dark) 100%);
    color: var(--cinali-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 218, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 30px;
    margin-right: 20px;
    z-index: 10;
    font-size: 14px;
}

.header-shop-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.header-shop-link:hover::before {
    left: 100%;
}

.header-shop-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 218, 0, 0.5);
    color: var(--cinali-dark);
}

.header-shop-link i {
    font-size: 18px;
}

/* Pulse Animation */
.header-shop-link-pulse {
    animation: shopLinkPulse 2s ease-in-out infinite;
}

@keyframes shopLinkPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 218, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 218, 0, 0.6);
    }
}

/* Büyük ekranlarda daha sağa kaydır */
@media (min-width: 992px) {
    .header-shop-link {
        margin-left: 40px;
        margin-right: 25px;
    }
}

@media (min-width: 1200px) {
    .header-shop-link {
        margin-left: 50px;
        margin-right: 30px;
    }
}

/* ============================================
   PROGRESS BAR - CIN ALI RENKLERİ
   ============================================ */

.progress-bar-cinali {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
}

.progress-bar-cinali-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--cinali-yellow) 0%, var(--cinali-yellow-dark) 100%);
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 218, 0, 0.5);
}

/* ============================================
   FORM INPUTS - MODERN
   ============================================ */

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="url"],
.form textarea,
.form select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--cinali-yellow);
    box-shadow: 0 0 0 3px rgba(255, 218, 0, 0.1);
}

.form__submit {
    border: none !important;
    cursor: pointer;
}

.form__title {
    color: var(--cinali-dark);
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* ============================================
   MOBILE MENU SHOP LINK - CIN ALI STİLİ
   ============================================ */

.menu__item .menu__link i.fa-shopping-bag {
    margin-right: 8px;
    font-size: 20px;
}

.menu__item:has([href*="alisveris"]) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 218, 0, 0.3);
}

.menu__item .menu__link[href*="alisveris"] {
    background: linear-gradient(135deg, var(--cinali-yellow) 0%, var(--cinali-yellow-dark) 100%);
    color: var(--cinali-dark) !important;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 218, 0, 0.4);
    transition: all 0.3s ease;
}

.menu__item .menu__link[href*="alisveris"]:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(255, 218, 0, 0.6);
}

/* ============================================
   MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 991px) {
    /* Mobil cihazlarda header'daki dükkan butonunu gizle (mobil menüde var) */
    .header-shop-link {
        display: none !important;
    }

    /* Mobil header düzeni - Logo sol, hamburger sağ */
    .header__inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .header__logo {
        order: 1;
        margin-right: auto !important;
    }

    .header__nav {
        display: none !important;
    }

    .header__menu-toggle {
        order: 3;
        margin-left: auto !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .btn-cinali-primary,
    .btn-cinali-dark,
    .btn-cinali-outline {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-cinali-lg {
        padding: 14px 30px;
        font-size: 16px;
    }

    .btn-cinali-social {
        width: 40px;
        height: 40px;
    }

    .menu__item .menu__link[href*="alisveris"] {
        padding: 10px 20px;
        font-size: 16px;
    }
}
