/* Theme: Kıbrıs Lezzet Pastanesi (Modern Pastane)
 * Renk Paleti: Turuncu-Sarı (Canlı & Modern)
 * Versiyon: 3.0
 */
:root {
        --card-header-bg-color:#e65100;
    --card-header-text-color:#fff;
    /* --- Ana Renk Paleti (Turuncu/Sarı) --- */
    --primary-color: #ff8c00;       /* Koyu Turuncu (Ana Renk) */
    --primary-light: #ffa500;       /* Açık Turuncu */
    --primary-hover: #e65100;       /* Koyu Turuncu Hover Hali */
    
    --secondary-color: #ffc107;     /* Canlı Sarı */
    --secondary-hover: #ff8f00;     /* Sarı Hover Hali */
    
    --accent-color: #ffd54f;        /* Tamamlayıcı Açık Sarı */

    /* --- Arkaplan Renkleri --- */
    --bg-creamy: #fffbf2;           /* Krem Rengi Genel Zemin */
    --body-bg: var(--bg-creamy);    /* Body için yönlendirme */
    --card-bg: rgba(255, 255, 255, 0.95); /* Kart Arkaplanı */
    --footer-bg: #1a1a2e;           /* Footer Koyu Zemin */
    
    /* --- Metin Renkleri --- */
    --text-dark: #2d3436;           /* Koyu Gri/Siyah */
    --text-muted: #636e72;          /* Silik Gri */
    
    /* --- Durum Renkleri (Hata/Onay) --- */
    --danger-color: #ff4757;        /* Hata Kırmızısı */
    --danger-light: #ff6b81;        /* Açık Kırmızı (Gradient) */
    --success-color: #2ed573;       /* Başarılı Yeşili */

    /* --- Form Elemanları --- */
    --input-bg: #ffffff;            
    --input-border: rgba(255, 140, 0, 0.2); 
    --input-focus-shadow: rgba(255, 140, 0, 0.15); 

    /* --- Yapısal Değişkenler (Radius & Shadow) --- */
    --border-radius: 1.25rem;       /* 20px */
    --btn-radius: 50px;             /* Butonlar için */
    
    --shadow-soft: 0 10px 25px rgba(255, 140, 0, 0.1);
    --shadow-hover: 0 15px 35px rgba(255, 140, 0, 0.2);
    
    /* --- Font Ailesi --- */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF8E1 50%, #FFF3E0 100%);
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--light-text);
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Türkçe Font Ailesi */
h1, h2, h3, h4, h5, h6, .navbar-brand, .price-tag, .btn {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    color: var(--dark-text);
    font-weight: 700;
}

.brand-text {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 1.6rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== ANIMATIONS ==================== */

@keyframes floatUp {
    0% { 
        transform: translateY(40px); 
        opacity: 0; 
    }
    100% { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(2deg); 
    }
    50% { 
        transform: translateY(-25px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotate(-2deg); 
    }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 20px 10px rgba(255, 107, 0, 0);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes slideInLeft {
    0% { 
        transform: translateX(-100px); 
        opacity: 0; 
    }
    100% { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideInRight {
    0% { 
        transform: translateX(100px); 
        opacity: 0; 
    }
    100% { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.5),
                    0 0 10px rgba(255, 107, 0, 0.3),
                    0 0 15px rgba(255, 107, 0, 0.2);
    }
    50% { 
        box-shadow: 0 0 10px rgba(255, 107, 0, 0.8),
                    0 0 20px rgba(255, 107, 0, 0.5),
                    0 0 30px rgba(255, 107, 0, 0.3);
    }
}

@keyframes fadeInScale {
    0% { 
        opacity: 0; 
        transform: scale(0.8); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

/* Animation Classes */
.animate-up {
    animation: floatUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.6s ease-out forwards;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow) !important;
}

.bounce-hover:hover {
    animation: wiggle 0.5s ease-in-out infinite;
}

.pulse-hover:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

/* ==================== NAVBAR ==================== */
.navbar-sweet {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 251, 240, 0.95) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(255, 107, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 107, 0, 0.1);
}

.navbar-sweet.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.15);
}

.navbar-brand {
    font-size: 1.9rem;
    color: var(--primary-color) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    color: var(--dark-text) !important;
    font-size: 0.95rem;
    padding: 0.8rem 1.3rem !important;
    border-radius: var(--btn-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(255, 107, 0, 0.08);
    transform: translateY(-2px);
}

/* Sepet Badge */
.badge-count {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 3px 8px rgba(255, 107, 0, 0.4);
    animation: pulse 2s infinite;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(255, 107, 0, 0.08) 0%, 
        rgba(255, 179, 0, 0.05) 50%,
        rgba(255, 251, 240, 1) 100%);
    padding: 7rem 0 9rem 0;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-title {
    font-size: 3.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    letter-spacing: -1px;
    animation: shimmer 3s linear infinite;
}

.floating-cake {
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(255, 107, 0, 0.2));
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    top: -80px;
    right: -80px;
    filter: blur(80px);
    animation: float 7s ease-in-out infinite reverse;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary-color);
    bottom: -50px;
    left: 50px;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--accent-color);
    top: 50%;
    right: 20%;
    filter: blur(50px);
    animation: float 8s ease-in-out infinite;
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--hover-shadow) !important;
    border-color: rgba(255, 107, 0, 0.2);
}

.product-img-wrapper {
    transition: all 0.4s ease;
    background: #FFFFFF;
    position: relative;
    overflow: visible;
}

.product-img-wrapper::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;
    z-index: 1;
}

.product-card:hover .product-img-wrapper::before {
    left: 100%;
}

.product-img {
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 10px 20px rgba(255, 107, 0, 0.1));
    z-index: 1;
    position: relative;
}

.product-card:hover .product-img {
    transform: scale(1.12) rotate(3deg);
}

/* Hover Actions */
.hover-actions {
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    background: linear-gradient(to top, rgba(255, 107, 0, 0.9), transparent);
    padding: 20px 10px 10px;
}

.product-img-wrapper:hover .hover-actions {
    transform: translateY(0);
    opacity: 1;
}

.price-tag {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.3rem;
}

/* Trend Badge */
.badge-trend {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--dark-text);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 179, 0, 0.3);
    animation: pulse 2s infinite;
    z-index: 10;
    position: relative;
}

/* ==================== BUTTONS ==================== */
.btn-primary, .btn-theme, .btn-sweet {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: var(--btn-radius);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-sweet::before {
    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;
}

.btn-primary:hover::before, .btn-sweet:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-sweet:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.45);
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
}

.btn-white {
    background: white;
    color: var(--dark-text);
    border: 2px solid rgba(255, 107, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-white:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.btn-outline-sweet {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 12px 28px;
    border-radius: var(--btn-radius);
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-sweet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline-sweet:hover::before {
    width: 100%;
}

.btn-outline-sweet:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
}

/* Add to Cart Floating Button */
.btn-add-floating {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4) !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    min-width: 32px !important;
    min-height: 32px !important;
    z-index: 100 !important;
}

.btn-add-floating i {
    font-size: 32px !important;
}

.btn-add-floating:hover {
    transform: scale(1.0) rotate(10deg) !important;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5) !important;
}

/* ==================== CATEGORY SIDEBAR ==================== */
.category-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.category-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white;
    padding: 1.2rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cat-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: var(--light-text);
    transition: all 0.3s ease;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 107, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cat-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.cat-link:hover {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.05), transparent);
    color: var(--primary-color);
    padding-left: 25px;
}

.cat-link:hover::before {
    transform: scaleY(1);
}

.cat-link.active {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1), transparent);
    color: var(--primary-color);
}

.cat-link.active::before {
    transform: scaleY(1);
}

.cat-link.active i {
    color: var(--secondary-color) !important;
}

/* ==================== SEARCH FORM ==================== */
.search-form .input-group {
    border: 2px solid rgba(255, 107, 0, 0.15);
    transition: all 0.3s ease;
}

.search-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.15);
}

.search-form input {
    font-size: 1rem;
}

.search-form input::placeholder {
    color: #aaa;
}

/* ==================== MOBILE CATEGORY BUTTON ==================== */
.mobile-cat-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
}

.mobile-cat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.mobile-cat-btn i {
    transition: transform 0.3s ease;
}

.mobile-cat-btn[aria-expanded="true"] i.fa-chevron-down {
    transform: rotate(180deg);
}

/* ==================== FILTER BAR ==================== */
.filter-bar {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.filter-bar select {
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-bar select:hover {
    background-color: rgba(255, 107, 0, 0.05);
}

/* ==================== PAGINATION ==================== */
.pagination {
    gap: 8px;
}

.page-link {
    border: none !important;
    background: white;
    color: var(--dark-text);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-image-card {
    background: #FFFFFF;
    border: 2px solid rgba(255, 107, 0, 0.1);
}

.product-detail-image-card img {
    transition: transform 0.5s ease;
}

.product-detail-image-card:hover img {
    transform: scale(1.08) rotate(2deg);
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, var(--footer-bg) 0%, #16213E 100%);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 5rem;
    margin-top: 5rem;
    border-radius: 50px 50px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--body-bg);
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer h5, footer h6 {
    color: white;
    font-weight: 700;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

footer a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

footer .social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}

footer .bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.hover-opacity-100:hover {
    opacity: 1 !important;
    color: var(--secondary-color) !important;
}

/* ==================== MODAL ==================== */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 1.5rem;
}

.modal-title {
    color: white !important;
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-body {
    padding: 2rem;
}

/* ==================== ALERTS ==================== */
.alert {
    border-radius: var(--border-radius);
    border: none;
}

.alert-light {
    background: linear-gradient(135deg, #FFF8E1, #FFFBF0);
    color: var(--dark-text);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    color: var(--light-text);
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==================== PROGRESS BAR ==================== */
.progress {
    height: 8px;
    border-radius: 10px;
    background-color: rgba(255, 107, 0, 0.1);
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #FFF8E1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    border: 2px solid #FFF8E1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-hover), var(--secondary-hover));
}

/* ==================== SELECTION ==================== */
::selection {
    background: rgba(255, 107, 0, 0.3);
    color: var(--dark-text);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-section {
        padding: 5rem 0 7rem 0;
    }
    
    .product-img-wrapper {
        height: 180px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        box-shadow: var(--soft-shadow);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .brand-text {
        font-size: 1.3rem;
    }
    
    .btn-sweet, .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    footer {
        border-radius: 30px 30px 0 0;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .page-link {
        width: 40px;
        height: 40px;
    }
}

/* ==================== LOADING ANIMATION ==================== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner-border {
    border-color: var(--primary-color);
    border-right-color: transparent;
}

/* ==================== UTILITIES ==================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 240, 0.9));
}

.shadow-sweet {
    box-shadow: var(--soft-shadow);
}

.shadow-sweet-hover:hover {
    box-shadow: var(--hover-shadow);
}

/* Son Gezilen Ürünler Card */
.recent-viewed-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.recent-viewed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
    border-color: rgba(255, 107, 0, 0.2);
}

/* Input Focus States */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.15);
}

/* Custom Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.8rem 0;
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 107, 0, 0.1), transparent);
    color: var(--primary-color);
    padding-left: 2rem;
}

/* Card Hover Shine Effect */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.card-shine:hover::after {
    left: 100%;
    opacity: 1;
}

/* Cache Busting Marker - v=82471 */
