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

:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --text-color: #ffffff;
    --text-dark: #1e293b;
    --text-light: #cbd5e1;
    --bg-color: #0f172a;
    --bg-dark: #020617;
    --bg-light: #1e293b;
    --bg-card: #1e293b;
    --border-color: #334155;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --gradient-primary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(249, 115, 22, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.1) 0px, transparent 50%);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow: visible;
}

.nav-brand {
    flex-shrink: 0;
    max-width: 250px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: visible;
    position: relative;
}

.nav-cart {
    flex-shrink: 0;
    margin-left: 1rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-color);
    max-width: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex-shrink: 1;
    min-width: 0;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: normal;
    margin-top: 1px;
    white-space: nowrap;
}

.nav-brand .logo {
    height: 100px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Navbar logo - sadece koyu renk */
.navbar {
    background: var(--bg-color);
}

.navbar .logo {
    display: block;
}

/* Footer logo - sadece açık renk */
.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 120px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

/* Logo yoksa metin göster */
.logo-text {
    display: inline-block;
}

.nav-menu li {
    flex-shrink: 0;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.85rem;
    display: block;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(249, 115, 22, 0.1);
}

/* Navbar Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown > a i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    min-width: 250px;
    padding: 0.5rem 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    list-style: none;
    display: block;
}

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

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu li a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
}

.nav-cart {
    position: relative;
}

.cart-link {
    position: relative;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s;
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: var(--gradient-dark);
    background-image: 
        radial-gradient(at 20% 50%, rgba(249, 115, 22, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        var(--gradient-dark);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(249,115,22,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

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

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-slogan {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

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

.btn-secondary:hover {
    background: var(--text-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-dark);
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
}

.product-placeholder.large {
    height: 400px;
    font-size: 6rem;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.product-category {
    color: var(--text-light);
}

.product-price {
    color: var(--primary-color);
}

.product-category {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

/* Kategori Slider */
.categories-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.category-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--gradient-dark);
    background-image: 
        radial-gradient(at 20% 50%, rgba(249, 115, 22, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(59, 130, 246, 0.2) 0px, transparent 50%);
    color: white;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.category-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.category-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.category-main-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subcategories-list-slider {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.subcategories-list-slider li {
    font-size: 1.25rem;
}

.subcategories-list-slider a {
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    transition: all 0.3s;
    display: block;
    backdrop-filter: blur(10px);
}

.subcategories-list-slider a:hover {
    background: rgba(249, 115, 22, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    border-color: var(--primary-color);
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Featured Categories Slider */
.featured-categories {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
}

.subcategories-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.subcategory-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 1;
}

.subcategory-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.subcategory-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.subcategory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    gap: 2rem;
    padding: 3rem;
    background: var(--gradient-dark);
    background-image: 
        radial-gradient(at 20% 50%, rgba(249, 115, 22, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(59, 130, 246, 0.2) 0px, transparent 50%);
    color: white;
}

.subcategory-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.5);
}

.subcategory-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

.subcategory-main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subcategory-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.subcategory-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.subcategory-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.subcategory-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
}

.feature-item h3 {
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

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

/* Product Detail */
.product-detail-page {
    padding: 3rem 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.product-detail-image img {
    width: 100%;
    border-radius: 12px;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.product-description-full {
    margin: 2rem 0;
}

.product-description-full h3 {
    margin-bottom: 1rem;
}

.product-stock {
    margin: 1.5rem 0;
}

.in-stock {
    color: var(--success-color);
}

.out-of-stock {
    color: var(--danger-color);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Checkout */
.checkout-page {
    padding: 3rem 0;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form-section,
.checkout-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.checkout-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-dark);
    color: var(--text-color);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: var(--bg-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-summary h2 {
    margin-bottom: 1.5rem;
}

.checkout-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    font-size: 1.25rem;
}

/* Success Page */
.success-page {
    padding: 5rem 0;
    text-align: center;
}

.success-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-content h1 {
    margin-bottom: 1rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Admin */
.admin-page {
    padding: 3rem 0;
}

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

.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    text-align: center;
    transition: all 0.3s;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    border-color: var(--primary-color);
}

.admin-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.admin-card h3 {
    margin-bottom: 0.5rem;
}

.admin-card p {
    color: var(--text-light);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.admin-form {
    padding: 1.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Table */
.products-table {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-top: 2rem;
}

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

.products-table th,
.products-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.products-table th {
    background: var(--bg-dark);
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.footer-section:first-child {
    grid-column: span 1;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
    padding-bottom: 0.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0;
}

.footer-section ul li a {
    display: block;
    padding: 0.25rem 0;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    padding-left: 0.5rem;
    color: var(--primary-color);
}

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

.footer-section h3 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section h3 a:hover {
    color: var(--primary-color);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Alert */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-error ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.alert-error li {
    margin-bottom: 0.25rem;
}

/* Custom Production Page */
.custom-production-page {
    padding: 3rem 0;
}

.custom-production-header {
    text-align: center;
    margin-bottom: 3rem;
}

.custom-production-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.custom-production-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.custom-production-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.section-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.form-help {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Marketplaces Grid */
.marketplaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.marketplace-checkbox {
    position: relative;
}

.marketplace-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.marketplace-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg-light);
}

.marketplace-checkbox input[type="checkbox"]:checked + label {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.marketplace-checkbox input[type="checkbox"]:checked + label .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.marketplace-checkbox input[type="checkbox"]:checked + label .checkbox-custom::after {
    opacity: 1;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
    flex-shrink: 0;
}

.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.checkbox-label {
    font-weight: 500;
    color: var(--text-color);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Diğer Platform Bölümü */
.other-platform-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-dark);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.website-framework-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Filter Section */
.filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Category Dropdown */
.category-dropdown {
    position: relative;
}

.category-dropdown:hover .subcategory-menu {
    display: block;
}

.subcategory-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 100;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.subcategory-link {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s;
}

.subcategory-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.subcategory-link.active {
    background: var(--primary-color);
    color: white;
}

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

.page-header h1 {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding-left: 1rem;
    }
    
    .nav-dropdown > a i {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-section {
        flex-direction: column;
    }
    
    .subcategory-menu {
        position: static;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
    }
    
    /* Mobil için logo boyutları */
    .nav-brand .logo {
        height: 60px;
        max-width: 150px;
    }
    
    .footer-logo .logo {
        height: 80px;
        max-width: 200px;
    }
    
    /* Mobil için navbar brand text */
    .brand-text {
        display: none;
    }
    
    .nav-brand a {
        gap: 5px;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    /* Mobil için kategori slider */
    .categories-slider {
        height: 400px;
    }
    
    .category-main-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .subcategories-list-slider li {
        font-size: 1rem;
    }
    
    .subcategories-list-slider a {
        padding: 0.5rem 1.5rem;
    }
    
    .category-slide {
        padding: 2rem 1.5rem;
    }
    
    /* Mobil için alt kategori slider */
    .subcategories-slider {
        height: 500px;
    }
    
    .subcategory-content {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .subcategory-image-wrapper {
        height: 200px;
    }
    
    .subcategory-main-title {
        font-size: 1.75rem;
    }
    
    .subcategory-title {
        font-size: 1.5rem;
    }
    
    .category-image {
        padding: 1rem;
    }
    
    /* Hakkımızda Sayfası */
.about-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    min-height: 70vh;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.about-text {
    line-height: 1.8;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-text p:first-child {
    font-size: 1.15rem;
    font-weight: 500;
}

.about-tagline {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    font-size: 1.2rem;
    text-align: center;
    color: var(--primary-color);
}

.about-tagline strong {
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0;
    }
    
    .about-header {
        margin-bottom: 2rem;
        padding-top: 1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .about-tagline {
        font-size: 1.1rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    /* Mobil için özel üretim formu */
    .custom-production-form {
        padding: 1.5rem;
    }
    
    .custom-production-header h1 {
        font-size: 2rem;
    }
    
    .marketplaces-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Mobil için footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        align-items: center;
    }
}

