/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1000;
}

.header * {
    background: transparent !important;
}

.header .search-bar input {
    background: rgba(52, 73, 94, 0.3) !important;
    color: #ecf0f1 !important;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    color: #ecf0f1;
    font-weight: 400;
}

.contact-info i {
    color: #f39c12;
    margin-right: 8px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.header-actions a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid transparent;
    position: relative;
}

.header-actions a:hover {
    color: #f39c12;
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

/* Улучшенные стили для корзины */
.cart-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cart-link::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;
}

.cart-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-color: rgba(255, 255, 255, 0.3);
    color: white !important;
}

.cart-link:hover::before {
    left: 100%;
}

.cart-link i {
    margin-right: 8px;
    font-size: 16px;
    animation: cartBounce 2s infinite;
}

.cart-counter {
    background: #e74c3c;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 5px;
    min-width: 20px;
    text-align: center;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes cartBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 5px;
}

.logo-text span {
    color: #f39c12;
}

.logo-text p {
    font-size: 14px;
    color: #bdc3c7;
}



.header-features {
    display: flex;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 12px 18px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::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;
}

.feature:hover::before {
    left: 100%;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.feature i {
    color: #fff;
    font-size: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature span {
    color: #ff6b35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 107, 53, 0.6);
    white-space: nowrap;
    font-weight: 800;
    animation: bright-glow 2s ease-in-out infinite alternate;
}

@keyframes bright-glow {
    0% { 
        color: #ff6b35;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 107, 53, 0.6);
    }
    100% { 
        color: #ffd700;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.4);
    }
}

/* Navigation Styles */
.navigation {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    z-index: 1001;
    padding: 15px 0;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    gap: 8px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 14px 28px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-menu a::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;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #34495e;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #2c3e50;
}

.dropdown-menu a:hover {
    background: #e74c3c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.1;
}



/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-outline {
    background: transparent;
    color: #e74c3c;
    border-color: #e74c3c;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e74c3c;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: #2c3e50;
}

.category-card p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 20px;
}

.category-card .btn {
    margin: 0 20px 20px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    margin-top: 30px;
}

.about-text li {
    padding: 10px 0;
    color: #666;
}

.about-text li i {
    color: #e74c3c;
    margin-right: 10px;
    width: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #e74c3c;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #e74c3c;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-item i {
    color: #e74c3c;
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Mobile Optimization - Comprehensive Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Optimization */
    .header {
        position: relative;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .header-top {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .contact-info {
        flex-direction: row;
        gap: 15px;
        overflow: hidden;
    }
    
    .contact-info span {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-actions a {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .header-main {
        flex-direction: row;
        gap: 10px;
        padding: 10px 0;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        gap: 8px;
        flex: 1;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .logo-text p {
        font-size: 10px;
        display: none;
    }
    
    .header-features {
        display: none;
    }
    
    /* Navigation Mobile Optimization */
    .navigation {
        padding: 8px 0;
        position: relative;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 15px;
        white-space: nowrap;
    }
    
    /* Content spacing for fixed header */
    body {
        padding-top: 120px;
    }
    
    .search-bar {
        margin: 0;
        max-width: 100%;
    }
    
    .slide {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .hero-slider {
        margin: 5px;
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-text {
        padding: 20px;
        max-width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile Optimization */
    .container {
        padding: 0 10px;
    }
    
    body {
        padding-top: 100px;
    }
    
    .header-top {
        padding: 5px 0;
    }
    
    .contact-info {
        gap: 8px;
    }
    
    .contact-info span {
        font-size: 10px;
    }
    
    .header-main {
        padding: 8px 0;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .navigation {
        padding: 5px 0;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 2px;
    }
    
    .nav-menu a {
        padding: 6px 8px;
        font-size: 11px;
        border-radius: 12px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .features-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 300px;
        margin: 2px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-text {
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Improved touch targets */
    .nav-menu a,
    .btn,
    .header-actions a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .features-grid {
        padding: 20px 0;
    }
    
    .feature-card {
        text-align: center;
        padding: 25px 20px;
    }
    
    /* Mobile-friendly forms */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        border-radius: 8px;
    }
    
    /* Improved readability */
    p, li {
        line-height: 1.6;
        font-size: 16px;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improved footer for mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Ultra-small screen optimizations */
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 18px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
}

/* Promo Banner Hero Styles */
.promo-banner-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffd23f 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.promo-banner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 400px;
}

.promo-text {
    flex: 1;
    color: white;
    text-align: left;
}

.promo-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff 0%, #ffe066 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.promo-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.promo-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
    border: 2px solid transparent;
}

.promo-buttons .btn-primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.promo-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.promo-buttons .btn-secondary:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .promo-title {
        font-size: 2.5rem;
    }
    
    .promo-subtitle {
        font-size: 1.3rem;
    }
    
    .promo-buttons {
        justify-content: center;
    }
    
    .promo-image img {
        transform: rotate(0deg);
    }
}





.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border-color: rgba(243, 156, 18, 0.3);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}



/* Popular Products Styles */
.popular-products {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: #27ae60;
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.product-category {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.old-price {
    font-size: 1rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin-right: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars {
    color: #f39c12;
}

.rating-text {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.product-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.feature {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* New Arrivals Styles */
.new-arrivals {
    padding: 80px 0;
    background: white;
}

/* Promotions Styles */
.promotions {
    padding: 80px 0;
    background: #f8f9fa;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.promo-banner {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.2);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.promo-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Featured Banner */
.promo-banner.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    min-height: 280px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.promo-banner.featured .promo-content {
    flex: 1;
}

.promo-banner.featured .promo-content h3 {
    color: white !important;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.promo-banner.featured .promo-content p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.promo-banner.featured .promo-visual {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Promo Banner Icon Styles */
.promo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
    flex-shrink: 0;
}

.promo-icon i {
    font-size: 1.8rem;
    color: #333;
}

.promo-banner:hover .promo-icon {
    transform: scale(1.05);
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.promo-banner.featured .promo-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
}

/* Discount Banner */
.promo-banner.discount {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.promo-banner.discount .promo-content h3,
.promo-banner.discount .promo-content p {
    color: white !important;
}

/* Service Banner */
.promo-banner.service {
    background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
}

.promo-banner.service .promo-content h3,
.promo-banner.service .promo-content p {
    color: white !important;
}

/* Credit Banner */
.promo-banner.credit {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(17, 153, 142, 0.3);
}

.promo-banner.credit .promo-content h3,
.promo-banner.credit .promo-content p {
    color: white !important;
}

/* Trade Banner */
.promo-banner.trade {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
    box-shadow: 0 8px 25px rgba(252, 182, 159, 0.3);
}

.promo-banner.trade .promo-content h3,
.promo-banner.trade .promo-content p {
    color: white !important;
}

/* Delivery Banner */
.promo-banner.delivery {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
    box-shadow: 0 8px 25px rgba(168, 237, 234, 0.3);
}

.promo-banner.delivery .promo-content h3,
.promo-banner.delivery .promo-content p {
    color: white !important;
}

/* Trade Banner Text Styles */
.promo-banner.trade .promo-content h3 {
    color: #333 !important;
}

.promo-banner.trade .promo-content p {
    color: #555 !important;
}

/* Delivery Banner Text Styles */
.promo-banner.delivery .promo-content h3 {
    color: #333 !important;
}

.promo-banner.delivery .promo-content p {
    color: #555 !important;
}

/* Trade Banner Button Styles */
.promo-banner.trade .btn {
    background: #2c3e50 !important;
    border-color: #2c3e50 !important;
    color: white !important;
}

.promo-banner.trade .btn:hover {
    background: #34495e !important;
    border-color: #34495e !important;
}

/* Delivery Banner Button Styles */
.promo-banner.delivery .btn {
    background: #2c3e50 !important;
    border-color: #2c3e50 !important;
    color: white !important;
}

.promo-banner.delivery .btn:hover {
    background: #34495e !important;
    border-color: #34495e !important;
}

/* Service Banner Button Styles */
.promo-banner.service .btn {
    background: transparent !important;
    border: 2px solid white !important;
    color: white !important;
}

.promo-banner.service .btn:hover {
    background: white !important;
    border-color: white !important;
    color: #3a7bd5 !important;
}

.promo-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    word-wrap: break-word;
    overflow: hidden;
    min-height: 200px;
}

.promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    white-space: nowrap;
}

.promo-badge.hot {
    background: rgba(255,107,107,0.9);
    animation: pulse 2s infinite;
}

.promo-badge.sale {
    background: rgba(255,255,255,0.9);
    color: #ff6b6b;
    font-weight: 900;
    font-size: 14px;
}

.promo-badge.service {
    background: rgba(255,255,255,0.2);
}

.promo-badge.credit {
    background: rgba(255,255,255,0.2);
}

.promo-badge.trade {
    background: rgba(255,255,255,0.2);
}

.promo-badge.delivery {
    background: rgba(255,255,255,0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a252f;
    margin-bottom: 15px;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.promo-content p {
    color: #34495e;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 400;
    word-wrap: break-word;
    hyphens: auto;
    flex-grow: 1;
}

.promo-highlight,
.promo-value,
.promo-benefit,
.promo-feature,
.promo-terms {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    align-self: flex-start;
}

.promo-price {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.discount-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.save-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Promo Banner Button Styles */
.promo-banner .btn {
    margin-top: 15px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid #2c3e50;
    background: #2c3e50;
    color: white;
    align-self: flex-start;
    white-space: nowrap;
    min-width: 120px;
}

.promo-banner .btn:hover {
    transform: translateY(-2px);
    background: #34495e;
    border-color: #34495e;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.promo-banner .btn-primary {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    font-weight: 700;
}

.promo-banner .btn-primary:hover {
    background: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.promo-banner .btn-outline {
    background: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.promo-banner .btn-outline:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.newsletter-signup {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    color: white;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 12px 25px;
    border-radius: 25px;
    white-space: nowrap;
}



.faq-contact {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.faq-contact h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-contact p {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide {
        flex-direction: column;
        text-align: center;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    
    .slide-text h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .slide-text p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .slide-image {
        height: 250px;
        order: -1;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    /* Promotions responsive */
    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promo-banner.featured {
        grid-column: span 1;
        flex-direction: column;
        min-height: 250px;
        text-align: center;
    }
    
    .promo-banner.featured .promo-visual {
        flex: 0 0 100px;
        margin-top: 20px;
    }
    
    .promo-banner.featured .promo-icon {
        font-size: 4rem;
    }
    
    .promo-banner.featured .promo-content h3 {
        font-size: 1.8rem;
    }
    
    .promo-content {
        padding: 25px 20px;
    }
    
    .promo-banner .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .slide-buttons .btn {
        width: 200px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-banner.large {
        grid-column: span 1;
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px 25px;
        font-size: 14px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
        max-height: 250px;
    }
    
    .faq-contact {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Modal Styles */
.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-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Стили для модального окна корзины */
.cart-modal-content {
    max-width: 800px;
    max-height: 90vh;
}

.cart-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 20px 25px 0 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: #e74c3c;
}

.cart-modal-body {
    padding: 2rem;
}

.cart-modal-body h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.cart-items {
    margin-bottom: 2rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    background: #f8f9fa;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #667eea;
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.3rem;
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.cart-total {
    border-top: 2px solid #667eea;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: right;
}

.order-form {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.order-form h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Специальные стили для select социальной сети */
.form-group select[name="socialNetwork"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;
    position: relative;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23667eea" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group select[name="socialNetwork"]:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.form-group select[name="socialNetwork"]:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Стили для опций select */
.form-group select[name="socialNetwork"] option {
    padding: 12px;
    font-weight: 500;
    color: #2c3e50;
    background: white;
}

.form-group select[name="socialNetwork"] option:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Анимация для лейбла социальной сети */
.form-group label[for="social-network"] {
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.form-group label[for="social-network"]::before {
    content: "📱";
    font-size: 1.1em;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.form-group:focus-within label[for="social-network"]::before {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Стили для поля ввода контакта социальной сети */
.form-group input[name="socialContact"] {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.form-group input[name="socialContact"]:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

.form-group input[name="socialContact"]:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.form-group input[name="socialContact"]::placeholder {
    color: #6c757d;
    font-style: italic;
    font-weight: 400;
}

/* Анимация для лейбла поля контакта */
.form-group label[for="social-contact"] {
    font-weight: 600;
    color: #2c3e50;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.form-group label[for="social-contact"]::before {
    content: "🔗";
    font-size: 1.1em;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.form-group:focus-within label[for="social-contact"]::before {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Анимация появления поля контакта */
#social-contact-group {
    transition: all 0.4s ease;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
}

#social-contact-group[style*="block"] {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-continue-shopping {
    background: #6c757d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: #6c757d;
}

.empty-cart i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #dee2e6;
}

.empty-cart h3 {
    margin-bottom: 1rem;
    color: #6c757d;
}

/* Cart Mobile Optimization */
@media (max-width: 768px) {
    .cart-modal-content {
        margin: 2% auto;
        width: 95%;
        border-radius: 15px;
    }
    
    .cart-modal-body {
        padding: 1.5rem;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 80px;
        height: 80px;
    }
    
    .cart-item-details h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .cart-item-details .price {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .quantity-controls {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .quantity-controls button {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .quantity-controls input {
        width: 60px;
        padding: 8px;
        font-size: 14px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-submit-order,
    .btn-continue-shopping {
        padding: 12px 20px;
        font-size: 16px;
        width: 100%;
    }
    
    .empty-cart {
        padding: 2rem 1rem;
    }
}