﻿/* ===================================
   GLOBAL MOBILE OVERFLOW FIX
   =================================== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   PAGE HEADER & BREADCRUMB
   =================================== */

.page-header {
    padding: 16px 0;
    margin-bottom: 20px;
}

.page-header-content {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.page-title {
    font-size: 18px;
    font-weight: 600;
    color: #6d6d6d; /* başlık rengi */
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

/* Breadcrumb */
.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 13px;
    color: #6d6d6d;
}

.breadcrumb-link {
    color: #6d6d6d;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .breadcrumb-link:hover {
        color: #7c6eff; /* hover için hafif değişim */
    }

.breadcrumb-item.active {
    font-weight: 600;
    color: #6d6d6d;
}

.breadcrumb-separator {
    color: #6d6d6d;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .page-title {
        font-size: 18px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }
}

@media print {
    .page-header {
        display: none;
    }
}
/* ==================== ROOT & GLOBAL - YENİ RENK PALETİ ==================== */
:root {
    --primary-orange: #FF6C00;
    --secondary-yellow: #FFBC00;
    --accent-red: #FF5E2D;
    --white: #FFFFFF;
    --light-gray: #EAEAEA;
    --blue: #6DA1FF;
    --black: #000000;
    --primary-gradient: linear-gradient(135deg, #FF6C00 0%, #FF5E2D 100%);
    --secondary-gradient: linear-gradient(135deg, #FFBC00 0%, #FF6C00 100%);
    --blue-gradient: linear-gradient(135deg, #6DA1FF 0%, #4A7FD9 100%);
    --text-dark: #000000;
    --text-light: #666666;
    --border-color: #EAEAEA;
    --light-bg: #FFFFFF;
    --section-bg: #F8F8F8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-soft-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-soft-lg: 0 8px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==================== CAMPAIGN SLIDER (IMAGE DESTEKLI) ==================== */
.campaign-slider {
    height: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft-md);
}

.campaign-track {
    height: 100%;
    position: relative;
}

.campaign-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .campaign-item.active {
        opacity: 1;
        z-index: 2;
    }

.campaign-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.campaign-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 108, 0, 0.85) 0%, rgba(255, 94, 45, 0.85) 100%);
    z-index: 2;
}

.campaign-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.campaign-icon {
    font-size: 32px;
    animation: iconFloat 2s ease-in-out infinite;
}

.campaign-text {
    letter-spacing: 0.5px;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* ==================== HEADER ==================== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    gap: 30px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    width:230px;
}

   

    .logo i {
        font-size: 30px;
        color: var(--primary-orange);
    }

.search-box {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 16px;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 50px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    transition: var(--transition);
    background-color: var(--light-bg);
    color: var(--text-dark);
}

    .search-box input:focus {
        outline: none;
        border-color: var(--primary-orange);
        background-color: var(--white);
        box-shadow: 0 0 0 4px rgba(255, 108, 0, 0.08);
    }

    .search-box input::placeholder {
        color: var(--text-light);
    }

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 8px;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-dropdown.active {
    display: block;
}

.search-dropdown-content {
    padding: 8px 0;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s;
}

.search-item:hover {
    background: var(--section-bg);
}

.search-item-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--section-bg);
}

.search-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-item-info {
    flex: 1;
    min-width: 0;
}

.search-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-item-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-top: 2px;
}

.search-view-all {
    display: block;
    text-align: center;
    padding: 12px;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    transition: background 0.2s;
}

.search-view-all:hover {
    background: var(--section-bg);
}

.search-loading,
.search-no-results {
    padding: 30px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.search-loading i,
.search-no-results i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--border-color);
}

.header-icons {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .header-icons a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 600;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
    }

        .header-icons a i {
            font-size: 20px;
        }

        .header-icons a:hover {
            color: var(--primary-orange);
            transform: translateY(-2px);
        }

    .header-icons .badge {
        position: absolute;
        top: -10px;
        right: -10px;
        background: var(--primary-gradient);
        color: var(--white);
        min-width: 20px;
        height: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        padding: 0 5px;
        box-shadow: var(--shadow-soft);
    }

/* ==================== NAVIGATION WITH DROPDOWN ==================== */
nav {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;

    z-index: 999;
}

    nav ul {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0 50px;
        gap: 5px;
    }

    nav li {
        position: relative;
    }

    nav a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 16px 24px;
        color: var(--text-dark);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: var(--transition);
        border-bottom: 3px solid transparent;
        position: relative;
    }

        nav a:hover,
        nav a:focus {
            color: var(--primary-orange);
            border-bottom-color: var(--primary-orange);
            background-color: rgba(255, 108, 0, 0.05);
        }

    nav i {
        font-size: 16px;
    }

/* Dropdown Menu */
/* ==================== MOBILE MENU (HAMBURGER) ==================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1003;
    position: relative;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Navigation Sidebar */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    padding: 20px;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-nav-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    display: block;
}

.mobile-nav-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    width: 100%;
    transition: var(--transition);
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a:active {
    background: rgba(255, 108, 0, 0.08);
    color: var(--primary-orange);
}

.mobile-nav-menu a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: var(--primary-orange);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    background: var(--section-bg);
    padding-left: 20px;
    list-style: none;
    margin: 0;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    list-style: none;
}

.mobile-submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
}

.mobile-submenu a:hover {
    color: var(--primary-orange);
    background: rgba(255, 108, 0, 0.05);
}

/* Mobile Sub-Submenu (3. kademe) */
.mobile-sub-submenu {
    display: block;
    padding-left: 15px;
    list-style: none;
    margin: 0;
    background: #fff;
}

.mobile-sub-submenu li {
    list-style: none;
}

.mobile-sub-submenu a {
    padding: 10px 15px;
    font-size: 13px;
    color: #666;
}

.mobile-sub-submenu a:hover {
    color: var(--primary-orange);
}

.mobile-nav-menu .has-submenu > a {
    justify-content: space-between;
}

.mobile-nav-menu .has-submenu > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-nav-menu .has-submenu.open > a::after {
    transform: rotate(180deg);
}

.mobile-nav-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    width: 100%;
}

.mobile-nav-footer a i {
    color: var(--primary-orange);
}

/* Show hamburger on tablet and below */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        order: 0;
    }

    .logo {
        order: 1;
        flex: 1;
        justify-content: center;
    }

    .header-icons {
        order: 2;
    }

    /* Hide main navigation on mobile - use hamburger menu instead */
    .forem-nav {
        display: none !important;
    }
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    border-radius: 12px;
    box-shadow: var(--shadow-soft-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 12px 24px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

    .dropdown-menu a:hover {
        background-color: rgba(255, 108, 0, 0.08);
        border-bottom: none;
    }

.dropdown-menu .divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 8px 0;
}

/* ==================== SLIDER (SONSUZ DÖNGÜ) ==================== */
.slider-container {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.slider {
    display: flex;
    height: 100%;
    width: 300%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.slide-1 .slide-overlay {
    background: linear-gradient(135deg, rgba(255, 108, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.slide-2 .slide-overlay {
    background: linear-gradient(135deg, rgba(109, 161, 255, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.slide-3 .slide-overlay {
    background: linear-gradient(135deg, rgba(255, 188, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 3;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 0 20px;
}

    .slide-content h2 {
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: 800;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 20px;
        opacity: 0.95;
        margin-bottom: 35px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    }

.slide-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 108, 0, 0.3);
}

    .slide-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 108, 0, 0.4);
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

    .dot.active {
        background-color: var(--primary-orange);
        border-color: var(--white);
        transform: scale(1.3);
    }

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    backdrop-filter: blur(5px);
}

    .slider-prev:hover,
    .slider-next:hover {
        background-color: var(--primary-orange);
        border-color: var(--primary-orange);
        transform: translateY(-50%) scale(1.1);
    }

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* ==================== CATEGORIES SECTION ==================== */
.categories-section {
    padding: 70px 50px;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary-gradient);
        border-radius: 2px;
    }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

    .category-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-orange);
        box-shadow: 0 12px 30px rgba(255, 108, 0, 0.12);
    }

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 108, 0, 0.25);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 108, 0, 0.35);
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 700;
}

.category-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== PROMO SECTION ==================== */
.promo-section {
    padding: 50px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    background-color: var(--section-bg);
    max-width: 1400px;
    margin: 0 auto;
}

.promo-card {
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    box-shadow: var(--shadow-soft-md);
    cursor: pointer;
}

    .promo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: var(--transition);
    }

    .promo-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-soft-lg);
    }

        .promo-card:hover::before {
            opacity: 1;
        }

.promo-1 {
    background: var(--primary-gradient);
}

.promo-2 {
    background: var(--blue-gradient);
}

.promo-3 {
    background: var(--secondary-gradient);
}

.promo-content {
    z-index: 1;
    flex: 1;
}

    .promo-content h3 {
        font-size: 22px;
        margin-bottom: 8px;
        font-weight: 800;
    }

    .promo-content p {
        font-size: 14px;
        opacity: 0.95;
        margin-bottom: 12px;
    }

.promo-discount {
    font-size: 32px;
    font-weight: 800;
    display: block;
}

.promo-icon {
    font-size: 70px;
    opacity: 0.2;
    margin-left: 20px;
}

/* ==================== SERVICES & PRODUCT SECTIONS ==================== */
.services-section,
.products-category-section {
    padding: 70px 50px;
    background-color: var(--white);
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

    .products-category-section.discount-section {
        background-color: var(--section-bg);
    }

    .products-category-section.new-section {
        background-color: var(--white);
    }

.services-section {
    background-color: var(--section-bg);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

    .category-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 70px;
        height: 4px;
        background: var(--primary-gradient);
        border-radius: 2px;
    }

    .category-title i {
        color: var(--primary-orange);
    }

.view-all-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .view-all-btn:hover {
        background: var(--primary-gradient);
        color: var(--white);
        border-color: transparent;
        transform: translateX(5px);
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ==================== PRODUCT CARDS (IMAGE DESTEKLI) ==================== */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-color);
}

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--shadow-soft-lg);
        border-color: var(--primary-orange);
    }

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--light-gray);
}

.product-image-real {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    transition: var(--transition);
}

.product-card:hover .product-image-real {
    transform: scale(1.08);
}

.product-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: #cccccc;
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 800;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-soft);
}

    .product-badge.discount {
        background: var(--accent-red);
        color: var(--white);
    }

    .product-badge.new {
        background: var(--blue);
        color: var(--white);
    }

    .product-badge.featured {
        background: var(--secondary-yellow);
        color: var(--black);
    }

    .product-badge.bestseller {
        background: var(--primary-gradient);
        color: var(--white);
        animation: pulse 2s ease-in-out infinite;
    }

    .product-badge.service {
        background: var(--blue-gradient);
        color: var(--white);
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.stock-badge {
    position: absolute;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
    backdrop-filter: blur(5px);
}

    .stock-badge.in-stock {
        background-color: rgba(76, 175, 80, 0.9);
        color: var(--white);
    }

    .stock-badge.low-stock {
        background-color: rgba(255, 152, 0, 0.9);
        color: var(--white);
        animation: blink 1.5s ease-in-out infinite;
    }

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.favorite-btn,
.quick-view-btn {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-orange);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    z-index: 4;
    opacity: 0;
}

.favorite-btn {
    top: 15px;
    right: 15px;
}

.quick-view-btn {
    top: 70px;
    right: 15px;
}

.product-card:hover .favorite-btn,
.product-card:hover .quick-view-btn {
    opacity: 1;
}

.favorite-btn:hover,
.quick-view-btn:hover {
    transform: scale(1.15);
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.favorite-btn.active {
    opacity: 1;
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

    .favorite-btn.active i::before {
        content: "\f004";
        font-weight: 900;
    }

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    font-size: 14px;
}

    .product-rating i {
        color: var(--secondary-yellow);
        font-size: 14px;
    }

    .product-rating span {
        color: var(--text-light);
        font-size: 13px;
        margin-left: 5px;
    }

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
}

/* ==================== PRODUCT ACTIONS (YAN YANA) ==================== */
.product-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: auto;
}

.product-actions-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.action-btn {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.buy-now-btn {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(109, 161, 255, 0.25);
}

    .buy-now-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(109, 161, 255, 0.35);
    }

.add-cart-btn {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 108, 0, 0.25);
}

    .add-cart-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(255, 108, 0, 0.35);
    }

/* İletişime Geçin Butonu (Hizmetler için) */
.contact-btn {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(109, 161, 255, 0.25);
    grid-column: 1 / -1;
}

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(109, 161, 255, 0.35);
    }

/* ==================== BESTSELLER CAROUSEL (SONSUZ DÖNGÜ) ==================== */
.bestseller-carousel-section {
    padding: 70px 50px;
    background-color: var(--section-bg);
    position: relative;
    overflow: hidden;
    max-width: 1600px;
    margin: 0 auto;
}

.carousel-controls {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 18px;
    box-shadow: var(--shadow-soft);
}

    .carousel-btn:hover {
        background: var(--primary-gradient);
        color: var(--white);
        border-color: transparent;
        transform: scale(1.1);
    }

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.carousel-container {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
}

.carousel-item {
    min-width: 300px;
    flex-shrink: 0;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 70px 50px;
    background-color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-orange);
    box-shadow: var(--shadow-soft-md);
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-soft-lg);
    }

.testimonial-stars {
    color: var(--secondary-yellow);
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
}

.author-title {
    font-size: 13px;
    color: var(--text-light);
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 70px 50px;
    background: var(--black);
    color: var(--white);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

    .newsletter-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
        font-weight: 800;
    }

    .newsletter-content p {
        font-size: 16px;
        opacity: 0.9;
        margin-bottom: 35px;
    }

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .newsletter-form input {
        flex: 1;
        padding: 16px 25px;
        border: 2px solid var(--light-gray);
        border-radius: 12px;
        font-size: 15px;
        transition: var(--transition);
    }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-orange);
        }

.newsletter-btn {
    padding: 16px 35px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 108, 0, 0.3);
}

    .newsletter-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(255, 108, 0, 0.4);
    }

/* ==================== FOOTER ==================== */
footer {
    background-color: var(--black);
    color: var(--light-gray);
    padding: 60px 50px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--primary-orange);
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

    .footer-section a:hover {
        color: var(--primary-orange);
        padding-left: 8px;
    }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background-color: rgba(255, 108, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--primary-orange);
        transition: var(--transition);
        padding-left: 0 !important;
    }

        .social-links a:hover {
            background: var(--primary-gradient);
            color: var(--white);
            transform: translateY(-5px);
        }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--light-gray);
    font-size: 13px;
    max-width: 1400px;
    margin: 0 auto;
}

    .footer-bottom a {
        color: var(--primary-orange);
        text-decoration: none;
        transition: var(--transition);
    }

        .footer-bottom a:hover {
            color: var(--secondary-yellow);
        }

/* ==================== TOAST NOTIFICATION ==================== */
.toast {
    position: fixed;
    bottom: -100px;
    right: 30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 18px 28px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 15px;
    z-index: 10000;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

    .toast.show {
        bottom: 30px;
    }

    .toast i {
        font-size: 22px;
    }

/* ==================== QUICK VIEW MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

    .modal.show {
        display: flex;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    border-radius: 25px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 36px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .close-modal:hover {
        color: var(--primary-orange);
        background-color: rgba(255, 108, 0, 0.1);
        transform: rotate(90deg);
    }

.modal-body {
    display: flex;
    gap: 40px;
    padding: 50px;
}

.modal-image {
    flex: 1;
    background: var(--light-gray);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    font-size: 120px;
    color: #cccccc;
}

.modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

    .modal-info h3 {
        font-size: 28px;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1.3;
    }

.modal-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .modal-rating i {
        color: var(--secondary-yellow);
        font-size: 16px;
    }

    .modal-rating span {
        color: var(--text-light);
        font-size: 15px;
        margin-left: 8px;
    }

.modal-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.modal-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.modal-add-btn,
.modal-buy-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.modal-add-btn {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 108, 0, 0.3);
}

    .modal-add-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(255, 108, 0, 0.4);
    }

.modal-buy-btn {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(109, 161, 255, 0.3);
}

    .modal-buy-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(109, 161, 255, 0.4);
    }

/* ==================== RESPONSIVE ==================== */

/* Extra Large Devices (Large Desktops, 1400px and up) */
@media (max-width: 1400px) {
    .header-top,
    nav ul {
        padding: 15px 30px;
    }

    .products-category-section,
    .services-section,
    .categories-section,
    .testimonials-section,
    .bestseller-carousel-section,
    .promo-section,
    footer {
        padding: 60px 30px;
    }

    .slider-container {
        height: 450px;
    }

    .slide-content h2 {
        font-size: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

/* Large Devices (Desktops, 1200px and down) */
@media (max-width: 1200px) {
    .header-top,
    nav ul {
        padding: 15px 25px;
    }

    .slider-container {
        height: 400px;
    }

    .slide-content h2 {
        font-size: 36px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .promo-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (Tablets, 992px and down) */
@media (max-width: 992px) {
    .header-top {
        padding: 12px 20px;
        gap: 15px;
    }

    .logo {
        width: 180px;
    }

    .logo img {
        max-width: 100%;
        height: auto;
    }

    .search-box {
        max-width: 350px;
    }

    .header-icons {
        gap: 20px;
    }

    .header-icons a {
        font-size: 13px;
    }

    .header-icons span:not(.badge) {
        display: none;
    }

    nav ul {
        padding: 0 15px;
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    nav ul::-webkit-scrollbar {
        display: none;
    }

    nav a {
        padding: 14px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .slider-container {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-btn {
        padding: 14px 30px;
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .promo-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .promo-card {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small Devices (Landscape Phones, 768px and down) */
@media (max-width: 768px) {
    /* Campaign Slider */
    .campaign-slider {
        height: auto;
        min-height: 60px;
        max-height: 80px;
    }

    .campaign-bg {
        object-fit: contain;
        object-position: center;
        background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    }

    .campaign-content {
        font-size: 13px;
        gap: 10px;
        padding: 0 15px;
    }

    .campaign-icon {
        font-size: 22px;
    }

    /* Header */
    .header-top {
        padding: 12px 15px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        width: 150px;
        order: 1;
    }

    .search-box {
        order: 3;
        flex-basis: 100%;
        max-width: none;
        margin-top: 5px;
    }

    .search-box input {
        padding: 12px 18px 12px 45px;
        font-size: 14px;
    }

    .header-icons {
        order: 2;
        gap: 15px;
    }

    .header-icons a i {
        font-size: 18px;
    }

    .header-icons span:not(.badge) {
        display: none;
    }

    /* Hide user dropdown on mobile - use mobile nav menu instead */
    .header-icons .dropdown {
        display: none;
    }

    .header-icons .badge {
        top: -8px;
        right: -8px;
        min-width: 18px;
        height: 18px;
        font-size: 10px;
    }

    /* Navigation */
    nav {
        position: sticky;
        top: 0;
    }

    nav ul {
        padding: 0 10px;
        gap: 0;
        justify-content: flex-start;
        overflow-x: auto;
    }

    nav a {
        padding: 12px 14px;
        font-size: 12px;
    }

    nav i {
        display: none;
    }

    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        max-height: 60vh;
        overflow-y: auto;
    }

    /* Slider */
    .slider-container {
        height: 280px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    /* Sections */
    .products-category-section,
    .services-section,
    .categories-section,
    .testimonials-section,
    .promo-section,
    .bestseller-carousel-section,
    footer {
        padding: 40px 15px;
    }

    .section-title,
    .category-title {
        font-size: 22px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .view-all-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-info {
        padding: 15px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
    }

    .product-actions-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* Carousel */
    .carousel-item {
        min-width: 200px;
    }

    /* Modal */
    .modal-body {
        flex-direction: column;
        padding: 20px 15px;
    }

    .modal-image {
        min-height: 250px;
        font-size: 60px;
    }

    .modal-actions {
        grid-template-columns: 1fr;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 40px 15px;
    }

    .newsletter-content h2 {
        font-size: 22px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section ul {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* Toast */
    .toast {
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    /* Stock Badge - Fix for product detail pages on mobile */
    .product-detail-page .stock-badge,
    .stock-info .stock-badge {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
    }
}

/* Extra Small Devices (Portrait Phones, 576px and down) */
@media (max-width: 576px) {
    .campaign-slider {
        height: auto;
        min-height: 50px;
        max-height: 70px;
    }

    .campaign-bg {
        object-fit: contain;
        background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    }

    .campaign-content {
        font-size: 11px;
        gap: 8px;
    }

    .campaign-icon {
        font-size: 18px;
    }

    .header-top {
        padding: 10px 12px;
    }

    .logo {
        width: 130px;
    }

    .header-icons {
        gap: 12px;
    }

    .header-icons a i {
        font-size: 16px;
    }

    .slider-container {
        height: auto;
        min-height: 180px;
        max-height: 250px;
        aspect-ratio: 16/7;
    }

    .slide-bg {
        object-fit: contain;
        object-position: center;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image-wrapper {
        height: 150px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 15px;
    }

    .category-title {
        font-size: 18px;
    }

    .section-title {
        font-size: 18px;
    }
}

/* Very Small Devices (Small Phones, 480px and down) */
@media (max-width: 480px) {
    .campaign-slider {
        height: auto;
        min-height: 45px;
        max-height: 60px;
    }

    .campaign-bg {
        object-fit: contain;
    }

    .campaign-content {
        font-size: 10px;
    }

    .header-top {
        padding: 8px 10px;
    }

    .logo {
        width: 110px;
    }

    .header-icons {
        gap: 10px;
    }

    .search-box input {
        padding: 10px 15px 10px 40px;
        font-size: 13px;
    }

    .search-icon {
        left: 12px;
        font-size: 14px;
    }

    nav a {
        padding: 10px 12px;
        font-size: 11px;
    }

    .slider-container {
        height: auto;
        min-height: 150px;
        max-height: 200px;
        aspect-ratio: 16/7;
    }

    .slide-bg {
        object-fit: contain;
    }

    .slider-prev,
    .slider-next {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .slider-prev {
        left: 5px;
    }

    .slider-next {
        right: 5px;
    }

    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .slide-content h2 {
        font-size: 18px;
    }

    .slide-content p {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .products-grid {
        gap: 8px;
    }

    .product-image-wrapper {
        height: 130px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }

    .product-price {
        font-size: 14px;
    }

    .product-old-price {
        font-size: 11px;
    }

    .add-to-cart-btn,
    .quick-view-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .newsletter-content h2 {
        font-size: 18px;
    }

    .newsletter-content p {
        font-size: 13px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .header-icons a:hover {
        transform: none;
    }

    nav a:hover {
        background-color: transparent;
    }

    nav a:active {
        background-color: rgba(255, 108, 0, 0.1);
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .slider-container {
        height: 200px;
    }

    .slide-content h2 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .slide-content p {
        display: none;
    }

    .slide-btn {
        padding: 10px 20px;
    }
}
.main-content-wrapper{
    padding:0 !important;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    min-width: 150px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 999;
}

    .dropdown-menu li {
        list-style: none;
    }

        .dropdown-menu li a {
            display: block;
            padding: 0.5rem 1rem;
            color: #333;
            text-decoration: none;
        }

            .dropdown-menu li a:hover {
                background: #f1f1f1;
            }

.dropdown:hover .dropdown-menu {
    display: block;
}

.divider {
    border-top: 1px solid #ddd;
    margin: 0.25rem 0;
}