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

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e85a2a;
    --primary-light: #ff8c61;
    --secondary-color: #4f46e5;
    --accent-color: #10b981;
    --text-color: #ffffff;
    --text-dark: #1e293b;
    --text-light: #cbd5e1;
    --bg-color: rgba(15, 23, 42, 0.8);
    --bg-dark: #0a0e1a;
    --bg-light: rgba(30, 41, 59, 0.6);
    --bg-card: rgba(30, 41, 59, 0.4);
    --border-color: rgba(148, 163, 184, 0.2);
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    --shadow-hover: 0 25px 80px rgba(255, 107, 53, 0.3), 0 0 0 1px rgba(255, 107, 53, 0.2);
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f97316 50%, #ff8c61 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e1a 0%, #1e293b 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-color);
    background: var(--bg-dark);
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 107, 53, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(79, 70, 229, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 107, 53, 0.15) 0px, transparent 50%);
    line-height: 1.7;
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
    transition: all 0.3s ease;
}

.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 cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0.6rem;
    border-radius: 10px;
    white-space: nowrap;
    font-size: 0.9rem;
    display: block;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-1px);
}

/* 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% + 8px);
    left: 0;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    min-width: 250px;
    padding: 0.75rem 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    list-style: none;
    display: block;
}

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

.dropdown-menu li {
    position: relative;
}

.dropdown-menu li a {
    display: block;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 0.5rem;
    border-radius: 10px;
}

.dropdown-menu li a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-color);
    transform: translateX(4px);
}

.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(255, 107, 53, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(79, 70, 229, 0.15) 0px, transparent 50%),
        var(--gradient-dark);
    color: white;
    padding: 8rem 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: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-slogan {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.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: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0), rgba(255, 107, 53, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 107, 53, 0.5);
}

.product-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.5), rgba(255, 140, 97, 0.3));
}

.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: 3rem;
    padding: 4rem;
    background: var(--gradient-dark);
    background-image: 
        radial-gradient(at 20% 50%, rgba(255, 107, 53, 0.25) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(79, 70, 229, 0.2) 0px, transparent 50%);
    color: white;
    align-items: center;
}

.subcategory-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.subcategory-slide:hover .subcategory-image-wrapper {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
    transform: scale(1.02);
}

.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: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
}

.feature-item i {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.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: 2rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-content::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

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

.footer-brand-section {
    padding-right: 0.5rem;
}

.footer-contact-section {
    padding-left: 0;
}

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

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

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

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

.footer-section ul li a {
    display: block;
    padding: 0.2rem 0;
    transition: all 0.3s;
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
}

.footer-section ul li a:hover {
    padding-left: 0.4rem;
    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.1rem;
    font-weight: bold;
    color: white;
    margin-top: 0;
    margin-bottom: 0.4rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    padding-bottom: 0.4rem;
}

.footer-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-weight: 400;
    margin-top: 0.3rem;
}

.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: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* 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-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.custom-production-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.custom-production-intro p:last-child {
    margin-bottom: 0;
}

.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;
    }
    
    .custom-production-intro {
        text-align: center;
    }
    
    .custom-production-intro p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .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: 1.5rem;
    }
    
    .footer-content::after {
        display: none;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-brand-section {
        padding-right: 0;
    }
    
    .footer-contact-section {
        padding-left: 0;
    }
    
    .footer-section ul {
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Additional modern touches */
.product-image {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Glassmorphism for cards */
.product-card,
.feature-item,
.about-content,
.custom-production-form {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* Section titles animation */
.section-title {
    animation: fadeInUp 0.6s ease-out;
}

/* Cart sidebar modern style */
.cart-sidebar {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}


/* Footer Contact Styling */
.footer-contact {
    margin-top: 0;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 12px;
    text-align: center;
    font-size: 0.75rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-address {
    line-height: 1.5 !important;
}

.footer-brand-section {
    padding-right: 1rem;
}

.footer-brand-section .footer-logo {
    margin-bottom: 0.75rem;
}

.footer-brand-section .footer-logo .logo {
    height: 50px;
    width: auto;
}

.footer-brand-section .footer-brand {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.footer-brand-section .footer-tagline {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-contact-section {
    padding-left: 0;
}
