/**
 * E-Ticaret Pro Plus - Frontend Styles
 * Modern, Profesyonel ve Mobil Uyumlu Tasarım
 */

/* ========== CSS Variables ========== */
:root {
    /* Primary Colors */
    --primary: #1e3a5f;
    --primary-light: #2d5a8b;
    --primary-dark: #152a45;
    
    /* Accent Colors */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    
    /* Success/Error/Warning */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', var(--font-primary);
    
    /* Spacing */
    --container-max: 1400px;
    --header-height: 140px;
    --header-height-sticky: 70px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ========== Container ========== */
/* Bootstrap container kullanılıyor, özel max-width için override */
.container {
    width: 100%;
    max-width: var(--container-max) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* ========== Top Banner ========== */
.top-banner {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    overflow: hidden;
}

.top-banner .marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.top-banner .marquee-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    padding-right: 50px;
}

.top-banner .marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-banner .marquee-content span::before {
    content: '•';
    color: var(--accent);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Header ========== */
.site-header {
    width: 100%;
    max-width: 100%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: var(--shadow-sm);
    margin: 0;
    padding: 0;
}

/* Header Top */
.header-top {
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
    margin: 0;
}

/* Header Top Container - Bootstrap row kullanılıyor */
.header-top .row {
    margin: 0;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.site-logo span {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    background: var(--accent);
    color: var(--white);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

/* Search Box */
.header-search {
    width: 100%;
    max-width: 100%;
}

.search-form {
    display: flex;
    align-items: stretch;
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

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

.search-form input::placeholder {
    color: var(--gray-400);
}

.search-form button {
    padding: 0 25px;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    transition: background var(--transition-fast);
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
}

/* User Avatar */
.user-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
}

.user-avatar-initials {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--info));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    border: 2px solid var(--gray-200);
}

.user-avatar-md {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-200);
}

.user-avatar-initials-md {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--info));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--gray-200);
}

/* User Dropdown */
.header-actions .dropdown {
    position: relative;
    z-index: 1051;
}

.header-action-user .dropdown-menu {
    min-width: 280px;
    padding: 0;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    z-index: 1052 !important;
}

.user-dropdown .dropdown-header {
    padding: 15px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.user-dropdown .dropdown-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    transition: all var(--transition-fast);
}

.user-dropdown .dropdown-item:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.user-dropdown .dropdown-item i {
    width: 20px;
    text-align: center;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--gray-600);
    font-size: 12px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    position: relative;
}

.header-action:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.header-action i {
    font-size: 22px;
}

.header-action .badge {
    position: absolute;
    top: 2px;
    right: 8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--error);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== Navigation & Mega Menu ========== */
.header-nav {
    width: 100%;
    max-width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    margin: 0;
    padding: 0;
}

.header-nav .container {
    display: flex;
    align-items: stretch;
}

/* Categories Dropdown */
.categories-dropdown {
    position: relative;
}

.categories-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition-fast);
}

.categories-toggle:hover {
    background: var(--primary-dark);
}

.categories-toggle i:last-child {
    margin-left: auto;
    font-size: 12px;
    transition: transform var(--transition-fast);
}

.categories-dropdown:hover .categories-toggle i:last-child {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--white);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 1000;
}

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

.mega-menu-list {
    padding: 10px 0;
}

.mega-menu-item {
    position: relative;
}

.mega-menu-item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--gray-700);
    font-size: 14px;
    transition: all var(--transition-fast);
}

.mega-menu-item > a:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.mega-menu-item > a i {
    width: 20px;
    text-align: center;
    color: var(--gray-400);
}

.mega-menu-item > a .arrow {
    margin-left: auto;
    font-size: 10px;
    color: var(--gray-400);
}

/* Sub Menu */
.mega-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 600px;
    background: var(--white);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    box-shadow: var(--shadow-xl);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-normal);
}

.mega-menu-item:hover .mega-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mega-submenu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-submenu-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.mega-submenu-col ul li a {
    display: block;
    padding: 6px 0;
    color: var(--gray-600);
    font-size: 13px;
    transition: all var(--transition-fast);
}

.mega-submenu-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.main-nav ul {
    display: flex;
    align-items: stretch;
}

.main-nav ul li a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
}

.main-nav ul li a:hover {
    color: var(--primary);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* ========== Hero Slider ========== */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 500px;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: var(--white);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gray-700);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary);
    color: var(--white);
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }

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

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.slider-dot.active {
    width: 40px;
    background: var(--white);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* ========== Section Styles ========== */
.section {
    padding: 60px 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

.section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    font-size: 14px;
}

.section-link:hover {
    color: var(--accent);
}

/* ========== Product Card ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Kategori sayfasında ürün kartları daha büyük */
.category-page .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}

.product-badge {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.badge-new {
    background: var(--info);
    color: var(--white);
}

.badge-sale {
    background: var(--error);
    color: var(--white);
}

.badge-hot {
    background: var(--accent);
    color: var(--white);
}

.badge-stock {
    background: var(--success);
    color: var(--white);
}

/* Product Image */
.product-image {
    position: relative;
    padding-top: 100%;
    background: var(--gray-50);
    overflow: hidden;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform var(--transition-slow);
}

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

/* Product Actions (Quick View, Wishlist) - Product Card için */
.product-card .product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-fast);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

/* Ürün Detay Sayfası için Product Actions */
.product-detail-page .product-actions {
    position: static;
    opacity: 1;
    transform: none;
    display: block;
}

.product-action-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

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

/* Product Info */
.product-info {
    padding: 15px;
}

/* Kategori sayfasında ürün bilgileri daha büyük */
.category-page .product-info {
    padding: 20px;
}

.product-brand {
    font-size: 12px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

/* Kategori sayfasında marka daha büyük */
.category-page .product-brand {
    font-size: 13px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

/* Kategori sayfasında ürün adı daha büyük */
.category-page .product-name {
    font-size: 16px;
    font-weight: 600;
    min-height: 48px;
    margin-bottom: 10px;
}

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

.product-stock {
    font-size: 12px;
    margin-bottom: 10px;
}

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

.product-stock.low-stock {
    color: var(--warning);
}

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

/* Product Price */
.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

/* Kategori sayfasında fiyat daha büyük */
.category-page .price-current {
    font-size: 20px;
}

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

.price-discount {
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    background: var(--error);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

/* Add to Cart Button */
.product-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.product-add-cart:hover {
    background: var(--accent);
    color: var(--white);
}

.product-add-cart i {
    font-size: 16px;
}

/* ========== Categories Section ========== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    transition: all var(--transition-normal);
}

.category-card:hover {
    background: #f0f4f8;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.category-card:hover .category-icon i,
.category-card:hover .category-name {
    color: var(--primary);
}

.category-card:hover .category-icon .category-image {
    opacity: 0.9;
    transform: scale(1.05);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: all var(--transition-fast);
}

.category-icon .category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.category-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: all var(--transition-fast);
}

.category-card:hover .category-icon {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.category-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    transition: color var(--transition-fast);
}

/* ========== Features Section ========== */
.features {
    background: var(--gray-50);
    padding: 40px 0;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.feature-content p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========== Brands Section ========== */
.brands-slider {
    display: flex;
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.brands-slider::-webkit-scrollbar {
    display: none;
}

.brand-item {
    flex-shrink: 0;
    padding: 20px 40px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.brand-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.brand-item img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.brand-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ========== Newsletter ========== */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    color: var(--white);
}

.newsletter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-content p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    outline: none;
}

.newsletter-form button {
    padding: 16px 35px;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--accent-dark);
}

/* ========== Footer ========== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding-top: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-about .logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-about .logo span {
    color: var(--accent);
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    font-size: 14px;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

.footer-contact p i {
    color: var(--accent);
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
}

/* ========== Back to Top ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--white);
}

/* ========== Mobile Menu ========== */
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gray-700);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transition: left var(--transition-normal);
    overflow-y: auto;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gray-600);
}

.mobile-nav {
    padding: 20px;
}

.mobile-nav > ul > li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: 500;
    color: var(--gray-700);
}

.mobile-nav .submenu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
}

.mobile-nav .submenu.active {
    display: block;
}

.mobile-nav .submenu li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-600);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 1999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Kategori sayfasında küçük ekranlar */
    .category-page .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-search {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Kategori sayfasında tablet */
    .category-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-title-modern {
        font-size: 22px;
    }
    
    .category-banner {
        height: 120px;
    }
    
    .category-banner-placeholder {
        height: 120px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter .container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-slide {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-top .row {
        align-items: center !important;
    }
    
    .header-actions {
        gap: 0;
        justify-content: flex-end;
    }
    
    .header-action {
        padding: 10px;
    }
    
    .header-action span {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about,
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero-slide {
        height: 350px;
    }
    
    .hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Bootstrap container zaten responsive padding sağlıyor */
    
    .site-logo a {
        font-size: 22px;
    }
    
    .products-grid {
        gap: 10px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 13px;
        min-height: 36px;
    }
    
    .price-current {
        font-size: 16px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .category-card {
        padding: 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    /* Kategori sayfası mobil */
    .category-page .products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .category-title-modern {
        font-size: 20px;
    }
    
    .category-banner {
        max-height: 100px;
    }
    
    .category-banner-placeholder {
        height: 100px;
        max-width: 150px;
    }
}

/* ========== Cart Page Styles ========== */
.cart-page {
    background: var(--gray-50);
    min-height: 60vh;
}

.cart-empty {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 20px;
}

.cart-items-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cart-items-card .card-header {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item {
    padding: 15px 0;
}

.cart-item-image {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-50);
}

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

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.cart-item-name a {
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.cart-item-category a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 13px;
}

.cart-item-category a:hover {
    color: var(--primary);
}

.cart-item-sku {
    font-size: 12px;
    color: var(--gray-500);
}

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

.cart-item-price .price-old {
    font-size: 14px;
    text-decoration: line-through;
}

.quantity-controls {
    gap: 5px;
}

.quantity-controls .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    height: 32px;
    border: 1px solid var(--gray-300);
}

.cart-item-total {
    text-align: right;
}

.cart-item-total .fw-bold {
    font-size: 18px;
    color: var(--primary);
}

.cart-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.cart-summary-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.cart-summary-item {
    font-size: 14px;
    color: var(--gray-700);
}

.cart-summary-total {
    font-size: 18px;
    color: var(--gray-900);
}

.cart-security {
    font-size: 13px;
}

.cart-security i {
    width: 20px;
}

.page-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

@media (max-width: 768px) {
    .cart-item {
        padding: 20px 0;
    }
    
    .cart-item-image {
        margin-bottom: 15px;
    }
    
    .cart-item-total {
        text-align: left;
        margin-top: 15px;
    }
    
    .cart-summary-card {
        margin-top: 20px;
    }
}

/* ========== Product Demo Links ========== */
.product-demo-links {
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.product-demo-links h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.demo-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.demo-links-list .btn {
    transition: all var(--transition-fast);
}

.demo-links-list .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.demo-link-item {
    background: var(--white);
    border: 1px solid var(--gray-200) !important;
}

.demo-link-item .form-control-sm {
    font-size: 13px;
}

/* ========== Product Specifications ========== */
.product-specifications {
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.product-specifications h6 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
}

.product-specifications ul {
    margin: 0;
    padding: 0;
}

.product-specifications li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    color: var(--gray-700);
}

.product-specifications li:last-child {
    border-bottom: none;
}

.product-specifications li i {
    font-size: 12px;
}

/* ========== Product Reviews ========== */
.rating-stars {
    display: inline-flex;
    gap: 2px;
}

.rating-stars i {
    font-size: 14px;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    color: var(--gray-300);
    font-size: 24px;
    transition: color var(--transition-fast);
}

.rating-input input[type="radio"]:checked ~ label,
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

.review-form-card {
    background: var(--gray-50);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.review-item {
    background: var(--white);
    transition: box-shadow var(--transition-fast);
}

.review-item:hover {
    box-shadow: var(--shadow-sm);
}

.review-item .rating-stars {
    margin-bottom: 10px;
}

.review-item p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* ========== Category Page Styles ========== */

/* Breadcrumb */
.breadcrumb-section {
    background: var(--gray-50);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: transparent;
    font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--gray-500);
    padding: 0 8px;
}

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

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--gray-700);
    font-weight: 500;
}

/* Category Page */
.category-page {
    background: var(--white);
    padding: 30px 0;
}

.category-breadcrumb {
    margin-bottom: 20px;
}

.category-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.category-header-modern {
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.category-title-modern {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.category-description-modern {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-600);
    margin: 0;
}

.category-meta {
    margin-top: 10px;
}

.product-count-badge {
    display: inline-block;
    padding: 5px 10px;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.category-banner {
    width: 100%;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-banner-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.9;
    box-shadow: var(--shadow-sm);
}

.category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

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

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.category-description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar Widget */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
}

.widget-title i {
    color: var(--primary);
}

/* Category List */
.category-list,
.category-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list > li,
.category-list-modern > li {
    margin-bottom: 4px;
}

.category-list > li > a,
.category-list-modern > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.category-list-modern > li > a {
    font-size: 14px;
}

.category-list-modern > li > a:hover,
.category-list-modern > li.active > a {
    background: var(--primary-light);
    color: var(--primary);
}

.category-count {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    margin-left: auto;
}

.category-list-modern > li.active > a .category-count {
    color: var(--primary);
}

.sub-category-list-modern {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 20px;
    display: none;
}

.sub-category-list-modern.show {
    display: block;
}

.sub-category-list-modern > li {
    margin-bottom: 2px;
}

.sub-category-list-modern > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 13px;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.sub-category-list-modern > li > a:hover,
.sub-category-list-modern > li.active > a {
    background: var(--gray-50);
    color: var(--primary);
}

.sub-sub-category-list {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 20px;
}

.sub-sub-category-list > li {
    margin-bottom: 2px;
}

.sub-sub-category-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 12px;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.sub-sub-category-list > li > a:hover,
.sub-sub-category-list > li.active > a {
    background: var(--gray-50);
    color: var(--primary);
}

.filter-count {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
    margin-left: 5px;
}
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: 14px;
}

.category-list > li > a:hover,
.category-list > li.active > a {
    background: var(--gray-50);
    color: var(--primary);
    font-weight: 500;
}

.sub-category-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 30px;
}

.sub-category-list li {
    margin-bottom: 5px;
}

.sub-category-list li a {
    display: block;
    padding: 8px 12px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 13px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.sub-category-list li a:hover,
.sub-category-list li.active a {
    background: var(--primary-light);
    color: var(--white);
    padding-left: 15px;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 25px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    padding: 0;
}

.form-check-input {
    margin-top: 0;
    margin-right: 8px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-700);
    user-select: none;
}

.price-filter {
    margin-top: 10px;
}

/* Products Toolbar */
.products-toolbar {
    background: var(--white);
    padding: 15px 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.product-count {
    font-size: 15px;
    color: var(--gray-700);
}

.product-count strong {
    color: var(--gray-900);
    font-weight: 600;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-mode-toggle .btn {
    border: 1px solid var(--gray-300);
    padding: 8px 12px;
}

.view-mode-toggle .btn-check:checked + .btn {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Products Grid - List View */
.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    padding: 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.products-grid.list-view .product-image {
    width: 200px;
    flex-shrink: 0;
    margin-right: 20px;
}

.products-grid.list-view .product-info {
    flex: 1;
    padding: 0;
    text-align: left;
}

.products-grid.list-view .product-name {
    font-size: 18px;
    margin-bottom: 10px;
}

.products-grid.list-view .product-description {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}

.products-grid.list-view .product-price {
    font-size: 24px;
    margin-bottom: 15px;
}

.products-grid.list-view .product-add-cart {
    width: auto;
    padding: 12px 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .category-title {
        font-size: 26px;
    }
    
    .sidebar-widget {
        margin-bottom: 15px;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 22px;
    }
    
    .products-toolbar {
        padding: 12px 15px;
    }
    
    .toolbar-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .view-mode-toggle {
        order: 2;
    }
    
    .form-select {
        order: 1;
        width: 100% !important;
    }
}

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */

.product-detail-page {
    background: #fff;
}

/* Ürün Detay Sayfası - Product Actions Override */
.product-detail-page .product-actions {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
    top: auto !important;
    right: auto !important;
    flex-direction: row !important;
}

.product-detail-page .product-actions .row {
    width: 100%;
}

.product-detail-page .product-actions .d-flex {
    display: flex !important;
    gap: 12px;
}

.product-detail-page .product-actions .btn-lg {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.product-detail-page .product-actions .btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-detail-page .product-actions .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.product-detail-page .product-actions .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.product-detail-page .product-actions .btn-success {
    background: var(--success);
    border-color: var(--success);
}

.product-detail-page .product-actions .btn-success:hover {
    background: #059669;
    border-color: #059669;
}

@media (max-width: 576px) {
    .product-detail-page .product-actions .d-flex {
        flex-direction: column;
    }
    
    .product-detail-page .product-actions .btn-lg {
        width: 100%;
        min-width: 100% !important;
    }
}

/* Product Images */
.product-images {
    position: sticky;
    top: 20px;
}

.product-main-image {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.discount-badge {
    background: var(--error);
    color: #fff;
}

.product-badge.new-badge {
    background: var(--success);
    color: #fff;
}

.product-thumbnails {
    margin-top: 15px;
}

.thumbnail-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
    aspect-ratio: 1;
}

.thumbnail-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding-left: 20px;
}

.product-brand {
    font-size: 14px;
    color: var(--gray-600);
}

/* Product Price - Detay Sayfası */
.product-detail-page .product-price {
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.product-detail-page .price-current {
    font-size: 28px;
    line-height: 1.2;
}

.product-detail-page .price-old {
    font-size: 18px;
}

.product-detail-page .discount-badge-text {
    font-size: 14px;
}

.product-detail-page .product-price .input-group {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.product-detail-page .product-price .input-group .btn {
    border: none;
    background: var(--gray-100);
    color: var(--gray-700);
    font-weight: 600;
    padding: 6px 12px;
}

.product-detail-page .product-price .input-group .btn:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.product-detail-page .product-price .input-group .form-control {
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    font-weight: 600;
    padding: 6px 8px;
}

@media (max-width: 768px) {
    .product-detail-page .price-current {
        font-size: 24px;
    }
    
    .product-detail-page .product-price {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px !important;
    }
}

.product-brand a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

.product-sku {
    font-size: 14px;
    color: var(--gray-600);
}

.product-rating .stars {
    font-size: 16px;
}

.product-price {
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

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

.price-old {
    font-size: 20px;
    color: var(--gray-500);
}

.discount-badge-text {
    font-size: 16px;
}

.product-short-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
}

.product-stock .alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

.product-actions {
    padding: 20px 0;
}

.product-quick-actions .btn {
    flex: 1;
}

.product-features .feature-item {
    transition: all 0.3s ease;
}

.product-features .feature-item:hover {
    border-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Product Tabs */
#productTabs {
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 0;
}

#productTabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray-600);
    font-weight: 500;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

#productTabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

#productTabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

#productTabsContent {
    min-height: 300px;
    padding: 30px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.product-specifications table {
    margin-bottom: 0;
}

.product-specifications th {
    font-weight: 600;
    color: var(--gray-900);
    background: var(--gray-50);
}

.product-specifications td {
    color: var(--gray-700);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--gray-50);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--gray-900);
}

/* Responsive */
@media (max-width: 992px) {
    .product-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .product-title {
        font-size: 26px;
    }
    
    .price-current {
        font-size: 28px;
    }
    
    .product-images {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 22px;
    }
    
    .price-current {
        font-size: 24px;
    }
    
    .product-main-image {
        aspect-ratio: 4/3;
    }
    
    #productTabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    #productTabsContent {
        padding: 20px 15px;
    }
    
    .product-features .feature-item {
        margin-bottom: 10px;
    }
}

/* =====================================================
   LOGIN PAGE
   ===================================================== */

.login-page {
    background: var(--gray-50);
    min-height: 60vh;
}

.login-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: 20px;
}

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

.login-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.login-form .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.login-form .form-control-lg {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.login-form .form-control-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.password-input-group {
    position: relative;
}

.password-input-group .form-control {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

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

.login-divider {
    position: relative;
    text-align: center;
}

.login-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

.login-divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: var(--gray-500);
    font-size: 14px;
}

.social-login .btn {
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-login .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Success Modal */
#successModal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

#successModal .success-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

#successModal .modal-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
}

#successModal .btn-primary {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#successModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
        margin-top: 10px;
    }
    
    .login-title {
        font-size: 26px;
    }
    
    #successModal .modal-body {
        padding: 30px 20px !important;
    }
    
    #successModal .success-icon i {
        font-size: 60px !important;
    }
    
    #successModal .modal-title {
        font-size: 22px;
    }
}

/* =====================================================
   ACCOUNT PAGE
   ===================================================== */

.account-page {
    background: var(--gray-50);
    min-height: 60vh;
}

.account-sidebar {
    position: sticky;
    top: 20px;
}

.account-profile-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.account-avatar img,
.account-avatar-placeholder {
    border: 4px solid var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.account-nav {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.account-nav-item {
    display: block;
    padding: 12px 20px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.account-nav-item:hover {
    background: var(--gray-50);
    color: var(--primary);
    border-left-color: var(--primary);
}

.account-nav-item.active {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.account-stats {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.account-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.account-card .card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

#accountTabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray-600);
    font-weight: 500;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

#accountTabs .nav-link:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

#accountTabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
}

.account-page .form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.account-page .form-control,
.account-page .form-select {
    border-radius: 8px;
    border: 2px solid var(--gray-200);
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.account-page .form-control:focus,
.account-page .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.account-page .password-input-group {
    position: relative;
}

.account-page .password-input-group .form-control {
    padding-right: 50px;
}

.account-page .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-600);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

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

.account-page .table {
    margin-bottom: 0;
}

.account-page .table thead th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-900);
    border-bottom: 2px solid var(--gray-200);
    padding: 15px;
}

.account-page .table tbody td {
    padding: 15px;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 992px) {
    .account-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .account-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .account-card {
        padding: 15px;
    }
    
    .account-card .card-title {
        font-size: 20px;
    }
    
    #accountTabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .account-page .table {
        font-size: 14px;
    }
    
    .account-page .table thead th,
    .account-page .table tbody td {
        padding: 10px 8px;
    }
}

/* ========== Orders Page Styles ========== */
.orders-list {
    margin-top: 20px;
}

.order-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.order-header {
    padding: 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.order-header h6 {
    color: var(--gray-900);
    font-weight: 600;
    margin: 0;
}

.order-header .text-muted {
    font-size: 13px;
}

.order-total {
    margin-top: 8px;
}

.order-body {
    padding: 20px;
}

.order-info-item {
    padding: 12px;
    background: var(--gray-50);
    border-radius: 8px;
}

.order-info-item small {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-info-item strong {
    color: var(--gray-900);
    font-size: 14px;
    display: block;
    margin-top: 4px;
}

.order-footer {
    padding: 15px 20px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.account-stats {
    background: var(--gray-50) !important;
    border: 1px solid var(--gray-200);
}

.account-stats h6 {
    color: var(--gray-900);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-item small {
    font-size: 12px;
    color: var(--gray-600);
}

.stat-item .fw-bold {
    color: var(--gray-900);
    font-size: 16px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .order-header,
    .order-body,
    .order-footer {
        padding: 15px;
    }
    
    .order-header .d-flex {
        flex-direction: column;
    }
    
    .order-header .text-end {
        text-align: left !important;
        margin-top: 15px;
    }
    
    .order-body .row {
        margin: 0;
    }
    
    .order-body .col-md-4 {
        margin-bottom: 10px;
    }
    
    .order-footer .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .order-footer .btn {
        width: 100%;
    }
}

/* ========== Order Detail Page Styles ========== */
.order-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 8px;
    color: var(--gray-400);
}

.account-page .table tfoot tr.table-primary {
    background: var(--primary);
    color: var(--white);
}

.account-page .table tfoot tr.table-primary strong {
    color: var(--white);
}

@media print {
    .breadcrumb-section,
    .account-sidebar,
    .btn,
    .order-footer {
        display: none !important;
    }
    
    .account-page {
        padding: 0 !important;
    }
    
    .account-card {
        border: none !important;
        box-shadow: none !important;
    }
}

/* ========== Wishlist Page Styles ========== */
.wishlist-grid {
    margin-top: 20px;
}

.wishlist-item {
    position: relative;
    transition: all 0.3s ease;
}

.wishlist-item .product-action-btn.active {
    background: var(--error);
    color: var(--white);
}

.wishlist-item .product-action-btn.active i {
    color: var(--white);
}

.wishlist-added-date {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid var(--gray-200);
}

.wishlist-item .product-actions-bottom {
    margin-top: 15px;
}

.wishlist-item .product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.wishlist-item .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wishlist-item .product-actions-bottom {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .wishlist-grid .row {
        margin: 0;
    }
    
    .wishlist-grid .col-lg-4,
    .wishlist-grid .col-md-6 {
        padding: 0 8px;
        margin-bottom: 16px;
    }
}

/* ========== Addresses Page Styles ========== */
.addresses-grid {
    margin-top: 20px;
}

.address-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.address-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.address-card.address-default {
    border-color: var(--accent);
    background: linear-gradient(to bottom, rgba(245, 158, 11, 0.05), var(--white));
}

.address-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.address-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.address-header h6 {
    color: var(--gray-900);
    font-weight: 600;
    margin: 0;
}

.address-body {
    flex: 1;
    margin-bottom: 15px;
}

.address-body address {
    font-style: normal;
    line-height: 1.8;
    color: var(--gray-700);
}

.address-body address strong {
    color: var(--gray-900);
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.address-footer {
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.address-footer .btn {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .address-card {
        padding: 15px;
    }
    
    .address-badge {
        top: 10px;
        right: 10px;
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .address-footer .d-flex {
        flex-direction: column;
    }
    
    .address-footer .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* ========== Checkout Page Styles ========== */
.checkout-page {
    background: var(--gray-50);
    min-height: 60vh;
}

.checkout-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.checkout-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.checkout-step-content {
    padding-top: 10px;
}

.address-selection {
    max-height: 400px;
    overflow-y: auto;
}

.address-option .form-check-input {
    margin-top: 0.5rem;
}

.address-card-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 15px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.address-option .form-check-input:checked ~ .form-check-label .address-card-select {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-methods {
    max-height: 400px;
    overflow-y: auto;
}

.payment-option .form-check-input {
    margin-top: 0.5rem;
}

.payment-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--gray-900);
}

.payment-icon {
    color: var(--success);
}

.payment-title {
    color: var(--gray-900);
}

.payment-description {
    color: var(--gray-600);
}

.payment-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.payment-option .form-check-input:checked ~ .form-check-label .payment-card {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.payment-option .form-check-input:checked ~ .form-check-label .payment-card .payment-icon,
.payment-option .form-check-input:checked ~ .form-check-label .payment-card .payment-title,
.payment-option .form-check-input:checked ~ .form-check-label .payment-card .payment-description {
    color: var(--white) !important;
}

.payment-option .form-check-input:checked ~ .form-check-label .payment-card .badge {
    background: var(--white) !important;
    color: var(--primary) !important;
}

.payment-option .form-check-input:disabled ~ .form-check-label .payment-card {
    cursor: not-allowed;
}

.checkout-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.checkout-summary-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.order-items-summary {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
}

.order-item-summary {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-50);
}

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

.order-item-name {
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.order-item-meta {
    font-size: 12px;
}

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

.checkout-summary-item {
    font-size: 14px;
    color: var(--gray-700);
}

.checkout-summary-total {
    font-size: 18px;
    color: var(--gray-900);
}

.checkout-security {
    font-size: 13px;
}

.checkout-security i {
    width: 20px;
}

@media (max-width: 768px) {
    .checkout-step {
        padding: 20px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .checkout-summary-card {
        margin-top: 20px;
    }
}

