/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --accent-color: #0066cc;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --discount-color: #e74c3c;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
.navbar {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* 3 kolon: Sol | Orta (Logo) | Sağ */
.navbar-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.navbar-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

.navbar-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.navbar-logo {
    text-decoration: none;
}

.navbar-logo .logo {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.12em;
    text-decoration: none;
    font-family: 'Cormorant Garamond', Georgia, serif;
    display: inline-flex;
    align-items: baseline;
}

.navbar-logo .logo-no,
.navbar-logo .logo-10,
.navbar-logo .logo-plus {
    font-size: 1em;
    font-weight: 600;
}

.navbar-logo .logo:hover {
    color: var(--accent-color);
}

.navbar-logo a {
    text-decoration: none;
    color: inherit;
}

/* Kategoriler - İndirimdeki ve Öne Çıkan ile aynı stil, eşit hiza */
.nav-menu-left {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-menu.nav-menu-left .nav-link-trigger,
.nav-menu.nav-menu-left .nav-link,
.nav-menu.nav-menu-left li a {
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.nav-menu.nav-menu-left .nav-link-trigger:hover,
.nav-menu.nav-menu-left .nav-link:hover,
.nav-menu.nav-menu-left li a:hover {
    color: var(--accent-color);
}

.nav-link-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    line-height: 1.4;
    vertical-align: middle;
}

.nav-link-trigger {
    cursor: pointer;
}

.nav-menu-left > li {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-menu.mobile-drawer {
    display: none;
}

.nav-item-categories .nav-dropdown {
    left: 0;
}

.nav-caret {
    font-size: 9px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.nav-item.has-dropdown:hover .nav-caret {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 1100;
}

.nav-item.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #111827;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover {
    background: #f3f4f6;
    color: var(--accent-color);
}

.nav-dropdown a::after {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--accent-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background-color: var(--bg-light);
}

.hero-slider .container {
    position: relative;
    max-width: 1600px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    padding: 0 100px;
}

.slide-text {
    max-width: 500px;
    color: var(--white);
}

.slide-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.slide-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.slide-discount {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.slide-button {
    display: inline-block;
    padding: 15px 50px;
    background-color: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.slide-button:hover {
    color: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.slide-button:hover::before {
    left: 0;
}

/* Placeholder görseller */
.slide-image img[src*="placeholder"],
.slide-image img:not([src]),
.slide-image:empty::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.slide-image:empty::after {
    content: 'Görsel Yükleniyor...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Ürün placeholder */
.product-placeholder,
.product-image:empty {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* Kategori placeholder */
.category-placeholder {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Sections */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background-color: var(--white);
}

.categories-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-showcase-card {
    position: relative;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.category-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-light);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-showcase-card:hover .category-image {
    transform: scale(1.1);
}

.category-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    position: relative;
}

.category-icon {
    font-size: 120px;
    opacity: 0.3;
    color: var(--text-light);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.category-showcase-card:hover .category-overlay {
    opacity: 0.9;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--white);
}

.category-brand-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.category-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

/* Featured Products */
.featured-products {
    padding: 60px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    align-items: stretch;
}

.section-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.section-more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.section-more-link:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Öne Çıkan Ürünler - İndirim Kartı ile Aynı Yazı Stili */
.featured-products .product-info-wrapper {
    padding: 8px 10px 10px;
    gap: 6px;
    display: flex;
    flex-direction: column;
    min-height: 0;
    justify-content: space-between;
}

.featured-products .price-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    row-gap: 6px;
}

.featured-products .price-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.featured-products .price-right {
    flex-shrink: 0;
    max-width: 100%;
    margin-left: auto;
    flex-basis: auto;
}

.featured-products .bulk-discount-box {
    max-width: 100%;
    white-space: normal;
}

.featured-products .bulk-text,
.featured-products .bulk-price {
    display: block;
    word-break: break-word;
    text-align: right;
}

@media (max-width: 768px) {
    .featured-products .price-right {
        flex-basis: 100%;
        margin-left: 0;
    }

    .featured-products .bulk-text,
    .featured-products .bulk-price {
        text-align: left;
    }
}

.product-contact-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-contact-btn:hover {
    background-color: #20BA5A;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

/* Footer */
/* Footer - Modern & Şık Tasarım */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 60px 0 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--white);
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: auto;
    justify-content: flex-start;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.social-link.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact {
    max-width: 250px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.contact-item:hover {
    color: var(--white);
}

.contact-item:hover svg {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.developer-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.developer-credit strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

/* Contact Page */
.contact-page {
    background: var(--white);
}

.contact-hero {
    padding: 70px 0 35px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(26, 26, 26, 0.04));
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-hero-content {
    max-width: 780px;
}

.contact-title {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.contact-section {
    padding: 45px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 30px;
    align-items: stretch;
}

.contact-cards {
    display: grid;
    gap: 16px;
    height: 100%;
}

.contact-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 18px 18px;
    display: flex;
    gap: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.10);
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-card-body h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.contact-card-body p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-map-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-map-header {
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-map-header h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: var(--primary-color);
}

.contact-map-header p {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
}

.contact-map-body {
    background: var(--bg-light);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-map-iframe {
    display: block;
    width: 100%;
    flex: 1;
    min-height: 0;
}

.contact-map-placeholder {
    padding: 30px 18px;
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-title {
        font-size: 34px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 55px 0 28px;
    }
    .contact-title {
        font-size: 30px;
    }
    .contact-card {
        padding: 16px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsapp-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 svg {
    width: 32px;
    height: 32px;
}

/* Sallanma animasyonu */
@keyframes whatsapp-shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px) rotate(-2deg); }
    20%, 40%, 60%, 80% { transform: translateX(3px) rotate(2deg); }
}

.whatsapp-float.shake {
    animation: whatsapp-shake 0.5s ease-in-out;
}

/* Pulse animasyonu */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Category Browse Section - Minimal Design */
.category-browse-section {
    padding: 80px 0;
    background-color: var(--white);
    min-height: calc(100vh - 200px);
}

.category-browse-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-browse-title {
    font-size: 42px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.category-browse-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    padding: 0;
}

.category-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-card-content {
    padding: 32px 28px;
}

.category-card-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-color);
    line-height: 1.3;
}

.category-card-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Aksesuar kartları için renkli gradient tasarım */
.accessory-grid {
    max-width: 1400px;
}

.accessory-card {
    position: relative;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.accessory-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.category-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

.accessory-card:hover .category-card-bg {
    transform: scale(1.05);
    opacity: 1;
}

.accessory-card .category-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-card-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accessory-card:hover .category-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.accessory-card .category-card-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.accessory-card .category-card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.accessory-card .category-card-content {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.category-card-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.accessory-card:hover .category-card-link {
    color: var(--white);
    transform: translateX(5px);
}

.category-card-link {
    color: rgba(255, 255, 255, 0.9);
}

/* İç Giyim için Premium Tasarım */
.underwear-grid {
    max-width: 1000px;
    gap: 25px;
}

.underwear-card {
    background: linear-gradient(135deg, #5a6c7d 0%, #6b7f91 100%);
    border-radius: 16px;
    text-decoration: none;
    color: var(--white);
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.underwear-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.underwear-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.25);
    filter: brightness(1.1);
}

.underwear-card:hover::before {
    opacity: 1;
}

.underwear-card-inner {
    padding: 45px 35px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.underwear-number {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    min-width: 40px;
    transition: color 0.3s ease;
}

.underwear-card:hover .underwear-number {
    color: rgba(255, 255, 255, 0.7);
}

.underwear-content {
    flex: 1;
}

.underwear-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.underwear-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, transparent 100%);
    margin-bottom: 15px;
    transition: width 0.4s ease;
}

.underwear-card:hover .underwear-divider {
    width: 80px;
}

.underwear-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.underwear-card:hover .underwear-desc {
    color: rgba(255, 255, 255, 0.9);
}

.underwear-arrow {
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.underwear-card:hover .underwear-arrow {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .category-browse-section {
        padding: 50px 0;
    }
    
    .category-browse-header {
        margin-bottom: 40px;
    }
    
    .category-browse-title {
        font-size: 32px;
    }
    
    .category-browse-subtitle {
        font-size: 14px;
    }
    
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card-content {
        padding: 24px 20px;
    }
    
    .category-card-title {
        font-size: 18px;
    }
    
    .category-card-desc {
        font-size: 13px;
    }
    
    /* Aksesuar kartları responsive */
    .accessory-card {
        height: 280px;
    }
    
    .accessory-card .category-card-content {
        padding: 30px 20px;
    }
    
    .category-card-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .accessory-card .category-card-title {
        font-size: 22px;
    }
    
    .accessory-card .category-card-desc {
        font-size: 13px;
    }
    
    /* İç giyim kartları responsive */
    .underwear-card-inner {
        padding: 30px 25px;
        gap: 20px;
    }
    
    .underwear-title {
        font-size: 24px;
    }
    
    .underwear-desc {
        font-size: 14px;
    }
    
    .underwear-number {
        font-size: 16px;
        min-width: 35px;
    }
}

@media (max-width: 480px) {
    .category-browse-title {
        font-size: 28px;
    }
    
    .category-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .category-card-content {
        padding: 24px 20px;
    }
    
    .category-card-title {
        font-size: 18px;
    }
    
    /* Aksesuar kartları mobil */
    .accessory-card {
        height: 260px;
    }
    
    .accessory-card .category-card-content {
        padding: 25px 20px;
    }
    
    .category-card-icon {
        font-size: 40px;
    }
    
    .accessory-card .category-card-title {
        font-size: 20px;
    }
    
    /* İç giyim kartları mobil */
    .underwear-card-inner {
        padding: 25px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .underwear-title {
        font-size: 22px;
    }
    
    .underwear-number {
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .underwear-arrow {
        align-self: flex-end;
    }
}

/* ============================================
   AUTH PAGES (Login & Register)
   ============================================ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.auth-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    z-index: 1;
}

.auth-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.auth-logo {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.05);
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.auth-header p {
    font-size: 15px;
    opacity: 0.9;
    color: white;
}

.auth-box {
    padding: 40px;
}

.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert svg {
    flex-shrink: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-left: 4px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #999;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-group input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group input:focus ~ .input-icon,
.input-wrapper:focus-within .input-icon {
    color: #667eea;
}

.form-group input::placeholder {
    color: #bbb;
}

.btn-auth {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-auth:active {
    transform: translateY(0);
}

.btn-auth svg {
    transition: transform 0.3s ease;
}

.btn-auth:hover svg {
    transform: translateX(4px);
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.auth-footer p {
    font-size: 14px;
    color: var(--text-light);
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.auth-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.auth-background-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.auth-background-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Auth sayfaları responsive */
@media (max-width: 768px) {
    .auth-container {
        border-radius: 20px;
    }
    
    .auth-header {
        padding: 32px 30px 24px;
    }
    
    .auth-logo {
        font-size: 28px;
    }
    
    .auth-header h1 {
        font-size: 24px;
    }
    
    .auth-box {
        padding: 32px 24px;
    }
    
    .auth-form {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .auth-page {
        padding: 10px;
    }
    
    .auth-header {
        padding: 28px 24px 20px;
    }
    
    .auth-logo {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .auth-header h1 {
        font-size: 22px;
    }
    
    .auth-header p {
        font-size: 14px;
    }
    
    .auth-box {
        padding: 28px 20px;
    }
    
    .form-group input {
        padding: 12px 14px 12px 44px;
        font-size: 14px;
    }
    
    .input-icon {
        left: 14px;
        width: 18px;
        height: 18px;
    }
    
    .btn-auth {
        padding: 14px;
        font-size: 15px;
    }
}

/* Öne Çıkan Ürünler - Responsive */
@media (max-width: 768px) {
    .featured-products .new-price {
        font-size: 15px;
    }
    
    .featured-products .bulk-price {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .featured-products .new-price {
        font-size: 14px;
    }
    
    .featured-products .bulk-price {
        font-size: 9px;
    }
    
    .featured-products .bulk-text {
        font-size: 8px;
    }
}



