/* ============================================
   PREMIUM LUXURY BUTIK TASARIMI
   Sahra Butik - Ultra Modern E-Ticaret Teması
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Renk Paleti */
    --primary-color: #d4a574;
    --primary-dark: #b8864a;
    --primary-light: #e8c9a0;
    --primary-gradient: linear-gradient(135deg, #d4a574 0%, #c8965a 50%, #b8864a 100%);
    --primary-gradient-hover: linear-gradient(135deg, #b8864a 0%, #c8965a 50%, #d4a574 100%);
    
    --secondary-color: #2c3e50;
    --secondary-dark: #1a252f;
    --secondary-light: #34495e;
    
    --accent-color: #e74c3c;
    --accent-light: #ec7063;
    
    --success-color: #27ae60;
    --success-light: #2ecc71;
    
    --gold: #f39c12;
    --gold-light: #f1c40f;
    
    /* Text Colors */
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-light: #95a5a6;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    --bg-dark: #1a252f;
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.20);
    --shadow-gold: 0 8px 24px rgba(212, 165, 116, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* WhatsApp Float Button - Premium Animation */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: var(--radius-full);
    text-align: center;
    font-size: 36px;
    box-shadow: var(--shadow-gold);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: floatPulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    opacity: 0.7;
    z-index: -1;
    animation: ripple 2s infinite;
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: var(--shadow-gold);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 16px 48px rgba(212, 165, 116, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Header - Ultra Premium */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.99);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    gap: 30px;
}

.logo h1 {
    font-size: 34px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.8px;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.logo h1:hover::after {
    width: 100%;
}

.logo h1:hover {
    transform: scale(1.05);
}

.logo h1 a {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-nav a:hover::before {
    width: 100%;
}

.cart-link {
    position: relative;
    font-size: 24px;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 8px;
    border-radius: var(--radius-sm);
}

.cart-link:hover {
    color: var(--primary-color);
    background: rgba(212, 165, 116, 0.1);
    transform: scale(1.1) rotate(5deg);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-gradient);
    color: var(--text-white);
    border-radius: var(--radius-full);
    width: 24px;
    height: 24px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--bg-white);
    animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero Section - Ultra Premium */
.hero {
    background: var(--primary-gradient);
    color: var(--text-white);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: heroShimmer 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
    animation: heroPattern 20s linear infinite;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes heroPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 64px;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 50px;
    opacity: 0.95;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Buttons - Ultra Premium */
.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-gradient);
    color: var(--text-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: var(--primary-gradient-hover);
}

.btn:active {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-gradient);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(212, 165, 116, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #5a6268 0%, #6c757d 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, var(--success-light) 100%);
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--success-light) 0%, var(--success-color) 100%);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: var(--radius-sm);
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Products Section - Ultra Premium */
.products-section {
    padding: 120px 0;
    background: var(--bg-white);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    color: var(--text-dark);
    font-weight: 800;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 3px;
    box-shadow: var(--shadow-sm);
}

.section-title::before {
    content: '✨';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    opacity: 0.5;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-card:hover::before {
    opacity: 0.03;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 180px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: #f8f8f8;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: auto;
    -ms-interpolation-mode: bicubic;
}

.product-card:hover .product-image img {
    transform: scale(1.2) rotate(2deg);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 40px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(44, 62, 80, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
    backdrop-filter: blur(5px);
    flex-direction: column;
    padding: 15px;
}

.product-overlay .btn {
    width: 100%;
    max-width: 150px;
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 12px;
    position: relative;
    z-index: 1;
    background: var(--bg-white);
}

.product-info h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.2px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 36px;
}

.product-price {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 400;
}

.current-price {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}

/* About & Contact Sections - Premium */
.about-section, .contact-section {
    padding: 120px 0;
    background: var(--bg-light);
    position: relative;
}

.about-section::before, .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.3;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 19px;
    line-height: 2.2;
    color: var(--text-medium);
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.contact-item {
    text-align: center;
    padding: 50px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.contact-item i {
    font-size: 56px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: block;
    transition: var(--transition);
}

.contact-item:hover i {
    transform: scale(1.2) rotate(5deg);
}

.contact-item h3 {
    margin-bottom: 18px;
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 16px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.contact-item a:hover::after {
    width: 100%;
}

.contact-item a:hover {
    color: var(--primary-dark);
}

/* Footer - Ultra Premium */
.main-footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: #ecf0f1;
    padding: 80px 0 40px;
    margin-top: 120px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    box-shadow: var(--shadow-sm);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.9;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 15px;
    position: relative;
    padding-left: 20px;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 25px;
}

.footer-section a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.social-links a::before {
    display: none;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Page Styles - Premium */
.page-title {
    font-size: 48px;
    margin: 80px 0 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 800;
    position: relative;
    padding-bottom: 25px;
    letter-spacing: -1px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 3px;
    box-shadow: var(--shadow-sm);
}

.products-page, .cart-page, .checkout-page, .order-track-page, .about-page, .contact-page {
    padding: 80px 0;
    min-height: 70vh;
    background: var(--bg-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.products-filters {
    margin-bottom: 50px;
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.filter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-form input, .filter-form select {
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
    background: var(--bg-white);
}

.filter-form input:focus, .filter-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.filter-form input {
    flex: 1;
    min-width: 200px;
}

.filter-form select {
    min-width: 180px;
    cursor: pointer;
}

.no-products {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-light);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.no-products i {
    font-size: 80px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: block;
}

/* Cart Page - Ultra Premium */
.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.cart-table {
    width: 100%;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 165, 116, 0.1);
    box-sizing: border-box;
    table-layout: auto;
}

.cart-table th, .cart-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    box-sizing: border-box;
    word-wrap: break-word;
}

.cart-table th {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8e8e8 100%);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-table tbody tr {
    transition: var(--transition);
}

.cart-table tbody tr:hover {
    background: rgba(212, 165, 116, 0.05);
    transform: scale(1.01);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-item-info > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-info img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cart-item-info:hover img {
    transform: scale(1.1) rotate(2deg);
    box-shadow: var(--shadow-md);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    padding: 6px;
    border-radius: var(--radius-sm);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xs);
}

.qty-btn:hover {
    background: var(--primary-gradient);
    color: var(--text-white);
    transform: scale(1.15);
    box-shadow: var(--shadow-sm);
}

.quantity-control input {
    width: 60px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
}

.summary-card h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 26px;
    font-weight: 800;
    text-align: center;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.summary-row.total {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    border-bottom: none;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 3px solid #f0f0f0;
}

.summary-row.total span:first-child {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.summary-row.total span:last-child {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
}

.empty-cart {
    text-align: center;
    padding: 120px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.empty-cart i {
    font-size: 120px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 35px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.empty-cart h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 800;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 18px;
}

/* Checkout Page - Premium */
.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 100%;
    box-sizing: border-box;
}

.checkout-form-section, .checkout-summary {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 165, 116, 0.1);
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.payment-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.payment-info-card h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-info-card h2 i {
    color: var(--primary-color);
}

.checkout-form h2 {
    margin: 50px 0 30px;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 800;
    padding-bottom: 20px;
    border-bottom: 3px solid #f0f0f0;
    position: relative;
}

.checkout-form h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
}

.checkout-form h2:first-child {
    margin-top: 0;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.payment-info {
    margin: 35px 0;
}

.payment-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: var(--radius-lg);
    border-left: 6px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.payment-card h3 {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.payment-card h3 i {
    color: var(--primary-color);
    font-size: 28px;
}

.iban-info p {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.9;
}

.iban-info strong {
    color: var(--text-dark);
    font-weight: 700;
}

.payment-note {
    margin-top: 25px;
    padding: 20px;
    background: #fff3cd;
    border-radius: var(--radius-sm);
    color: #856404;
    font-size: 15px;
    line-height: 1.8;
    border-left: 4px solid #ffc107;
    box-shadow: var(--shadow-xs);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
}

.summary-item-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--text-dark);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    margin-top: 25px;
    border-top: 4px solid #f0f0f0;
    font-size: 28px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Order Success - Premium */
.order-success-page {
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--bg-light);
}

.success-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 70px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
}

.success-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.success-icon {
    font-size: 120px;
    color: var(--success-color);
    margin-bottom: 35px;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 8px 16px rgba(39, 174, 96, 0.3));
}

@keyframes scaleIn {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.success-card h1 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
}

.order-number {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--text-medium);
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 2px dashed var(--primary-color);
}

.order-number strong {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 800;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.invoice-download {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

/* Order Track - Premium */
.track-form-card {
    max-width: 600px;
    margin: 0 auto 60px;
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.track-form input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 16px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.track-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
    transform: translateY(-2px);
}

.order-details-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 50px;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 4px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 20px;
}

.order-status {
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}

.status-pending {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #000;
}

.status-processing {
    background: linear-gradient(135deg, #17a2b8, #138496);
    color: #fff;
}

.status-completed {
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
}

.status-cancelled {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.info-item {
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.info-item strong {
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.order-items-section {
    margin: 50px 0;
}

.order-items-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 25px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.order-items-table th, .order-items-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.order-items-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.invoice-section {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 3px solid #f0f0f0;
}

/* Product Detail - Premium */
.product-detail-page {
    padding: 80px 0;
    background: var(--bg-light);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: block;
}

.product-detail-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.no-image-large {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: #ddd;
    font-size: 120px;
}

.product-detail-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.product-description {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 5px solid var(--primary-color);
}

.product-description h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
}

.product-description p {
    color: var(--text-medium);
    line-height: 2;
    font-size: 16px;
}

.product-stock {
    margin: 30px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 17px;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.product-stock strong {
    color: var(--text-dark);
    font-weight: 700;
}

.product-actions {
    margin-top: 40px;
}

/* About & Contact Pages - Premium */
.about-content-page {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 70px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    line-height: 2.2;
    font-size: 18px;
    color: var(--text-medium);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.contact-item-page {
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.contact-item-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.contact-item-page:hover::before {
    transform: scaleX(1);
}

.contact-item-page:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-item-page i {
    font-size: 64px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    display: block;
    transition: var(--transition);
}

.contact-item-page:hover i {
    transform: scale(1.2) rotate(5deg);
}

.contact-item-page h3 {
    margin-bottom: 25px;
    color: var(--text-dark);
    font-size: 26px;
    font-weight: 700;
}

.contact-item-page p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 17px;
}

.contact-item-page a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    position: relative;
}

.contact-item-page a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
}

.contact-item-page a:hover::after {
    width: 100%;
}

.contact-item-page a:hover {
    color: var(--primary-dark);
}

/* Alerts - Premium */
.alert {
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    margin-bottom: 30px;
    border-left: 5px solid;
    font-size: 16px;
    line-height: 1.7;
    box-shadow: var(--shadow-sm);
}

.alert-error {
    background: #fee;
    color: #c33;
    border-color: #dc3545;
}

.alert-success {
    background: #efe;
    color: #2d5;
    border-color: #28a745;
}

.text-center {
    text-align: center;
}

/* Loading Animation - Premium */
.loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: var(--radius-full);
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient-hover);
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cart-content, .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 24px;
        margin: 0;
    }
    
    .main-nav {
        gap: 15px;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .main-nav a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 400px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-image {
        height: 160px;
        min-height: 160px;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        background: #f8f8f8;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 13px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .page-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .checkout-page {
        padding: 20px 0;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .checkout-form-section, .checkout-summary {
        padding: 25px 15px;
        margin: 0 auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .checkout-steps {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 30px;
        padding: 0 10px;
        justify-content: space-between;
    }
    
    .step {
        flex: 1;
        max-width: none;
        min-width: 0;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 11px;
        text-align: center;
        line-height: 1.2;
    }
    
    .step::after {
        display: none;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input, .form-group textarea, .form-group select {
        padding: 14px 16px;
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .iban-details {
        gap: 15px;
    }
    
    .copy-field {
        flex-direction: column;
        gap: 10px;
    }
    
    .copy-field input {
        width: 100%;
    }
    
    .copy-btn {
        width: 100%;
        padding: 14px;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-box {
        padding: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-items {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cart-table {
        min-width: 500px;
        font-size: 12px;
    }
    
    .cart-table th, .cart-table td {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .cart-table th {
        font-size: 11px;
        padding: 10px 8px;
    }
    
    .cart-item-info {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .cart-item-info img {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-info > div {
        min-width: 0;
        flex: 1;
    }
    
    .cart-item-info span {
        font-size: 12px;
        word-break: break-word;
    }
    
    .item-size {
        font-size: 11px;
    }
    
    .quantity-control {
        gap: 6px;
        padding: 3px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .quantity-control input {
        width: 40px;
        font-size: 12px;
    }
    
    .cart-summary {
        position: static;
        margin-top: 20px;
        order: -1;
    }
    
    .summary-card {
        padding: 20px 15px;
    }
    
    .summary-card h2 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .summary-row {
        font-size: 14px;
        padding: 12px 0;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
    }
    
    .summary-row span {
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }
    
    .summary-row span:first-child {
        flex: 0 0 auto;
        min-width: auto;
        font-weight: 500;
    }
    
    .summary-row span:last-child {
        flex: 1;
        text-align: right;
        font-weight: 700;
        color: #333;
    }
    
    .summary-row.total {
        font-size: 18px;
        padding: 18px 0;
        margin-top: 15px;
        border-top: 2px solid #f0f0f0;
        padding-top: 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .summary-row.total span {
        display: inline-block;
        white-space: nowrap;
    }
    
    .summary-row.total span:first-child {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        margin-right: 10px;
    }
    
    .summary-row.total span:last-child {
        font-size: 24px;
        font-weight: 900;
        color: var(--primary-color);
        text-align: right;
        flex: 0 0 auto;
    }
    
    .btn-block {
        width: 100%;
        margin-top: 15px;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        padding: 20px 15px;
        gap: 25px;
    }
    
    .payment-info-card {
        padding: 25px 15px;
    }
    
    .payment-info-card h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .iban-section {
        padding: 20px 15px;
    }
    
    .iban-header h3 {
        font-size: 20px;
        text-align: center;
    }
    
    .amount-value {
        font-size: 28px;
        text-align: center;
    }
    
    .order-items {
        margin-bottom: 20px;
    }
    
    .order-item {
        padding: 12px 0;
    }
    
    .summary-total {
        padding: 20px 0;
    }
    
    .summary-total .summary-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .summary-total .summary-row span {
        display: block;
        width: 100%;
        text-align: left;
    }
    
    .summary-total .summary-row span:last-child {
        text-align: right;
        font-weight: 700;
        margin-top: 4px;
    }
    
    .summary-total .summary-row.total {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 0;
        margin-top: 15px;
        border-top: 2px solid #f0f0f0;
        padding-top: 20px;
    }
    
    .summary-total .summary-row.total span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .summary-total .summary-row.total span:first-child {
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
    }
    
    .summary-total .summary-row.total span:last-child {
        font-size: 24px;
        font-weight: 900;
        color: var(--primary-color);
        text-align: right;
        margin-top: 0;
    }
    
    .customer-info-summary {
        padding: 15px;
        margin-top: 20px;
    }
    
    .contact-grid, .contact-grid-page {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 32px;
        bottom: 20px;
        right: 20px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .btn {
        width: 100%;
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .order-info-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-form {
        flex-direction: column;
    }
    
    .filter-form input,
    .filter-form select {
        width: 100%;
    }
    
    .checkout-form-section, .checkout-summary {
        padding: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title, .page-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-image {
        height: 160px;
        min-height: 160px;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        background: #f8f8f8;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-info h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .old-price {
        font-size: 11px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 15px;
    }
    
    .btn-sm {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .checkout-form-section, .checkout-summary,
    .track-form-card, .order-details-card {
        padding: 30px 20px;
    }
    
    .success-card {
        padding: 50px 30px;
    }
    
    .about-content-page {
        padding: 50px 30px;
    }
    
    .product-detail {
        padding: 30px 20px;
    }
}

/* Print Styles */
@media print {
    .main-header, .main-footer, .whatsapp-float {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Accessibility */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Checkout Steps */
.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    padding: 0 20px;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    flex: 1;
    max-width: 200px;
    min-width: 80px;
}

.step::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.4);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step.completed::after {
    background: #28a745;
}

.step-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-align: center;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 700;
}

/* IBAN Section */
.iban-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    border: 2px solid rgba(212, 165, 116, 0.2);
}

.iban-header h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.info-text {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.iban-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.iban-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.iban-item label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.copy-field {
    display: flex;
    gap: 10px;
    align-items: center;
}

.copy-field input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    background: white;
    color: var(--text-dark);
}

.copy-btn {
    padding: 12px 20px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    white-space: nowrap;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.4);
}

.iban-item.highlight {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.05) 100%);
    padding: 20px;
    border-radius: var(--radius);
    border: 2px solid var(--primary-color);
}

.amount-display {
    margin-top: 10px;
}

.amount-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.info-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 700;
}

.info-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Receipt Form */
.receipt-form {
    margin-top: 30px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: space-between;
}

.form-actions .btn {
    flex: 1;
}

.customer-info-summary {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--radius);
}

.customer-info-summary h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
}

.customer-info-summary p {
    margin: 8px 0;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.6;
}

.item-size {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 4px;
}

/* Product Sizes */
.product-sizes {
    margin: 25px 0;
}

.product-sizes label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 16px;
}

.size-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.size-option {
    min-width: 50px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    color: var(--text-dark);
}

.size-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.2);
}

.size-option.active {
    background: var(--primary-gradient);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(212, 165, 116, 0.4);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-white);
}
