/* Arzu Yolu Erotik Shop Ana CSS Dosyası - White Theme v1.0 */

/* Arzu Yolu Özel Renkler ve Efektler */
@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 0 20px rgba(231, 76, 60, 0.6); }
}

.erotic-accent {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.erotic-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.erotic-heartbeat {
    animation: heartbeat 1.5s ease-in-out infinite;
}

/* Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties (Variables) */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #c0392b;
    --accent-color: #e91e63;
    --accent-secondary: #ad1457;
    --gold-color: #f39c12;
    --purple-color: #9b59b6;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
    --light-bg: #ffffff;
    --light-surface: #f8f9fa;
    --light-surface-2: #e9ecef;
    --light-border: #dee2e6;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-muted: #95a5a6;
    --shadow-light: rgba(0,0,0,0.05);
    --shadow-medium: rgba(0,0,0,0.1);
    --shadow-heavy: rgba(0,0,0,0.15);
    --border-radius: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 70px;
    --container-max-width: 1200px;
}

/* Performans optimizasyonları */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--light-bg);
    transition: var(--transition);
    padding-top: var(--header-height) !important;
    /* Performans optimizasyonu */
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header - Sabit ve Modern */
.header {
    background: linear-gradient(135deg, var(--light-surface) 0%, var(--light-surface-2) 100%) !important;
    color: var(--text-primary);
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px var(--shadow-medium);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    border-bottom: 2px solid var(--primary-color);
    width: 100% !important;
    height: var(--header-height);
    /* Performans optimizasyonu */
    will-change: transform;
    transform: translateZ(0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--purple-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    z-index: 1001;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
    gap: 0.5rem;
}

.logo img {
    max-height: 32px;
    width: auto;
    height: auto;
    /* Performans optimizasyonu */
    will-change: transform;
    object-fit: contain;
}

.logo:hover {
    color: var(--primary-color);
    transform: scale(1.02);
}

/* Navigation - Sade ve Kompakt Menü */
.main-nav {
    display: flex;
    list-style: none;
    gap: 0;
    position: relative;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border-radius: var(--border-radius);
    white-space: nowrap;
}

.main-nav a i {
    font-size: 0.85rem;
    opacity: 0.8;
}

.main-nav a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.main-nav a.active {
    background: rgba(231, 76, 60, 0.2);
    color: var(--primary-color);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    transition: var(--transition);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px var(--shadow-medium);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

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

.dropdown-menu a {
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid var(--light-border);
}

.dropdown-menu a:hover {
    background: rgba(231, 76, 60, 0.1);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.user-menu a i {
    font-size: 0.85rem;
}

.user-menu a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-icon:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Admin Link */
.admin-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.admin-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white;
}

/* Admin Mode Indicator */
.admin-mode-indicator {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold-color), #e67e22);
    color: #000;
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 9998;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.admin-mode-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.admin-mode-content i {
    font-size: 1rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--primary-color);
    border-color: white;
    transform: scale(1.2);
}

/* Container ve Section */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    margin: 40px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: var(--light-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-border);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
    border-color: var(--primary-color);
    animation: glow 2s ease-in-out infinite alternate;
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card picture {
    width: 100%;
    height: 200px;
    display: block;
}

.product-card picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-info {
    padding: 10px;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-price {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 6px;
}

.product-actions {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 48px;
    line-height: 1;
    letter-spacing: 0.2px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    animation: glow 1s ease-in-out infinite alternate;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #2ecc71);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Arzu Yolu Özel Butonlar */
.btn-erotic {
    background: linear-gradient(135deg, var(--accent-color), var(--purple-color));
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-erotic:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    animation: glow 1s ease-in-out infinite alternate;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-color), #e67e22);
    color: white;
    border: none;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    z-index: 2;
    animation: bounce 2s infinite;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
}

.sale-badge::before {
    content: '❤️';
    margin-right: 5px;
    animation: heartbeat 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.category-card {
    background: var(--light-surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--light-border);
    text-align: center;
    position: relative;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--primary-color);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Arzu Yolu Özel Kartlar */
.erotic-card {
    background: linear-gradient(135deg, var(--light-surface), rgba(231, 76, 60, 0.05));
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.erotic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.erotic-card:hover::before {
    opacity: 0.1;
}

.erotic-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

.category-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    transition: var(--transition);
}

.category-card picture {
    width: 100%;
    height: 150px;
    display: block;
}

.category-card picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.category-card:hover .category-image,
.category-card:hover picture img {
    transform: scale(1.05);
}

.category-info {
    padding: 20px;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.category-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--light-surface);
    color: var(--text-secondary);
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid var(--light-border);
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid var(--light-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--light-surface);
    margin: 5% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    position: relative;
    border: 1px solid var(--light-border);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--danger-color);
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-border);
    border-radius: var(--border-radius);
    background: var(--light-surface-2);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}



/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--light-surface);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .main-nav a {
        padding: 15px 20px;
        border-radius: var(--border-radius);
        justify-content: flex-start;
        font-size: 1rem;
    }
    
    .main-nav a:hover {
        background: rgba(231, 76, 60, 0.1);
    }
    
    .user-menu {
        gap: 10px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .product-title {
        font-size: 0.85rem;
    }
    
    .product-description {
        font-size: 0.7rem;
    }
    
    .product-price {
        font-size: 0.7rem;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-card picture {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 360px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .product-card {
        min-width: 0;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-card picture {
        height: 140px;
    }
    
    .product-info {
        padding: 6px;
    }
    
    .product-title {
        font-size: 0.8rem;
    }
    
    .product-description {
        font-size: 0.65rem;
    }
    
    .product-price {
        font-size: 0.65rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Focus Styles */
html {
    scroll-behavior: smooth;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-surface);
}

::-webkit-scrollbar-thumb {
    background: var(--light-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: var(--light-surface);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--light-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Feature-specific gradients */
.feature-security::before { background: linear-gradient(45deg, var(--success-color), #20c997); }
.feature-delivery::before { background: linear-gradient(45deg, var(--info-color), #0056b3); }
.feature-return::before { background: linear-gradient(45deg, var(--warning-color), #e0a800); }
.feature-support::before { background: linear-gradient(45deg, #6f42c1, #5a32a3); }
.feature-phone::before { background: linear-gradient(45deg, var(--info-color), #138496); }
.feature-email::before { background: linear-gradient(45deg, #fd7e14, #e55a00); }
.feature-chat::before { background: linear-gradient(45deg, #e83e8c, #d63384); }

.feature-card small {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
    font-style: italic;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.stat-card {
    background: var(--light-surface);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--light-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Stat-specific borders */
.stat-customers { border-top: 4px solid var(--success-color); }
.stat-orders { border-top: 4px solid var(--info-color); }
.stat-products { border-top: 4px solid var(--warning-color); }
.stat-experience { border-top: 4px solid #6f42c1; }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-surface), var(--light-surface-2));
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid var(--light-border);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    margin: 40px 0;
}

.content-wrapper {
    background: var(--light-surface);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-border);
    line-height: 1.8;
}

.content-wrapper h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.content-wrapper h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.content-wrapper p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.7;
}

.content-wrapper ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-wrapper li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-wrapper strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    background: var(--light-surface);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-border);
}

.contact-form {
    background: var(--light-surface);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-border);
}

.contact-info h3,
.contact-form h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-surface-2);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: var(--transition);
    border: 1px solid var(--light-border);
}

.contact-info .contact-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info .contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.contact-info .contact-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.info-box {
    background: var(--light-surface);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-border);
    transition: var(--transition);
    text-align: center;
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--primary-color);
}

.info-box h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 25px var(--shadow-medium);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    min-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #28a745;
}

.notification-error .notification-content i {
    color: #dc3545;
}

.notification-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
}

/* File Upload Styles */
.file-upload {
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.file-upload:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload label {
    display: block;
    cursor: pointer;
}

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

.file-upload p {
    margin: 0.5rem 0;
    color: var(--text-primary);
}

/* Receipt Upload Section */
.receipt-upload {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-surface-2);
    border-radius: 8px;
    border: 1px solid var(--light-border);
}

.receipt-upload h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Payment Method Styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--light-border);
    border-radius: 8px;
    background: var(--light-surface-2);
    transition: all 0.3s ease;
    position: relative;
}

.payment-option:hover:not(.disabled) {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
    transform: scale(1.2);
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    cursor: pointer;
    flex: 1;
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.payment-option.disabled label {
    cursor: not-allowed;
}

.payment-notice {
    font-size: 0.8rem;
    color: #dc3545;
    margin-left: auto;
}

/* IBAN Info Styles */
.iban-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--light-surface-2);
    border-radius: 8px;
    border: 1px solid var(--light-border);
}

.iban-info h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.iban-details {
    background: var(--light-surface);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid var(--light-border);
}

.iban-details p {
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.iban-details strong {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }
    
    .file-upload {
        padding: 1.5rem;
    }
    
    .file-upload i {
        font-size: 2rem;
    }
    
    .payment-option {
        padding: 0.75rem;
    }
    
    .iban-details {
        padding: 0.75rem;
    }
} 

/* Cart Section Styles */
.cart-section {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    margin-top: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-image picture {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.cart-item-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cart-item-quantity .quantity-input {
    width: 80px;
    padding: 8px 12px;
    border: 2px solid var(--dark-border);
    border-radius: 6px;
    background: var(--dark-surface-2);
    color: var(--text-primary);
    text-align: center;
}

.cart-item-subtotal {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-summary {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-border);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.cart-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-border);
}

.form-actions .btn {
    min-width: 120px;
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-border);
    border-radius: 4px;
    background: var(--light-surface-2);
    position: relative;
    transition: var(--transition);
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label:hover .checkmark {
    border-color: var(--primary-color);
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        width: 120px;
        height: 120px;
    }
    
    .cart-item-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cart-item {
        padding: 15px;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-summary {
        padding: 20px;
    }
} 

/* Message Limit Info */
.message-limit-info {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.message-limit-info p {
    color: var(--primary-color);
    margin: 0;
    font-size: 14px;
}

.message-limit-info i {
    margin-right: 8px;
}

/* Support Form Improvements */
.support-form {
    background: var(--light-surface-2);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.support-form h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.support-info {
    background: var(--light-surface-2);
    border: 1px solid var(--light-border);
    border-radius: 12px;
    padding: 25px;
}

.support-info h3 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.contact-methods {
    display: grid;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-surface);
    border-radius: 8px;
    border: 1px solid var(--light-border);
}

.contact-method i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h4 {
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-size: 16px;
}

.contact-method p {
    color: var(--text-secondary);
    margin: 0 0 5px 0;
    font-weight: 500;
}

.contact-method small {
    color: var(--text-muted);
    font-size: 12px;
}

/* Alert Improvements */
.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

/* Responsive Design for Support */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method i {
        margin: 0 0 10px 0;
    }
} 

/* Ticket Management Styles */
.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
}

.ticket-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-border);
}

.ticket-info h3 {
    color: var(--text-primary);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.ticket-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ticket-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ticket-status {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-new {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.status-answered {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-closed {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
}

.ticket-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-section,
.response-section {
    background: var(--light-surface-2);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
}

.response-section {
    border-left-color: var(--success-color);
    background: rgba(39, 174, 96, 0.05);
}

.message-section h4,
.response-section h4 {
    color: var(--text-primary);
    margin: 0 0 10px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message-content,
.response-content {
    color: var(--text-secondary);
    line-height: 1.6;
    white-space: pre-wrap;
}

.response-date {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--light-border);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.empty-state h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.empty-state a {
    color: var(--primary-color);
    text-decoration: none;
}

.empty-state a:hover {
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

/* Address Management Styles */
.address-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}

.address-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.address-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.address-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.address-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

.address-card .default-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--success-color), #20c997);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.address-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.address-actions .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: 36px;
}

.address-preview {
    margin-bottom: 30px;
}

.address-preview h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.address-preview .address-card {
    background: var(--light-surface-2);
    border: 2px solid var(--light-border);
}

.address-preview .address-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Form Row for Side by Side Inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Danger Button */
.btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #c82333);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Responsive Address Management */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .address-actions {
        flex-direction: column;
    }
    
    .address-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .address-card {
        padding: 15px;
    }
    
    .address-card h4 {
        font-size: 1rem;
    }
    
    .address-preview h3 {
        font-size: 1.1rem;
    }
} 

/* Account Page Address Styles */
.addresses-list {
    margin-bottom: 30px;
}

.address-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
    position: relative;
}

.address-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.address-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.default-badge {
    background: linear-gradient(135deg, var(--success-color), #20c997);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 10px;
}

.address-actions {
    display: flex;
    gap: 8px;
}

.address-actions .btn {
    padding: 8px 12px;
    font-size: 0.85rem;
    min-height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-actions .btn-secondary {
    background: var(--light-surface-2);
    color: var(--text-primary);
    border: 1px solid var(--light-border);
}

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

.address-actions .btn-danger {
    background: linear-gradient(135deg, var(--danger-color), #c82333);
    color: white;
    border: 1px solid var(--danger-color);
}

.address-actions .btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.address-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.address-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Order Card Styles */
.order-card {
    background: var(--light-surface);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.order-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

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

.order-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-new { background: rgba(255, 193, 7, 0.2); color: #ffc107; }
.status-confirmed { background: rgba(40, 167, 69, 0.2); color: #28a745; }
.status-preparing { background: rgba(102, 126, 234, 0.2); color: #667eea; }
.status-shipped { background: rgba(23, 162, 184, 0.2); color: #17a2b8; }
.status-delivered { background: rgba(40, 167, 69, 0.2); color: #28a745; }
.status-cancelled { background: rgba(220, 53, 69, 0.2); color: #dc3545; }
.status-read { background: rgba(40, 167, 69, 0.2); color: #28a745; }
.status-closed { background: rgba(108, 117, 125, 0.2); color: #6c757d; }

.order-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.order-card strong {
    color: var(--text-primary);
    font-weight: 600;
}

.order-card .btn-secondary {
    margin-top: 15px;
    padding: 8px 16px;
    font-size: 0.85rem;
    min-height: 36px;
} 