/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #aa6a2f;
    --primary-dark: #8a5520;
    --primary-light: #c48a4f;
    --secondary-color: #000000;
    --secondary-dark: #1a1a1a;
    --secondary-light: #333333;
    --accent-orange: #aa6a2f;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #F5F5F5;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 15px 0;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 32px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.search-box {
    display: flex;
    flex: 1;
    max-width: 600px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(170, 106, 47, 0.1);
}

.search-box form {
    display: flex;
    width: 100%;
    flex: 1;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Dil Seçici */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn i:first-child {
    font-size: 16px;
}

.lang-code {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.lang-btn i:last-child {
    font-size: 10px;
    margin-left: 2px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.lang-option:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.lang-option.active {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.icon-link {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 5px;
}

.icon-link:hover {
    color: var(--primary-color);
}

.login-link-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 5px;
}

.login-link-wrapper:hover {
    color: var(--primary-color);
}

.icon-link i {
    font-size: 20px;
}

.icon-link span:not(.badge) {
    font-size: 11px;
    margin-top: 2px;
}

/* Giriş Yap / Üye Ol Özel Stilleri */
.login-link-wrapper {
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-link-wrapper i {
    font-size: 20px;
}

.login-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    line-height: 1.2;
    margin-top: 2px;
}

.login-action,
.register-action,
.register-action-link {
    font-size: 11px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    color: var(--text-dark);
    text-decoration: none;
}

.login-action:hover,
.register-action-link:hover {
    color: var(--primary-color);
}

.register-action-link:hover {
    text-decoration: underline;
}

.login-separator {
    font-size: 10px;
    color: var(--text-light);
    margin: 0 2px;
}

.login-link-wrapper:hover .login-action,
.login-link-wrapper:hover .register-action-link {
    color: var(--primary-color);
}

.login-link-wrapper:hover .login-separator {
    color: var(--primary-color);
    opacity: 0.7;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* Navbar */
.navbar {
    border-top: 1px solid var(--border-color);
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobil arama kutusu - Desktop'ta gizli */
.mobile-search-box {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 15px 0;
    margin: 0 auto;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.nav-menu a i {
    font-size: 16px;
    width: 18px;
    text-align: center;
    transition: var(--transition);
}

.nav-menu a:hover i,
.nav-menu a.active i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    list-style: none;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-menu li a i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.dropdown-menu li a:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Mega Menu Styles */
.mega-menu {
    position: static;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 1400px;
    z-index: 1000;
    overflow: visible;
}

.mega-menu-view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.mega-menu-view.active {
    display: block;
}

.mega-menu-main.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mega-menu:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-menu-item {
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    box-sizing: border-box;
}

.mega-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--text-dark);
}

.mega-menu-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.mega-menu-item:hover .mega-menu-image img {
    transform: scale(1.1);
}

.mega-menu-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.mega-menu-item h4 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.mega-menu-item:hover h4 {
    color: var(--primary-color);
}

.mega-menu-item h4 i {
    font-size: 18px;
}

.mega-menu-item-wrapper {
    position: relative;
    overflow: visible;
}

/* Mobil menü logosu - Desktop'ta gizli */
.mobile-menu-logo {
    display: none;
}

.mega-menu-subcategories {
    display: none;
}

/* Alt Kategoriler Görünümü */
.mega-menu-subcategories-view {
    min-height: 400px;
}

.mega-menu-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.mega-menu-back-btn:hover {
    background: var(--primary-color);
    color: white;
}

.mega-menu-back-btn i {
    font-size: 14px;
}

.mega-menu-subcategories-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.mega-menu-subcategories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mega-menu-subcategories-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: contents;
}

.mega-menu-subcategories-list ul li {
    margin-bottom: 0;
}

.mega-menu-subcategories-list ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    font-size: 15px;
    background: var(--bg-light);
    border: 2px solid transparent;
    height: 100%;
    min-height: 60px;
    box-sizing: border-box;
}

.mega-menu-subcategories-list ul li a:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.mega-menu-subcategories-list ul li a i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.mega-menu-subcategories-list ul li a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    padding: 10px;
    transition: var(--transition);
    background: none;
    border: none;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle i {
    font-size: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    filter: none;
    display: block;
    padding: 0;
    margin: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
}

.slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    box-shadow: none;
    filter: none;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}


.slide-image {
    flex: 0 0 100%;
    width: 100%;
    height: auto;
    opacity: 1;
    z-index: 1;
    overflow: hidden;
    box-shadow: none !important;
    filter: none !important;
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

.slide-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    box-shadow: none !important;
    filter: none !important;
    display: block;
    margin: 0;
    padding: 0;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 15px;
    animation: fadeInUp 0.8s ease 0.4s both;
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(170, 106, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.slider-controls {
    display: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.slider-dots {
    display: none;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Campaign Banners Section */
.campaign-banners {
    padding: 60px 0;
    background: var(--bg-light);
}

.banners-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.campaign-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--bg-white);
}

.campaign-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.banner-large {
    grid-row: span 2;
}

.banner-image {
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.banner-image .placeholder-image {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.campaign-banner:hover .banner-image img {
    transform: scale(1.1);
}

.campaign-banner:hover .banner-image .placeholder-image {
    transform: scale(1.1);
}

.banner-content {
    padding: 25px;
    position: relative;
}

.banner-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.banner-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.banner-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.banner-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.banner-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Features Section */
.features {
    background: var(--bg-white);
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.categories .container {
    max-width: 1400px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Yeni Kategori Layout - Sol Büyük Resim + Sağ Grid */
.categories-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    height: 100%;
}

/* Sol Taraf - Büyük Hero Kategori */
.category-hero {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: stretch;
    border: none;
    outline: none;
    background: transparent;
}

.category-hero:hover {
    transform: translateY(-5px);
}

.category-hero-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.category-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    background: transparent;
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    border: none;
    outline: none;
    display: block;
}

.category-hero:hover .category-hero-image img {
    transform: scale(1.05);
}

.category-hero-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.category-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
}

.category-hero-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-hero-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-hero-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Sağ Taraf - 2x2 Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    height: 100%;
    align-items: stretch;
}

.category-grid-item {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    min-height: 0;
    border: none;
    outline: none;
    background: transparent;
}

.category-grid-item:hover {
    transform: translateY(-5px);
}

.category-grid-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.category-grid-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    background: transparent;
}

.category-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    border: none;
    outline: none;
    display: block;
}

.category-grid-item:hover .category-grid-image img {
    transform: scale(1.1);
}

.category-grid-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.category-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
}

.category-grid-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-grid-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-grid-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive - Mobil için */
@media (max-width: 968px) {
    .categories-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-hero {
        min-height: 400px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-hero-title {
        font-size: 24px;
    }
    
    .category-grid-title {
        font-size: 18px;
    }
}

/* Kategori Yok - Boş Durum */
.categories-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
}

.categories-empty-logo {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.categories-empty-logo img {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
}

.categories-empty-message {
    animation: fadeInUp 0.8s ease-out;
}

.categories-empty-message h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.categories-empty-message p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .categories-empty {
        padding: 60px 20px;
        min-height: 300px;
    }
    
    .categories-empty-logo img {
        max-width: 150px;
    }
    
    .categories-empty-message h3 {
        font-size: 24px;
    }
    
    .categories-empty-message p {
        font-size: 14px;
    }
}

/* Ürün Yok - Boş Durum (Çok Satanlar, Yeni Ürünler, Kampanyalı Ürünler) */
.products-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    min-height: 400px;
    width: 100%;
}

.products-empty-logo {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out;
}

.products-empty-logo img {
    max-width: 200px;
    height: auto;
    opacity: 0.8;
}

.products-empty-message {
    animation: fadeInUp 0.8s ease-out;
}

.products-empty-message h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.products-empty-message p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Products carousel içindeki empty state */
.products-carousel .products-empty {
    min-height: 500px;
}

/* Products carousel içindeki empty state - siyah background için beyaz text */
.products-carousel-wrapper .products-empty .products-empty-message h3 {
    color: #ffffff !important;
}

.products-carousel-wrapper .products-empty .products-empty-message p {
    color: #cccccc !important;
}

.products-carousel-wrapper .products-empty .products-empty-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@media (max-width: 640px) {
    .products-empty {
        padding: 60px 20px;
        min-height: 300px;
    }
    
    .products-carousel .products-empty {
        min-height: 400px;
    }
    
    .products-empty-logo img {
        max-width: 150px;
    }
    
    .products-empty-message h3 {
        font-size: 24px;
    }
    
    .products-empty-message p {
        font-size: 14px;
    }
}

.category-card:hover .category-image .placeholder-image {
    transform: scale(1.1);
}

.category-card h3 {
    padding: 20px;
    margin: 0;
    color: var(--text-dark);
}

.category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    margin: 0 20px 20px;
    color: var(--bg-white);
    background: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.category-link:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 106, 47, 0.3);
}

.category-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--bg-white);
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
    background: var(--bg-white);
    border-bottom: 2px solid var(--border-color);
}

.product-tab {
    padding: 15px 40px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    margin-right: 5px;
}

.product-tab:last-child {
    margin-right: 0;
}

.product-tab:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
}

.product-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    z-index: 2;
}

.product-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.products-carousel-wrapper {
    position: relative;
    background: var(--secondary-color);
    padding: 50px 0;
    border-radius: 0 0 15px 15px;
    width: 100%;
    margin-top: 0;
}

.products-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 80px;
}

.products-slide {
    display: none;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.products-slide::-webkit-scrollbar {
    display: none;
}

.products-slide.active {
    display: flex;
}

.products-slide .product-card {
    min-width: calc(25% - 19px);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-badge i {
    font-size: 13px;
    opacity: 0.95;
}

.product-badge i {
    font-size: 13px;
    opacity: 0.95;
}

.badge-discount {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.badge-campaign {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.badge-bestseller {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, #aa6a2f, #8a5520);
    color: white;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio - kare */
    overflow: hidden;
    background: var(--bg-light);
}

.product-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    display: block;
}

.product-image img:not([src]),
.product-image img[src=""] {
    display: none;
}

.product-image img:not([src]) + .placeholder-image,
.product-image img[src=""] + .placeholder-image {
    display: flex;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite-btn:hover {
    background: white;
    color: #e74c3c;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-favorite-btn.active {
    background: #e74c3c;
    color: white;
}

.product-favorite-btn.active i {
    color: white;
}

.product-favorite-btn i {
    font-size: 18px;
    transition: var(--transition);
}

.product-code {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(38, 50, 56, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.campaign-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-orange);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.campaign-products {
    padding: 60px 0;
    background: var(--bg-light);
}

.campaign-products .container {
    max-width: 1400px;
}

.campaign-products .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
}

.campaign-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Campaign Products Responsive */
@media (max-width: 1024px) {
    .campaign-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .campaign-products {
        padding: 40px 0;
    }
    
    .campaign-products .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .campaign-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .campaign-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .modal {
        max-width: calc(100vw - 24px);
        margin: 12px;
        padding: 20px 16px 16px;
        max-height: calc(100vh - 24px);
    }
    
    .modal-overlay {
        padding: 0;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-header p {
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .campaign-products .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column h3 {
        font-size: 20px;
    }
    
    .footer-column h4 {
        font-size: 16px;
    }
    
    .company-info li {
        font-size: 12px;
    }
    
    .company-info li strong {
        min-width: 90px;
        font-size: 12px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .mega-menu-image {
        height: 120px;
    }
    
    .mega-menu-item h4 {
        font-size: 13px;
        padding: 10px;
    }
    
    .mega-menu-content {
        padding: 15px;
    }
    
    .mega-menu-subcategories-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mega-menu-subcategories-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .mega-menu-subcategories-list ul li a {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.product-image .placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    color: var(--text-light);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 10px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-height: 0;
}

.product-price {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .price-old {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-buttons {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.btn-add-cart,
.btn-view {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
}

/* Sepete Ekle Butonu - Beyaz yazı rengi garantisi */
.btn-add-cart {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-add-cart:hover,
.btn-add-cart:focus,
.btn-add-cart:active {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
    color: #ffffff !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 106, 47, 0.3);
}

/* Tüm parent container'lar için */
.product-buttons .btn-add-cart,
.product-detail-actions .btn-add-cart,
.product-card .btn-add-cart,
.products-slide .btn-add-cart,
.campaign-products-carousel .btn-add-cart {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
}

.product-buttons .btn-add-cart:hover,
.product-buttons .btn-add-cart:focus,
.product-buttons .btn-add-cart:active,
.product-detail-actions .btn-add-cart:hover,
.product-detail-actions .btn-add-cart:focus,
.product-detail-actions .btn-add-cart:active,
.product-card .btn-add-cart:hover,
.product-card .btn-add-cart:focus,
.product-card .btn-add-cart:active,
.products-slide .btn-add-cart:hover,
.products-slide .btn-add-cart:focus,
.products-slide .btn-add-cart:active,
.campaign-products-carousel .btn-add-cart:hover,
.campaign-products-carousel .btn-add-cart:focus,
.campaign-products-carousel .btn-add-cart:active {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
    color: #ffffff !important;
}

.btn-view {
    background: var(--primary-color);
    color: white;
    border: none;
    text-decoration: none;
}

.btn-view:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 106, 47, 0.3);
    text-decoration: none;
}

.btn-view:focus,
.btn-view:active {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    margin: 0;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
    min-height: 42px;
    max-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    font-weight: 700;
}

.product-name a:hover {
    color: var(--primary-color);
}


.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ffc107;
    font-size: 14px;
}

.product-rating span {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.old-price {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-unit {
    font-size: 14px;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 35px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 24px;
}

.footer-column h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column h4 i {
    color: white;
    font-size: 18px;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a i {
    color: white;
    font-size: 14px;
    width: 16px;
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column ul li a:hover i {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.contact-info li strong {
    color: white;
    font-weight: 600;
}

.contact-info i {
    color: var(--primary-color);
    width: 22px;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-info li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-info li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-info li a i {
    color: #25D366;
    font-size: 18px;
}

.company-info {
    list-style: none;
}

.company-info li {
    margin-bottom: 12px;
    line-height: 1.7;
    font-size: 13px;
    color: #bbb;
}

.company-info li strong {
    color: white;
    font-weight: 600;
    display: inline-block;
    min-width: 120px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    color: #888;
}

.footer-payment-security {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 30px;
}

.security-badges,
.payment-cards {
    flex: 1;
    min-width: 300px;
}

.security-badges h5,
.payment-cards h5 {
    color: white;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badges-grid,
.cards-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    padding: 12px 15px;
    border-radius: 8px;
    color: #ccc;
    font-size: 13px;
    transition: var(--transition);
    border: 1px solid #333;
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    justify-content: center;
}

.security-badge:hover {
    background: #333;
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.security-badge i {
    color: var(--primary-color);
    font-size: 18px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    padding: 12px 15px;
    border-radius: 8px;
    color: #ccc;
    font-size: 13px;
    transition: var(--transition);
    border: 1px solid #333;
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    justify-content: center;
}

.payment-card:hover {
    background: #333;
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.payment-card i {
    font-size: 18px;
    color: #fff;
}

.payment-card i.fa-cc-visa {
    color: #1434cb;
}

.payment-card i.fa-cc-mastercard {
    color: #eb001b;
}

.payment-card i.fa-cc-amex {
    color: #006fcf;
}

.payment-card i.fa-credit-card {
    color: #ff6b00;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    flex: 1;
    min-width: 250px;
}

.footer-copyright p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #888;
}

.footer-legal-note {
    font-size: 12px;
    color: #666;
    margin: 0;
}


.footer-bottom > p {
    margin: 0;
}

.marlev-credit {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marlev-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(170, 106, 47, 0.1), rgba(170, 106, 47, 0.05));
    border: 1px solid rgba(170, 106, 47, 0.3);
    border-radius: 30px;
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.marlev-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(170, 106, 47, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.marlev-link:hover {
    background: linear-gradient(135deg, rgba(170, 106, 47, 0.2), rgba(170, 106, 47, 0.1));
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(170, 106, 47, 0.3);
}

.marlev-link i:first-child {
    color: #ddd;
    font-size: 16px;
    transition: var(--transition);
}

.marlev-link:hover i:first-child {
    color: var(--primary-light);
    transform: rotate(360deg);
}

.marlev-text {
    color: #ddd;
    font-weight: 500;
    transition: var(--transition);
}

.marlev-name {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 0 5px rgba(170, 106, 47, 0.5);
}

.marlev-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-light);
    transition: width 0.3s ease;
}

.marlev-link:hover .marlev-text {
    color: white;
}

.marlev-link:hover .marlev-name {
    color: var(--primary-light);
    text-shadow: 0 0 10px rgba(170, 106, 47, 0.6);
}

.marlev-link:hover .marlev-name::after {
    width: 100%;
}

.marlev-link i:last-child {
    color: #ddd;
    font-size: 12px;
    opacity: 0.9;
    transition: var(--transition);
}

.marlev-link:hover i:last-child {
    color: var(--primary-light);
    opacity: 1;
    transform: translateX(3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-top {
        grid-template-columns: auto 1fr;
        gap: 15px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
        width: 100%;
    }
    
    .header-icons {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        width: 85%;
        max-width: 400px;
        height: 100vh;
        padding: 0 0 20px;
        box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
        z-index: 10000 !important;
        overflow-y: auto;
        pointer-events: auto !important;
        justify-content: flex-start;
        align-items: stretch;
    }
    
    .nav-menu.active {
        left: 0;
        pointer-events: auto !important;
        z-index: 10000 !important;
    }
    
    .nav-menu.active *,
    .nav-menu * {
        pointer-events: auto !important;
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 9998;
        pointer-events: none;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        pointer-events: auto;
        z-index: 9998 !important;
    }
    
    /* Menü her zaman overlay'in üstünde olmalı */
    .nav-menu.active {
        z-index: 10000 !important;
        pointer-events: auto !important;
    }
    
    .nav-menu.active * {
        pointer-events: auto !important;
        position: relative;
        z-index: 1;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-menu li:first-child:not(.mobile-menu-logo) {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .mobile-menu-logo {
        display: block !important;
        padding: 15px 20px !important;
        padding-top: 15px !important;
        text-align: center;
        background: var(--bg-white);
        border-bottom: 2px solid var(--border-color);
        margin: 0 !important;
        margin-bottom: 5px !important;
        flex-shrink: 0;
    }
    
    .mobile-menu-logo .mobile-logo-img {
        height: 50px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
    
    .nav-menu > li:not(.mobile-menu-logo) {
        padding: 0 20px;
        margin-top: 0;
    }
    
    .nav-menu > li:not(.mobile-menu-logo):first-of-type {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .nav-menu > li:not(.mobile-menu-logo):nth-child(odd) {
        background: rgba(170, 106, 47, 0.03);
    }
    
    .nav-menu > li:not(.mobile-menu-logo):nth-child(even) {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .nav-menu > li > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 14px 20px;
        padding-right: 40px;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        margin: 2px 0;
    }
    
    .nav-menu > li > a .fa-chevron-down {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    
    .nav-menu > li.dropdown.active > a .fa-chevron-down,
    .nav-menu > li.mega-menu.active > a .fa-chevron-down {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 16px 20px;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        margin: 4px 0;
        text-align: left;
    }
    
    .nav-menu a:hover {
        background: var(--secondary-color);
        color: var(--bg-white);
        transform: translateX(5px);
        box-shadow: 0 4px 12px rgba(170, 106, 47, 0.3);
    }
    
    .nav-menu a.active {
        background: var(--secondary-color);
        color: var(--bg-white);
        box-shadow: 0 4px 12px rgba(170, 106, 47, 0.3);
    }
    
    .nav-menu a i {
        font-size: 18px;
        width: 24px;
        min-width: 24px;
        text-align: left;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .nav-menu > li > a > i:not(.fa-chevron-down) {
        text-align: center;
    }
    
    .nav-menu a {
        text-align: left;
    }
    
    .nav-menu a:hover i,
    .nav-menu a.active i {
        transform: scale(1.2);
        color: var(--bg-white);
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--text-dark);
        padding: 5px;
        min-width: 40px;
        height: 40px;
        font-size: 24px;
        transition: var(--transition);
        background: none;
        border: none;
    }
    
    .mobile-menu-toggle:hover {
        color: var(--primary-color);
    }
    
    .mobile-menu-toggle i {
        font-size: 24px;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none !important;
        box-shadow: none;
        background: rgba(170, 106, 47, 0.05);
        padding: 0 !important;
        margin: 8px 0 0 0 !important;
        border: none;
        border-radius: 8px;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, visibility 0.4s ease;
        display: block !important;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 1000px !important;
        padding: 12px 0 !important;
        margin-top: 8px !important;
    }
    
    .dropdown-menu li {
        border-bottom: none;
        padding: 0;
        background: transparent;
        width: 100%;
    }
    
    .dropdown-menu li:nth-child(odd),
    .dropdown-menu li:nth-child(even) {
        background: transparent;
    }
    
    .dropdown-menu a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px !important;
        font-size: 14px;
        color: var(--text-dark);
        border-radius: 6px;
        transition: all 0.3s ease;
        margin: 2px 0;
        width: 100%;
    }
    
    .dropdown-menu a:hover {
        background: var(--secondary-color);
        color: var(--bg-white);
        transform: translateX(5px);
    }
    
    .dropdown-menu a i {
        font-size: 14px;
        width: 20px;
    }
    
    .mega-menu-content {
        position: static !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none !important;
        box-shadow: none;
        background: rgba(170, 106, 47, 0.05);
        margin: 8px 0 0 0 !important;
        padding: 0 !important;
        border-radius: 8px;
        max-width: 100% !important;
        left: auto !important;
        width: 100% !important;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, visibility 0.4s ease;
        display: block !important;
    }
    
    .mega-menu.active .mega-menu-content {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 3000px !important;
        padding: 20px !important;
        margin-top: 8px !important;
    }
    
    .mega-menu-main,
    .mega-menu-subcategories-view {
        display: block !important;
    }
    
    .mega-menu-view {
        display: none !important;
    }
    
    .mega-menu-view.active {
        display: block !important;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        align-items: stretch;
    }
    
    .mega-menu-item-wrapper {
        height: 100%;
        display: flex;
    }
    
    .mega-menu-item {
        width: 100%;
        height: 100%;
        min-height: 200px;
        display: flex;
        flex-direction: column;
    }
    
    .mega-menu-image {
        height: 120px;
        min-height: 120px;
        flex-shrink: 0;
    }
    
    .mega-menu-item h4 {
        font-size: 14px;
        padding: 12px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
    }
    
    .mega-menu-content {
        padding: 20px;
    }
    
    .mega-menu-subcategories-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .mega-menu-subcategories-list ul li {
        height: 100%;
        display: flex;
    }
    
    .mega-menu-subcategories-list ul li a {
        width: 100%;
        height: 100%;
        min-height: 60px;
        display: flex;
        align-items: center;
        padding: 15px 12px !important;
        font-size: 13px;
        box-sizing: border-box;
    }
    
    .mega-menu-subcategories-title {
        font-size: 20px;
    }
    
    .hero {
        height: auto;
        min-height: auto;
        background: transparent;
        padding: 0;
        margin: 0;
    }
    
    .hero-slider {
        height: auto;
    }
    
    .slide {
        height: auto;
    }
    
    /* Mobilde slider'ı tam ekran resim yap */
    .hero {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    .hero-slider {
        height: auto !important;
        min-height: auto !important;
    }
    
    .slide {
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
    }
    
    .slide-image {
        width: 100% !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .slide-image img {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        object-fit: contain;
        object-position: center;
        display: block;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Slider kontrollerini küçült */
    .slider-controls {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-large {
        grid-row: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }
    
    .logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .header-actions {
        display: flex;
        flex-direction: row;
        gap: 0;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    /* Mobilde arama kutusunu header-top'tan gizle */
    .header-actions .search-box {
        display: none;
    }
    
    .header-icons {
        gap: 12px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .header-icons .mobile-menu-toggle {
        display: flex;
    }
    
    .icon-link {
        padding: 5px;
        min-width: 40px;
    }
    
    .icon-link i {
        font-size: 18px;
    }
    
    .icon-link span:not(.badge) {
        display: none;
    }
    
    .login-text {
        display: none;
    }
    
    .login-link {
        min-width: auto;
    }
    
    .language-selector {
        flex-shrink: 0;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .lang-code {
        min-width: 25px;
        font-size: 10px;
    }
    
    .lang-btn i:first-child {
        font-size: 14px;
    }
    
    .lang-btn i:last-child {
        font-size: 9px;
    }
    
    .badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -2px;
        right: -2px;
    }
    
    /* Navbar'a arama kutusu ekle */
    .navbar {
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    /* Mobilde arama kutusunu navbar içinde göster */
    .mobile-search-box {
        display: block;
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-right: -20px;
        padding: 10px 20px;
        border-bottom: 1px solid var(--border-color);
        background: var(--bg-light);
    }
    
    .mobile-search-box .search-box {
        display: flex;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .mobile-search-box .search-box form {
        display: flex;
        width: 100%;
    }
    
    .mobile-search-box .search-box input {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .mobile-search-box .search-box input::placeholder {
        font-size: 13px;
    }
    
    .mobile-search-box .search-btn {
        padding: 10px 18px;
        font-size: 16px;
    }
    
    .nav-menu {
        gap: 15px;
        padding: 12px 0;
    }
    
    .nav-menu a {
        font-size: 13px;
        gap: 5px;
        padding: 5px 0;
    }
    
    .nav-menu a i {
        font-size: 14px;
        width: 16px;
    }
    
    .hero {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        background: transparent;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-slider {
        height: auto !important;
        min-height: auto !important;
    }
    
    .slide {
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
    }
    
    .slide-image {
        height: auto !important;
        min-height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
    }
    
    .slide-image img {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
        object-fit: contain;
        object-position: center;
        display: block;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    
    .btn {
        padding: 9px 18px;
        font-size: 13px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-tabs {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .product-tab {
        padding: 12px 20px;
        font-size: 14px;
        margin-right: 0;
        flex: 1;
        min-width: calc(33.333% - 5px);
    }
    
    .products-carousel-wrapper {
        padding: 30px 0;
        width: 100%;
    }
    
    .products-carousel {
        padding: 0 50px;
    }
    
    .products-slide .product-card {
        min-width: calc(50% - 8px);
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .btn-add-cart,
    .btn-view {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .product-price .price {
        font-size: 20px;
    }
    
    .product-price .price-old {
        font-size: 16px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .banners-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-payment-security {
        flex-direction: column;
        text-align: center;
    }
    
    .security-badges,
    .payment-cards {
        width: 100%;
    }
    
    .badges-grid,
    .cards-grid {
        justify-content: center;
    }
    
    .footer-credits {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .company-info li strong {
        min-width: 100px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .marlev-credit {
        margin-top: 10px;
    }
    
    .modal {
        max-width: calc(100vw - 32px);
        width: 100%;
        margin: 16px;
        padding: 24px 20px 20px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
    }
    
    .modal-overlay {
        padding: 0;
        align-items: flex-start;
        padding-top: 0;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
        z-index: 10001;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-header p {
        font-size: 13px;
    }
    
    .modal-body {
        font-size: 13px;
    }
    
    .product-detail-modal .modal-close {
        position: fixed;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .product-detail-modal {
        max-width: 100vw;
        width: 100%;
        max-height: 100vh;
        height: 100vh;
        margin: 0;
        border-radius: 0;
        padding: 0;
    }
    
    .product-detail-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 100vh;
        overflow-y: auto;
        padding-bottom: 120px;
    }
    
    /* Başlık bölümü - En üstte */
    .product-detail-info {
        display: contents;
    }
    
    .product-detail-header {
        order: 1;
        padding: 20px 15px 15px;
        background: var(--bg-white);
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .product-detail-code {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    
    .product-detail-title {
        font-size: 20px;
        margin: 0 0 15px 0;
        line-height: 1.4;
        padding-right: 40px;
    }
    
    .product-detail-price-section {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin: 0;
    }
    
    .product-detail-price {
        font-size: 24px;
    }
    
    .product-detail-old-price {
        font-size: 18px;
    }
    
    /* Resim bölümü - Başlığın altında */
    .product-detail-images {
        order: 2;
        padding: 0;
        margin: 0;
    }
    
    .product-main-image {
        height: 300px;
        min-height: 300px;
        border-radius: 0;
        margin: 0;
    }
    
    .product-thumbnails {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        padding: 15px;
        background: var(--bg-light);
    }
    
    .product-thumbnails .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    /* Açıklama bölümü - Resmin altında */
    .product-detail-description {
        order: 3;
        font-size: 14px;
        line-height: 1.6;
        padding: 20px 15px;
        background: var(--bg-white);
        border-top: 1px solid var(--border-color);
        margin: 0;
    }
    
    .product-detail-description h3 {
        font-size: 16px;
        margin-bottom: 10px;
        color: var(--primary-color);
    }
    
    .product-detail-description p {
        margin: 0;
        color: var(--text-dark);
    }
    
    /* Özellikler bölümü - Açıklamanın altında */
    .product-detail-features {
        order: 4;
        padding: 20px 15px;
        background: var(--bg-white);
        border-top: 1px solid var(--border-color);
    }
    
    .product-detail-features h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    .product-detail-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .product-detail-features ul li {
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--text-dark);
    }
    
    .product-detail-features ul li i {
        color: var(--secondary-color);
        font-size: 14px;
    }
    
    /* Butonlar - En altta */
    .product-detail-actions {
        order: 5;
        flex-direction: column;
        gap: 10px;
        margin: 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 15px;
        border-top: 2px solid var(--border-color);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .btn-add-cart-large,
    .btn-favorite-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #2b2b2b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #2b2b2b;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Login Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 30px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.3s ease;
}

/* Sepet ve Favori Modalı - Daha Geniş */
#cart-modal .modal,
#favorites-modal .modal {
    max-width: 800px;
    padding: 30px;
}

@media (max-width: 992px) {
    #cart-modal .modal,
    #favorites-modal .modal {
        max-width: 700px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    #cart-modal .modal,
    #favorites-modal .modal {
        max-width: calc(100vw - 32px);
        padding: 20px;
    }
}

@media (max-width: 480px) {
    #cart-modal .modal,
    #favorites-modal .modal {
        max-width: calc(100vw - 24px);
        margin: 12px;
        padding: 16px;
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-header h2 {
    margin-bottom: 8px;
    font-size: 24px;
    color: var(--text-dark);
}

.modal-header p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.modal-body {
    font-size: 14px;
    color: var(--text-light);
}

#cart-modal .modal-body,
#favorites-modal .modal-body {
    padding: 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

@media (max-width: 768px) {
    #cart-modal .modal-body,
    #favorites-modal .modal-body {
        max-height: calc(100vh - 180px);
    }
}

@media (max-width: 480px) {
    #cart-modal .modal-body,
    #favorites-modal .modal-body {
        max-height: calc(100vh - 160px);
    }
}

#cart-modal .modal-body::-webkit-scrollbar,
#favorites-modal .modal-body::-webkit-scrollbar {
    width: 6px;
}

#cart-modal .modal-body::-webkit-scrollbar-track,
#favorites-modal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

#cart-modal .modal-body::-webkit-scrollbar-thumb,
#favorites-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

#cart-modal .modal-body::-webkit-scrollbar-thumb:hover,
#favorites-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.empty-state {
    text-align: center;
    padding: 20px 10px 10px;
}

.empty-state i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.empty-state h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.empty-state p {
    margin-bottom: 15px;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.modal-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.modal-form input[type="email"],
.modal-form input[type="password"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.modal-form input[type="email"]:focus,
.modal-form input[type="password"]:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(170, 106, 47, 0.15);
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    gap: 10px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox span {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.4;
    white-space: nowrap;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    margin-left: auto;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.modal-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    font-size: 12px;
    color: var(--text-light);
}

.modal-divider::before,
.modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    margin: 0 8px;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

/* Product Detail Modal */
.product-detail-modal {
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-main-image {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    object-fit: cover;
}

.product-thumbnails .thumbnail:hover,
.product-thumbnails .thumbnail.active {
    border-color: var(--secondary-color);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.product-detail-code {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-detail-title {
    font-size: 28px;
    color: var(--primary-color);
    margin: 10px 0 15px;
    line-height: 1.3;
}

.product-detail-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-detail-old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-detail-description h3,
.product-detail-features h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-detail-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
}

.product-detail-features ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 15px;
}

.product-detail-features ul li i {
    color: var(--secondary-color);
    font-size: 14px;
}

.product-detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-add-cart-large,
.btn-favorite-large {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart-large,
.product-detail-actions .btn-add-cart-large {
    background: var(--secondary-color) !important;
    color: #ffffff !important;
}

.btn-add-cart-large:hover,
.product-detail-actions .btn-add-cart-large:hover,
.btn-add-cart-large:focus,
.product-detail-actions .btn-add-cart-large:focus {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 106, 47, 0.3);
}

.btn-favorite-large {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-favorite-large:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 50, 56, 0.2);
}

.btn-favorite-large.active {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.btn-favorite-large.active:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.social-btn {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 8px 10px;
    background: #fafafa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    transition: var(--transition);
    color: var(--text-dark);
}

.social-btn i {
    font-size: 16px;
    transition: var(--transition);
}

.social-btn.google {
    border-color: #db4437;
    color: #db4437;
}

.social-btn.google i {
    color: #db4437;
}

.social-btn.google:hover {
    background: #db4437;
    color: white;
    border-color: #db4437;
}

.social-btn.google:hover i {
    color: white;
}

.social-btn.facebook {
    background: #aa6a2f;
    color: #fff;
    border-color: #aa6a2f;
}

.social-btn.facebook i {
    color: #fff;
}

.social-btn.facebook:hover {
    background: #8a5520;
    border-color: #8a5520;
}

.social-btn.facebook:hover i {
    color: #fff;
}

.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.modal-footer-text {
    font-size: 13px;
    text-align: center;
    margin-top: 5px;
}

.modal-footer-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
        position: fixed;
        z-index: 998;
    }
    
    .whatsapp-float i {
        font-size: 30px;
        line-height: 60px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* FINAL OVERRIDE - Sepete Ekle butonları için kesin beyaz yazı rengi */
button.btn-add-cart,
button.btn-add-cart-large,
button.btn-add-cart:hover,
button.btn-add-cart:focus,
button.btn-add-cart:active,
button.btn-add-cart-large:hover,
button.btn-add-cart-large:focus,
button.btn-add-cart-large:active,
.product-buttons button.btn-add-cart,
.product-buttons button.btn-add-cart:hover,
.product-buttons button.btn-add-cart:focus,
.product-buttons button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart,
.product-detail-actions button.btn-add-cart:hover,
.product-detail-actions button.btn-add-cart:focus,
.product-detail-actions button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart-large,
.product-detail-actions button.btn-add-cart-large:hover,
.product-detail-actions button.btn-add-cart-large:focus,
.product-detail-actions button.btn-add-cart-large:active,
.product-card button.btn-add-cart,
.product-card button.btn-add-cart:hover,
.product-card button.btn-add-cart:focus,
.product-card button.btn-add-cart:active,
.products-slide button.btn-add-cart,
.products-slide button.btn-add-cart:hover,
.products-slide button.btn-add-cart:focus,
.products-slide button.btn-add-cart:active,
.campaign-products-carousel button.btn-add-cart,
.campaign-products-carousel button.btn-add-cart:hover,
.campaign-products-carousel button.btn-add-cart:focus,
.campaign-products-carousel button.btn-add-cart:active {
    color: #ffffff !important;
    background: var(--secondary-color) !important;
}

button.btn-add-cart:hover,
button.btn-add-cart:focus,
button.btn-add-cart:active,
button.btn-add-cart-large:hover,
button.btn-add-cart-large:focus,
button.btn-add-cart-large:active,
.product-buttons button.btn-add-cart:hover,
.product-buttons button.btn-add-cart:focus,
.product-buttons button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart:hover,
.product-detail-actions button.btn-add-cart:focus,
.product-detail-actions button.btn-add-cart:active,
.product-detail-actions button.btn-add-cart-large:hover,
.product-detail-actions button.btn-add-cart-large:focus,
.product-detail-actions button.btn-add-cart-large:active,
.product-card button.btn-add-cart:hover,
.product-card button.btn-add-cart:focus,
.product-card button.btn-add-cart:active,
.products-slide button.btn-add-cart:hover,
.products-slide button.btn-add-cart:focus,
.products-slide button.btn-add-cart:active,
.campaign-products-carousel button.btn-add-cart:hover,
.campaign-products-carousel button.btn-add-cart:focus,
.campaign-products-carousel button.btn-add-cart:active {
    background: #2e7d32 !important; /* Daha koyu yeşil - kesinlikle beyaz değil */
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background: var(--bg-white);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

.breadcrumb-item.active span {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   LOGIN & REGISTER PAGES
   ============================================ */

/* Login/Register Section */
.login-section,
.register-section {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.register-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.login-content-centered {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.register-content-centered {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

.register-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.login-header,
.register-header {
    margin-bottom: 30px;
    text-align: center;
}

.login-header h1,
.register-header h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.login-header p,
.register-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Form Styles */
.login-form {
    max-width: 500px;
    margin: 0 auto;
}

.register-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(170, 106, 47, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
}

.password-input-wrapper input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle i {
    font-size: 18px;
}

/* Form Help Text */
.form-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--text-light);
}

/* Password Strength Indicator */
.password-strength {
    margin-top: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.password-strength-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.password-strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.password-strength-text {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.password-suggestions {
    font-size: 12px;
    color: var(--text-light);
}

.password-suggestions-title {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.password-suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-suggestions-list li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.password-suggestions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.password-suggestions-success {
    color: #27ae60;
    font-weight: 600;
    padding: 4px 0;
}

/* Form Row (for side by side inputs) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    flex-shrink: 0;
    min-width: 20px;
}

.checkbox-text {
    color: var(--text-dark);
    flex: 1;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    font-size: 14px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.checkbox-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline;
    word-break: break-word;
    overflow-wrap: break-word;
}

.checkbox-link:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

.checkbox a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.checkbox a:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

/* Form Error Messages */
.form-error {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #e74c3c;
    min-height: 16px;
}

/* Form Message (Success/Error) */
.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form Divider */
.form-divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
    text-align: center;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    padding: 0 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* Social Login Buttons */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.social-btn {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-btn.google {
    border-color: #db4437;
    color: #db4437;
}

.social-btn.google i {
    color: #db4437;
}

.social-btn.google:hover {
    background: #db4437 !important;
    color: white !important;
    border-color: #db4437 !important;
}

.social-btn.google:hover i {
    color: white !important;
}

.social-btn.facebook {
    background: #aa6a2f !important;
    border-color: #aa6a2f !important;
    color: #fff !important;
}

.social-btn.facebook i {
    color: #fff !important;
}

.social-btn.facebook:hover {
    background: #8a5520 !important;
    border-color: #8a5520 !important;
    color: #fff !important;
}

.social-btn.facebook:hover i {
    color: #fff !important;
}

.social-btn:hover:not(.google):not(.facebook) {
    border-color: var(--primary-color);
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-btn.google:hover,
.social-btn.facebook:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-btn i {
    font-size: 18px;
    transition: var(--transition);
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.form-footer p {
    color: var(--text-light);
    font-size: 14px;
}

.form-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

.form-footer a:hover {
    text-decoration: underline;
}


/* Button Full Width */
.btn-full {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-full:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-full i.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Forgot Link */
.forgot-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.forgot-link:hover {
    text-decoration: underline;
    color: var(--secondary-dark);
}

/* Responsive Design */
@media (max-width: 968px) {
    .login-wrapper,
    .register-wrapper {
        padding: 0 15px;
    }
    
    .login-content-centered,
    .register-content-centered {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .login-section,
    .register-section {
        padding: 40px 0;
    }
    
    .login-header h1,
    .register-header h1 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .login-content-centered,
    .register-content-centered {
        padding: 25px 15px;
        max-width: 100%;
    }
    
    .register-wrapper {
        padding: 0 10px;
    }
    
    .checkbox-group {
        padding: 12px 10px;
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .checkbox {
        gap: 8px;
        width: 100%;
        max-width: 100%;
    }
    
    .checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-top: 3px;
        flex-shrink: 0;
        min-width: 18px;
    }
    
    .checkbox-text {
        font-size: 13px;
        line-height: 1.5;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: calc(100% - 26px);
        box-sizing: border-box;
    }
    
    .checkbox-link {
        display: inline;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .login-header h1,
    .register-header h1 {
        font-size: 24px;
    }
    
    .login-header p,
    .register-header p {
        font-size: 14px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="password"] {
        padding: 10px 14px;
        font-size: 15px;
    }
    
    .btn-full {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .register-content-centered {
        padding: 20px 12px;
    }
    
    .checkbox-group {
        padding: 10px 8px;
        margin-bottom: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .checkbox {
        gap: 6px;
        align-items: flex-start;
        width: 100%;
        max-width: 100%;
    }
    
    .checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex-shrink: 0;
        min-width: 16px;
    }
    
    .checkbox-text {
        font-size: 12px;
        line-height: 1.5;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: calc(100% - 22px);
        box-sizing: border-box;
    }
    
    .checkbox-link {
        display: inline;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: 12px;
        max-width: 100%;
    }
    
    .password-strength {
        padding: 8px;
    }
    
    .password-suggestions {
        font-size: 11px;
    }
}

/* ============================================
   ACCOUNT PAGE
   ============================================ */
.account-section {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
}

.account-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Account Sidebar */
.account-sidebar {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 30px 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-user-info {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--secondary-color);
}

.account-user-info h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.user-email {
    font-size: 14px;
    color: var(--text-light);
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    margin-bottom: 5px;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    cursor: pointer;
}

.account-menu-item:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.account-menu-item.active {
    background: var(--secondary-color);
    color: white;
}

.account-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.account-menu-item .badge {
    margin-left: auto;
    background: var(--accent-orange);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.account-menu-item.active .badge {
    background: rgba(255, 255, 255, 0.3);
}

.account-menu-item.logout-btn {
    color: #e74c3c;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.account-menu-item.logout-btn:hover {
    background: #fee;
    color: #c0392b;
}

/* Account Content */
.account-content {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;
}

.account-tab-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.account-tab-header h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.account-tab-header p {
    color: var(--text-light);
    font-size: 15px;
}

/* Account Form */
.account-form {
    max-width: 600px;
}

.account-form .form-group input:disabled {
    background: var(--bg-light);
    cursor: not-allowed;
}

.form-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
}

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

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.order-info h3 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.order-date {
    font-size: 14px;
    color: var(--text-light);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #d1ecf1;
    color: #0c5460;
}

.status-shipped {
    background: #cce5ff;
    color: #004085;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.status-refunded {
    background: #e2e3e5;
    color: #383d41;
}

.order-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.order-item-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.order-item-count i {
    color: var(--secondary-color);
}

.order-total {
    font-size: 18px;
    color: var(--primary-color);
}

.order-actions {
    display: flex;
    gap: 10px;
}

/* Addresses List */
.addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.address-card {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
}

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

.address-card.default {
    border-color: var(--secondary-color);
    background: #f0f8ff;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-header h3 {
    font-size: 16px;
    color: var(--primary-color);
}

.default-badge {
    background: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.address-content {
    margin-bottom: 15px;
}

.address-content p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.address-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.address-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-danger {
    background: #e74c3c;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #c0392b;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 968px) {
    .account-wrapper {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
        margin-bottom: 20px;
    }
    
    .account-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .account-menu-item {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .account-content {
        padding: 20px 15px;
    }
    
    .order-header,
    .order-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .addresses-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CART PAGE
   ============================================ */

.cart-section {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
    background: var(--bg-light);
}

.cart-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--primary-color);
    margin: 0;
}

/* Empty Cart */
.cart-empty {
    background: var(--bg-white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cart-empty-icon {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Cart Content */
.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.cart-items {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cart-table-wrapper {
    overflow-x: auto;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background: var(--bg-light);
}

.cart-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-item:last-child td {
    border-bottom: none;
}

.cart-col-product {
    width: 40%;
}

.cart-col-price {
    width: 15%;
    text-align: center;
}

.cart-col-quantity {
    width: 20%;
    text-align: center;
}

.cart-col-total {
    width: 15%;
    text-align: right;
}

.cart-col-actions {
    width: 10%;
    text-align: center;
}

/* Cart Product */
.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info {
    flex: 1;
}

.cart-product-name {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.cart-product-name a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.cart-product-name a:hover {
    color: var(--secondary-color);
}

.cart-product-sku {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Cart Price */
.cart-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cart-price .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

.cart-price .price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.cart-price .price-new {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Cart Quantity */
.cart-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary-color);
}

.quantity-btn:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: white;
}

.quantity-input {
    width: 60px;
    height: 35px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(170, 106, 47, 0.1);
}

/* Cart Total */
.cart-total {
    text-align: right;
}

.cart-total strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

/* Cart Actions */
.cart-remove-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #e74c3c;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-remove-btn:hover {
    background: #fee;
    color: #c0392b;
}

.cart-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 100px;
}

.cart-summary-box {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cart-summary-box h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary-row:last-of-type {
    border-bottom: none;
}

.cart-summary-row span {
    font-size: 16px;
    color: var(--text-dark);
}

.cart-summary-row strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-summary-total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.cart-summary-total span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.cart-summary-total strong {
    font-size: 24px;
    color: var(--secondary-color);
}

.cart-summary-actions {
    margin-top: 25px;
}

/* Responsive */
@media (max-width: 968px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-summary {
        position: static;
    }
    
    .cart-table {
        font-size: 14px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 12px 10px;
    }
    
    .cart-col-product {
        width: 35%;
    }
    
    .cart-col-price {
        width: 20%;
    }
    
    .cart-col-quantity {
        width: 25%;
    }
    
    .cart-col-total {
        width: 15%;
    }
    
    .cart-col-actions {
        width: 5%;
    }
}

@media (max-width: 768px) {
    .cart-section {
        padding: 30px 0;
    }
    
    .cart-header h1 {
        font-size: 24px;
    }
    
    .cart-items {
        padding: 20px;
    }
    
    .cart-table {
        font-size: 12px;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }
    
    .cart-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 15px;
        background: var(--bg-white);
    }
    
    .cart-table td {
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left !important;
    }
    
    .cart-table td:last-child {
        border-bottom: none;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        width: 100px;
        color: var(--primary-color);
    }
    
    .cart-product {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-product-image {
        width: 100%;
        height: 200px;
    }
    
    .cart-quantity {
        justify-content: flex-start;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cart-wrapper {
        padding: 0 15px;
    }
    
    .cart-items {
        padding: 15px;
    }
    
    .cart-summary-box {
        padding: 20px;
    }
    
    .cart-product-image {
        height: 150px;
    }
    
    .quantity-input {
        width: 50px;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
    }
}

/* Modal Favorites & Cart Styles */
.favorites-list,
.cart-items {
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.favorite-item,
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    border-radius: 8px;
    margin-bottom: 10px;
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}

.favorite-item:hover,
.cart-item:hover {
    background: var(--bg-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.favorite-item-image,
.cart-item-image {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cart-item:hover .cart-item-image {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.favorite-item-image img,
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-item-info,
.cart-item-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
}

.favorite-item-info h4,
.cart-item-info h4 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.favorite-item-info h4 a,
.cart-item-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.favorite-item-info h4 a:hover,
.cart-item-info h4 a:hover {
    color: var(--primary-color);
}

.favorite-item-price,
.cart-item-price {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.cart-item-total {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.favorite-item-actions,
.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    flex-shrink: 0;
    min-width: 140px;
}

.favorite-item-actions .btn,
.cart-item-actions .btn {
    padding: 8px 15px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cart-item-actions .btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.cart-item-actions .btn-danger:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 6px;
}

.quantity-controls .quantity {
    min-width: 35px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: var(--text-dark);
}

.btn-quantity {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-quantity:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(170, 106, 47, 0.3);
}

.btn-quantity:active {
    transform: scale(0.95);
}

.cart-summary {
    padding: 15px;
    border-top: 2px solid var(--border-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    box-sizing: border-box;
}

.cart-summary-content {
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cart-total-row:last-child {
    border-bottom: none;
}

.cart-total-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.cart-total-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.cart-total-final {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 2px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}

.cart-total-final .cart-total-label {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 700;
}

.cart-total-final .cart-total-value {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.cart-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cart-actions .btn {
    flex: 1;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
}

.cart-actions .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cart-actions .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(170, 106, 47, 0.3);
}

.cart-actions .btn-checkout {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(170, 106, 47, 0.4);
}

.cart-actions .btn-checkout:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(170, 106, 47, 0.5);
}

.cart-actions .btn-checkout i {
    font-size: 14px;
}

.loading-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.loading-state i {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.loading-state p {
    margin: 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    #cart-modal .modal {
        max-width: 700px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    #cart-modal .modal {
        max-width: calc(100vw - 32px);
        padding: 20px;
    }
    
    .cart-items {
        padding: 12px;
    }
    
    .favorite-item,
    .cart-item {
        flex-wrap: wrap;
        padding: 12px;
        gap: 12px;
        margin-bottom: 10px;
    }
    
    .favorite-item-image,
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
    
    .favorite-item-info,
    .cart-item-info {
        max-width: 100%;
    }
    
    .favorite-item-info h4,
    .cart-item-info h4 {
        font-size: 14px;
    }
    
    .favorite-item-price,
    .cart-item-price {
        font-size: 13px;
    }
    
    .cart-item-total {
        font-size: 15px;
    }
    
    .favorite-item-actions,
    .cart-item-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 10px;
        align-items: center;
        min-width: auto;
    }
    
    .quantity-controls {
        gap: 8px;
    }
    
    .btn-quantity {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .quantity-controls .quantity {
        min-width: 30px;
        font-size: 14px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-actions .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cart-summary {
        padding: 12px;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-total-row {
        padding: 10px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-total-final {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-actions {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-total-label {
        font-size: 14px;
    }
    
    .cart-total-value {
        font-size: 15px;
    }
    
    .cart-total-final .cart-total-label {
        font-size: 16px;
    }
    
    .cart-total-final .cart-total-value {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    #cart-modal .modal {
        max-width: calc(100vw - 24px);
        margin: 12px;
        padding: 16px;
    }
    
    .cart-items {
        padding: 10px;
    }
    
    .favorite-item,
    .cart-item {
        padding: 10px;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .favorite-item-image,
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .favorite-item-info,
    .cart-item-info {
        max-width: 100%;
    }
    
    .favorite-item-info h4,
    .cart-item-info h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .favorite-item-price,
    .cart-item-price {
        font-size: 12px;
    }
    
    .cart-item-total {
        font-size: 14px;
    }
    
    .cart-item-actions .btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .cart-summary {
        padding: 10px;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-total-row {
        padding: 8px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-total-final {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-total-final .cart-total-value {
        font-size: 18px;
    }
    
    .cart-actions {
        width: 100%;
        box-sizing: border-box;
    }
    
    .cart-actions .btn {
        padding: 12px 16px;
        font-size: 13px;
        box-sizing: border-box;
    }
}

