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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5a8a, #ff7a9b);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

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

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

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b9d;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b9d, #d63384, transparent);
    opacity: 0.7;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #ff6b9d;
}

.dropdown {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
    margin-top: 10px;
}

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

/* Desktop: hover to open, mobile: click to open */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #ff6b9d;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #ff6b9d;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.auth-badge {
    background: #f3f4f7;
    color: #555;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.auth-badge.active {
    background: #ffeff5;
    color: #ff6b9d;
}

.search-box {
    position: relative;
    display: inline-block;
}

.search-input {
    padding: 10px 45px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    width: 250px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.search-icon-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-icon-btn:hover {
    background: rgba(255, 107, 157, 0.1);
}

.search-icon-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.search-icon {
    color: #ff6b9d;
    font-size: 1rem;
}

.nav-icon {
    position: relative;
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: #ff6b9d;
}

body {
    top: 0 !important;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b9d;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Membership Section */
.membership-section {
    padding: 5rem 0;
    background: white;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.membership-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.membership-card.featured {
    border-color: #ff6b9d;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b9d;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-header {
    margin-bottom: 2rem;
}

.card-header i {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
}

.benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits i {
    color: #ff6b9d;
    font-size: 0.9rem;
}

.password-strength {
    font-weight: 600;
    font-size: 0.8rem;
    margin-top: 6px;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #ff6b9d;
    color: white;
    border-color: #ff6b9d;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.product-image {
    position: relative;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    min-height: 250px;
    max-height: 250px;
}

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

.promotion-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ff6b9d;
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 6px 16px rgba(255, 107, 157, 0.35);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-overlay button,
.product-overlay .view-details {
    padding: 10px 20px;
    border-radius: 22px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.product-overlay button {
    background: white;
    color: #333;
}

.product-overlay .view-details {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.product-overlay button:hover,
.product-overlay .view-details:hover {
    transform: translateY(-2px);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ff6b9d;
    margin-bottom: 0.25rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
}

.product-price .price-original {
    text-decoration: line-through;
    color: #98a2b3;
    font-size: 0.95rem;
    margin-right: 8px;
}

.product-price .price-discounted {
    color: #ff2d6c;
}

.product-variants {
    font-size: 0.85rem;
    color: #667085;
    margin-bottom: 6px;
}

.product-price-large .price-original {
    text-decoration: line-through;
    color: #98a2b3;
    margin-right: 8px;
}

.product-price-large .price-discounted {
    color: #ff2d6c;
    font-weight: 600;
}

.product-wholesale {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.product-wholesale .price-original {
    text-decoration: line-through;
    color: #98a2b3;
    margin-right: 6px;
}

.product-wholesale .price-discounted {
    color: #ff2d6c;
    font-weight: 600;
}

/* Product Price Container - Birlikte Fiyat Gösterimi */
.product-price-container {
    margin-bottom: 0.75rem;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #475467;
    min-width: 80px;
}

.price-row .price-original {
    text-decoration: line-through;
    color: #98a2b3;
    font-size: 0.9rem;
}

.price-row .price-discounted {
    color: #ff2d6c;
    font-weight: 600;
    font-size: 1rem;
}

.price-row .product-price {
    color: #ff6b9d;
    font-weight: 600;
    font-size: 1rem;
}

.price-row-retail .product-price-retail {
    color: #ff6b9d;
    font-weight: 600;
    font-size: 1rem;
}

/* Toptan Fiyat - BÜYÜK */
.price-row-wholesale {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 2px solid #e4e7ec;
}

.product-price-wholesale {
    color: #ff2d6c;
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 8px;
}

.price-row-wholesale .price-original-small {
    text-decoration: line-through;
    color: #98a2b3;
    font-size: 1rem;
    margin-right: 8px;
}

.price-note {
    font-size: 0.8rem;
    color: #667085;
    margin-left: auto;
}

.price-note-row {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e4e7ec;
}

.price-note-row .price-note {
    margin-left: 0;
    font-size: 0.85rem;
    color: #98a2b3;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

.product-meta span i {
    margin-right: 4px;
    color: #ff6b9d;
}

.add-to-order {
    width: 100%;
    margin-bottom: 0.75rem;
}

.product-minimum {
    font-size: 0.85rem;
    color: #555;
}

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

.product-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.products-footer-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.products-footer-actions .btn {
    min-width: 200px;
}

.empty-state {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
    text-align: center;
    color: #555;
}

.empty-state img {
    width: 80px;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.empty-state h3,
.empty-state h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.modal-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 18px;
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.6rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
}

.modal-body {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    padding: 24px 28px 32px;
}

.modal-selector {
    margin-bottom: 12px;
}

.modal-selector label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475467;
    margin-bottom: 6px;
}

.modal-selector select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #dfe1e6;
}

.modal-wholesale {
    font-size: 0.95rem;
    color: #475467;
    margin-bottom: 12px;
}

.modal-wholesale .price-original {
    text-decoration: line-through;
    color: #98a2b3;
    margin-right: 6px;
}

.modal-wholesale .price-discounted {
    color: #ff2d6c;
    font-weight: 600;
}

.product-image-large {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-gallery {
    display: grid;
    gap: 12px;
}

.quick-gallery img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.product-feature-list {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.product-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.product-feature-list i {
    color: #ff6b9d;
}

.product-price-large {
    font-size: 1.3rem;
    color: #ff6b9d;
    font-weight: 600;
}

/* Wholesale Section */
.wholesale-section {
    padding: 5rem 0;
    background: white;
}

.wholesale-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wholesale-text h2 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.wholesale-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.wholesale-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.wholesale-benefits li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.wholesale-benefits i {
    color: #ff6b9d;
}

.wholesale-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wholesale-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo .brand-name {
    color: #ff6b9d;
}

.footer-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b9d;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b9d;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: #ff6b9d;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff6b9d;
}

body.admin-page,
body.dashboard-page {
    background: #f4f5f7;
}

body.admin-page .admin-wrapper,
body.dashboard-page .dashboard-wrapper {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 24px;
}

body.admin-page .admin-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.admin-sidebar {
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-profile {
    text-align: center;
}

.admin-profile img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.admin-profile h2 {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-nav button {
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: left;
    font-weight: 500;
    background: #f0f1f5;
    color: #333;
    transition: all 0.3s ease;
}

.admin-nav button.active,
.admin-nav button:hover {
    background: #ff6b9d;
    color: white;
}

.admin-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 32px;
}

.admin-panel {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.admin-panel.active {
    display: flex;
}

.admin-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.admin-card {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 24px;
}

.admin-search {
    margin-bottom: 12px;
}

.admin-search input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dadde4;
    border-radius: 12px;
    font-size: 0.95rem;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.admin-list-item .badge {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.btn-link {
    background: none;
    border: none;
    color: #ff6b9d;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

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

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #eff0f3;
}

.admin-table tbody tr:hover {
    background: #f9f9fc;
}

.table-empty {
    padding: 18px;
    text-align: center;
    color: #667085;
    font-size: 0.9rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-awaiting_payment { background: rgba(255, 193, 7, 0.2); color: #b08100; }
.status-pending_approval { background: rgba(23, 162, 184, 0.15); color: #117a8b; }
.status-approved { background: rgba(76, 175, 80, 0.18); color: #2e7d32; }
.status-completed { background: rgba(96, 125, 139, 0.18); color: #37474f; }
.status-rejected { background: rgba(220, 53, 69, 0.18); color: #c62828; }

.order-detail-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 460px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 11000;
}

.order-detail-drawer.open {
    right: 0;
}

.order-detail {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 24px;
    overflow-y: auto;
}

.order-detail header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-detail header .close-drawer {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #999;
}

.order-detail header .close-drawer:hover {
    color: #ff6b9d;
}

.order-items,
.order-history {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-items li,
.order-history li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.order-items li span:first-child {
    flex: 1;
}

.order-total {
    font-weight: 700;
    text-align: right;
    margin-top: 8px;
}

.order-status-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.order-status-actions select {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.payment-proof {
    background: #f8f9fb;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px dashed #d9dce3;
    margin-top: 12px;
}

.payment-proof p {
    margin-bottom: 4px;
    font-weight: 500;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.dashboard-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.dashboard-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.dashboard-card p strong {
    font-size: 1.6rem;
}

.dashboard-form {
    background: white;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    display: grid;
    gap: 16px;
}

.dashboard-form .form-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.dashboard-form label {
    font-weight: 500;
    margin-bottom: 6px;
}

.dashboard-form input,
.dashboard-form select,
.dashboard-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dfe1e6;
}

.dashboard-form textarea {
    min-height: 120px;
    resize: vertical;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.dashboard-table th,
.dashboard-table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid #f1f2f6;
}

.dashboard-table tbody tr:hover {
    background: #f8f9fd;
}

.dashboard-payment {
    margin-bottom: 40px;
}

.dashboard-order-section {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 32px;
    margin-bottom: 40px;
    align-items: stretch;
}

.dashboard-catalog {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dashboard-catalog-header h2 {
    margin-bottom: 6px;
}

.dashboard-order-summary {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.dashboard-catalog .products-grid {
    margin-top: 12px;
}

.dashboard-order-summary label {
    font-weight: 600;
    color: #475467;
}

.summary-subtext {
    color: #667085;
    font-size: 0.9rem;
}

.order-builder-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-builder-list.empty {
    border: 1px dashed #e4e7ec;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    color: #667085;
    background: #f9fafb;
}

.order-builder-empty {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.order-builder-empty p {
    margin: 0;
}

.order-builder-empty a {
    color: #ff6b9d;
    font-weight: 600;
    text-decoration: none;
}

.order-builder-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 16px;
    align-items: center;
    padding: 16px 18px;
    border-radius: 16px;
    background: #f8f9fb;
    border: 1px solid #eef0f5;
}

.order-builder-item .item-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.order-builder-item .item-info p {
    font-size: 0.85rem;
    color: #667085;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ccd2e0;
    border-radius: 999px;
    overflow: hidden;
}

.qty-control button {
    background: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
}

.qty-control input {
    width: 56px;
    border: none;
    text-align: center;
    font-weight: 600;
    padding: 6px 0;
    background: transparent;
}

.remove-item {
    background: none;
    border: none;
    color: #98a2b3;
    cursor: pointer;
    font-size: 1.4rem;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: #ff6b9d;
}

.order-builder-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #98a2b3;
}

.order-builder-footer textarea {
    width: 100%;
    min-height: 90px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #dfe1e6;
    resize: vertical;
}

.order-builder-totals {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.order-builder-totals div {
    background: #f8f9fb;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.order-builder-totals span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #98a2b3;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.dashboard-order-summary .btn {
    width: 100%;
}

.payment-hint {
    font-size: 0.85rem;
    color: #667085;
    margin-top: 10px;
}

.quantity-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
}

.quantity-modal .modal-overlay {
    background: rgba(0,0,0,0.45);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.qty-modal-card {
    background: white;
    border-radius: 18px;
    padding: 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qty-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-modal-subtext {
    color: #667085;
    font-size: 0.95rem;
}

.qty-modal-form label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.qty-modal-form input {
    width: 100%;
    border: 1px solid #dfe1e6;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 1rem;
}

.qty-modal-total {
    font-size: 1rem;
    color: #475467;
}

.qty-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.qty-modal-card .btn-secondary {
    background: transparent;
    border: 1px solid #d5d9e3;
    color: #475467;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.admin-stat-card {
    background: #f7f8fc;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.admin-stat-card span {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #98a2b3;
}

.admin-stat-card strong {
    font-size: 1.8rem;
    color: #1d2939;
}

.admin-stat-card.warning { background: #fff6ed; }
.admin-stat-card.info { background: #eef6ff; }
.admin-stat-card.success { background: #ecfdf3; }
.admin-stat-card.neutral { background: #f4f4f5; }

.admin-stat-card.warning strong { color: #b54708; }
.admin-stat-card.info strong { color: #2563eb; }
.admin-stat-card.success strong { color: #15803d; }
.admin-stat-card.neutral strong { color: #1f2937; }

.stock-selector {
    margin-bottom: 16px;
}

.stock-selector select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfe1e6;
    border-radius: 12px;
}

.stock-variant-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stock-variant-list.empty {
    border: 1px dashed #e4e7ec;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    color: #667085;
    background: #f9fafb;
}

.stock-variant-empty {
    font-size: 0.9rem;
}

.stock-variant-item {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 100px;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8f9fb;
    border: 1px solid #eef0f5;
}

.stock-variant-item input {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #dfe1e6;
}

.stock-variant-item button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #dc2626;
    cursor: pointer;
}

.payment-hint {
    font-size: 0.85rem;
    color: #667085;
    margin-top: 10px;
}

.admin-orders-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.filter-chip {
    border: 1px solid #d5d9e3;
    background: white;
    color: #475467;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
    background: #ff6b9d;
    border-color: #ff6b9d;
    color: white;
}
.product-detail-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

.product-gallery {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-gallery-item {
    display: none;
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-gallery-item.active {
    display: block;
}

.product-gallery-item img {
    width: 100%;
    height: auto;
    min-height: 500px;
    max-height: 600px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-gallery-item:hover img {
    transform: scale(1.02);
}

.product-gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b9d;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-gallery-item:hover::after {
    opacity: 1;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-thumbnails .thumb {
    border: none;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    width: 72px;
    height: 72px;
    border: 2px solid transparent;
}

.product-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails .thumb:hover,
.product-thumbnails .thumb:focus {
    border-color: #ff6b9d;
}

.product-detail-info {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.product-sku {
    color: #777;
    margin-bottom: 18px;
}

.product-price-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
}

.product-price-block .product-price-container {
    margin-bottom: 0;
}

.retail-detail {
    display: block;
    font-size: 0.85rem;
    color: #98a2b3;
}

.product-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.product-stats div {
    background: #f7f8fc;
    padding: 16px;
    border-radius: 14px;
    text-align: center;
}

.product-materials h3 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.product-materials p {
    color: #555;
    margin-bottom: 16px;
}

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

.product-tags span {
    background: #fff5f8;
    color: #ff6b9d;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.promotion-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffeff5;
    color: #ff2d6c;
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 600;
    font-size: 0.85rem;
    margin: 8px 0;
}

.product-features {
    margin-bottom: 48px;
}

.product-features h2 {
    text-align: center;
    margin-bottom: 24px;
}

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

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

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

/* Image Fullscreen Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.image-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-modal-content img {
    max-width: min(90vw, 1200px);
    max-height: min(90vh, 800px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.image-modal-content img.zoomed {
    cursor: zoom-out;
    transform: scale(2);
    transition: transform 0.1s ease-out;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-modal-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.image-modal-prev {
    left: 20px;
}

.image-modal-next {
    right: 20px;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.feature-card i {
    color: #ff6b9d;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.product-order-guide {
    background: #f8f9fb;
    border-radius: 18px;
    padding: 28px;
    box-shadow: inset 0 0 0 1px #eef0f5;
}

.product-order-guide ol {
    margin: 16px 0 0;
    padding-left: 20px;
    color: #555;
    line-height: 1.7;
}
/* Responsive Design */
.order-detail header .close-drawer:hover {
    color: #ff6b9d;
}

@media (max-width: 992px) {
    body.admin-page .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .admin-nav {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .admin-nav button {
        flex: 1 1 150px;
    }

    body.dashboard-page .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .dashboard-order-section {
        grid-template-columns: 1fr;
    }

    .dashboard-order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
        flex-wrap: nowrap;
    }

    .nav-logo {
        flex: 0 0 auto;
        min-width: 0;
    }

    .logo {
        height: 40px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }

    .nav-menu .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .nav-link i {
        font-size: 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown .dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        background: transparent !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        max-width: 100% !important;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-dropdown .dropdown-link {
        padding: 0.75rem 0;
        color: #666;
        text-align: center;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-dropdown .dropdown-link i {
        font-size: 0.9rem;
    }
    
    .nav-dropdown .dropdown-link:hover {
        background-color: #f8f9fa;
        color: #ff6b9d;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1001;
        margin-left: auto;
    }
    
    .hamburger .bar {
        width: 25px;
        height: 3px;
        background: #ff6b9d;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .nav-actions {
        gap: 0.5rem;
        flex: 0 0 auto;
        margin-left: 10px;
    }

    .nav-actions .search-box {
        display: none;
    }

    .nav-actions .btn {
        display: none;
    }

    .nav-actions .nav-icon {
        display: none;
    }

    .auth-badge {
        display: none;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobil menüde arama kutusu ekle */
    .nav-menu.active .search-box {
        display: block;
        padding: 0 20px;
        margin-bottom: 1rem;
    }

    .nav-menu.active .search-input {
        width: 100%;
        max-width: 100%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Modern Hero Section - Mobile */
    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        padding: 0 15px;
    }
    
    .hero-main {
        order: 1;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
        padding: 1.5rem 0 1rem 0;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        display: none;
    }
    
    .hero-buttons {
        display: none;
    }
    
    .hero-slider {
        order: 2;
        height: 300px;
        border-radius: 16px;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-categories {
        order: 3;
        position: static;
        padding: 20px;
        margin: 0;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    .hero-categories-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .hero-categories-list {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .hero-category-item {
        padding: 12px;
    }
    
    .hero-category-name {
        font-size: 0.9rem;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
        padding: 0 10px;
    }
    
    .hero-slider-controls {
        padding: 0 10px;
    }
    
    .hero-slider-dots {
        bottom: 10px;
    }
    
    /* Featured Products Sections - Mobile */
    .featured-products-section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-header .section-title {
        font-size: 1.75rem;
        text-align: left;
        margin-bottom: 0;
    }
    
    .products-slider-container {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1rem !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        transform: none !important;
    }
    
    .products-slider-container::-webkit-scrollbar {
        display: none !important;
    }
    
    .products-slider-container .product-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
    }
    
    .products-slider {
        position: relative;
        overflow: hidden;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        z-index: 10;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        display: flex !important;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    /* Categories Section - Mobile */
    .categories-section {
        padding: 2.5rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .category-card {
        border-radius: 12px;
    }
    
    .category-image {
        height: 150px;
    }
    
    .category-name {
        font-size: 0.9rem;
        padding: 12px;
    }

    .membership-cards {
        grid-template-columns: 1fr;
    }

    .membership-card.featured {
        transform: none;
    }

    .products-footer-actions {
        flex-direction: column;
    }

    .order-detail-drawer {
        width: 100%;
    }
}

/* Daha küçük mobil ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }

    .logo {
        height: 35px;
    }

    .brand-name {
        font-size: 1rem;
        display: none; /* Çok küçük ekranlarda logo adını gizle */
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }

    .nav-menu .nav-item {
        padding: 0.75rem 0;
    }

    .hero {
        margin-top: 60px;
        padding: 1.5rem 0;
        min-height: auto;
    }
    
    .hero-content-modern {
        padding: 0 10px;
        gap: 0;
    }
    
    .hero-text {
        padding: 1rem 0 0.75rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0;
    }
    
    .hero-subtitle {
        display: none;
    }
    
    .hero-buttons {
        display: none;
    }
    
    .hero-slider {
        height: 250px;
        border-radius: 12px;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .hero-categories {
        padding: 16px;
        margin: 0;
        width: 100%;
    }
    
    .hero-categories-title {
        font-size: 1rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .hero-categories-list {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .hero-category-item {
        padding: 10px;
    }
    
    .hero-category-name {
        font-size: 0.85rem;
    }
    
    .hero-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .hero-slider-controls {
        padding: 0 5px;
    }
    
    .hero-slider-dots {
        bottom: 8px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dot.active {
        width: 24px;
    }
    
    /* Featured Products Sections - Small Mobile */
    .featured-products-section {
        padding: 2rem 0;
    }
    
    .section-header .section-title {
        font-size: 1.5rem;
    }
    
    .products-slider-container {
        gap: 0.75rem !important;
    }
    
    .products-slider-container .product-card {
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
        display: flex !important;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    /* Categories Section - Small Mobile */
    .categories-section {
        padding: 2rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .category-image {
        height: 120px;
    }
    
    .category-name {
        font-size: 0.85rem;
        padding: 10px;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .product-price-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-form {
        padding: 20px;
    }

    .order-builder-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }

    .item-controls {
        justify-content: space-between;
    }

    .wholesale-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card {
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        max-width: 100%;
    }
    
    .product-card img {
        border-radius: 12px 12px 0 0;
    }
    
    .product-image {
        height: 250px;
        min-height: 250px;
        max-height: 250px;
        flex-shrink: 0;
    }
    
    .product-info {
        padding: 1rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .product-category {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .product-name {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-variants {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .product-meta {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        flex-wrap: wrap;
    }
    
    .product-meta span {
        font-size: 0.7rem;
    }
    
    .product-price-container {
        padding: 8px;
        margin-bottom: 0.5rem;
    }
    
    .price-row {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .price-label {
        font-size: 0.75rem;
        min-width: 60px;
    }
    
    .price-row .product-price,
    .price-row .price-discounted {
        font-size: 0.9rem;
    }
    
    .product-price-wholesale {
        font-size: 1.2rem;
    }
    
    .add-to-order {
        font-size: 0.9rem;
        padding: 10px;
        margin-bottom: 0.5rem;
    }
    
    .product-minimum {
        font-size: 0.7rem;
        margin-bottom: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-input {
        width: 150px;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-card {
        border-radius: 10px;
    }
    
    .product-image {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }
    
    .product-info {
        padding: 0.875rem;
    }
    
    .product-name {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-price-container {
        padding: 6px;
    }
    
    .price-row {
        font-size: 0.8rem;
    }
    
    .price-label {
        font-size: 0.7rem;
        min-width: 55px;
    }
    
    .add-to-order {
        font-size: 0.85rem;
        padding: 8px;
    }
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-sm i {
    margin-right: 4px;
}

.btn-warning {
    background: #ffc107;
    color: #000;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

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

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

/* Confirm Modal */
.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20000;
}

.confirm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.confirm-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.confirm-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e4e7ec;
    background: #fff5f8;
}

.confirm-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 10px;
}

.confirm-modal-body {
    padding: 24px;
}

.confirm-modal-body p {
    margin: 0;
    line-height: 1.6;
    color: #475467;
}

.confirm-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e4e7ec;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f8f9fa;
}

/* Modern Hero Section */
.hero-content-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: start;
    min-height: 600px;
}

.hero-categories {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.hero-categories-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.hero-categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-category-item {
    display: block;
    padding: 16px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hero-category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}

.hero-category-item:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.hero-category-item:hover {
    transform: translateX(8px);
}

.hero-category-name {
    position: relative;
    z-index: 1;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.hero-view-all {
    width: 100%;
    text-align: center;
}

.hero-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.hero-slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-slider-btn:hover {
    background: white;
    transform: scale(1.1);
}

.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Featured Products Sections */
.featured-products-section {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

/* Bestsellers Section - Deep Purple/Violet Gradient Theme */
#bestsellers.featured-products-section {
    background: linear-gradient(135deg, #6a4c93 0%, #9d7fbf 50%, #c4a8e8 100%);
    position: relative;
    z-index: 1;
}

#bestsellers .section-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#bestsellers .btn-link {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

#bestsellers .btn-link:hover {
    color: #f0f0f0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* New Arrivals Section - Soft Pink/Rose Gradient Theme */
#new-arrivals.featured-products-section {
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fb3 50%, #ffb3d1 100%);
    position: relative;
    z-index: 1;
}

#new-arrivals .section-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#new-arrivals .btn-link {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

#new-arrivals .btn-link:hover {
    color: #f0f0f0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Promotions Section - Vibrant Red/Coral Gradient Theme */
#promotions.featured-products-section {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b7a 50%, #ff8fa3 100%);
    position: relative;
    z-index: 1;
}

#promotions .section-title {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#promotions .btn-link {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

#promotions .btn-link:hover {
    color: #f0f0f0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.btn-link {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #ff5a8a;
    text-decoration: underline;
}

.products-slider {
    position: relative;
    overflow: hidden;
}

.products-slider-container {
    display: flex;
    overflow: hidden;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.products-slider-container .product-card {
    min-width: calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
}

/* Desktop only - ensure 3 columns */
@media (min-width: 769px) {
    .products-slider-container {
        overflow: hidden;
    }
    
    .products-slider-container .product-card {
        min-width: calc(33.333% - 1.33rem);
        max-width: calc(33.333% - 1.33rem);
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: all;
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
    backdrop-filter: blur(10px);
}

.product-badge.bestseller {
    background: rgba(255, 193, 7, 0.9);
    color: #333;
}

.product-badge.new {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

.product-badge.promotion {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.category-name {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
    color: #2c2c2c;
}

/* Showcase Management Styles */
.showcase-product-list {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    background: white;
}

.showcase-tagged-list {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.showcase-tagged-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    background: #f8f9fa;
}

/* Wholesale Partnership Page */
.wholesale-hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
    color: white;
    text-align: center;
}

.wholesale-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.wholesale-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.wholesale-benefits-section {
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.wholesale-requirements {
    padding: 4rem 0;
    background: #f8f9fa;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.requirements-list {
    list-style: none;
    margin: 2rem 0;
}

.requirements-list li {
    padding: 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.requirements-list i {
    color: #ff6b9d;
    font-size: 1.5rem;
}

.requirements-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
