/* ========================================
   PREMIUM FRONTEND ENHANCEMENTS
   Sadece Online Özel — Visual Upgrade v2
   ======================================== */

/* ===== Enhanced Countdown Timer ===== */
.countdown {
    font-family: 'Inter', -apple-system, sans-serif !important;
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    background: linear-gradient(135deg, #00BAD3 0%, #0088cc 50%, #006699 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 30px rgba(0, 186, 211, 0.3) !important;
}

.countdown-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    padding: 8px 12px !important;
    border-radius: 12px !important;
    min-width: 70px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: transform 0.3s ease !important;
}

.countdown-item:hover {
    transform: translateY(-3px) !important;
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.countdown-value {
    font-size: 28px !important;
    margin-bottom: 4px !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    font-variant-numeric: tabular-nums !important;
}

.countdown-label {
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 0.9 !important;
}

/* Kampanya bitiş banner */
div[style*="Kampanyanın bitmesine"] {
    background: linear-gradient(135deg, #00BAD3 0%, #0088cc 100%) !important;
    padding: 10px 0 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(0, 186, 211, 0.2) !important;
}

/* ===== Enhanced Product Cards ===== */
.swiper-slide.cursor-pointer {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}

.swiper-slide.cursor-pointer:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.swiper-slide.cursor-pointer img {
    transition: transform 0.5s ease !important;
}

.swiper-slide.cursor-pointer:hover img {
    transform: scale(1.05) !important;
}

/* ===== Product Image Hover ===== */
img[src*="assets/img/products"] {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

img[src*="assets/img/products"]:hover {
    transform: scale(1.03) !important;
    filter: brightness(1.05) !important;
}

/* ===== Enhanced Search Bar ===== */
#onlineSearchBar {
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

#onlineSearchBar:focus {
    box-shadow: 0 4px 20px rgba(0, 186, 211, 0.25) !important;
    border-color: #00BAD3 !important;
}

/* ===== Enhanced Buttons ===== */
.bg-brand-blue-primary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.bg-brand-blue-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 186, 211, 0.4) !important;
    transform: translateY(-2px) !important;
}

.bg-brand-blue-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.bg-brand-blue-primary:hover::after {
    left: 100%;
}

/* ===== Enhanced Category Bar ===== */
.flex.flex-row.justify-center.w-full .cursor-pointer {
    transition: all 0.3s ease !important;
    position: relative !important;
}

.flex.flex-row.justify-center.w-full .cursor-pointer:hover span {
    color: #00BAD3 !important;
    transform: translateY(-2px) !important;
    display: inline-block !important;
}

/* ===== Enhanced Sidebar Categories ===== */
.flex.items-center.overflow-hidden.cursor-pointer {
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    padding: 4px 8px !important;
}

.flex.items-center.overflow-hidden.cursor-pointer:hover {
    background: rgba(0, 186, 211, 0.08) !important;
    transform: translateX(4px) !important;
}

.flex.items-center.overflow-hidden.cursor-pointer:hover .transition-transform {
    transform: rotate(-90deg) !important;
}

/* ===== Enhanced Footer ===== */
.footer-desktop,
.footer-mobile {
    transition: all 0.3s ease !important;
}

.footer-desktop a,
.footer-mobile a {
    transition: all 0.2s ease !important;
}

.footer-desktop a:hover,
.footer-mobile a:hover {
    color: #00BAD3 !important;
    transform: translateX(3px) !important;
    display: inline-block !important;
}

/* ===== Enhanced Breadcrumb ===== */
.flex.flex-wrap .cursor-pointer {
    transition: all 0.2s ease !important;
}

.flex.flex-wrap .cursor-pointer:hover {
    color: #00BAD3 !important;
}

/* ===== Smooth Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00BAD3, #0088cc);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0088cc, #006699);
}

/* ===== Card Shadows ===== */
.bg-white.rounded-3xl {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease !important;
}

.bg-white.rounded-3xl:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1) !important;
}

/* ===== Cart Page Enhancements ===== */
.personaclick-recommend {
    margin-top: 20px !important;
}

/* ===== Sepet Sil Button Enhancement ===== */
.delete-product,
.delete-product2 {
    transition: all 0.3s ease !important;
    color: #e74c3c !important;
    font-weight: 500 !important;
}

.delete-product:hover,
.delete-product2:hover {
    color: #c0392b !important;
    transform: scale(1.1) !important;
}

/* ===== Mobile Menu Enhancement ===== */
.menux {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
}

/* ===== Toast Notifications Enhancement ===== */
.toast {
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* ===== Form Input Enhancement ===== */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
    transition: all 0.3s ease !important;
}

input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 186, 211, 0.15) !important;
}
