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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    min-height: 100vh;
}

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

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

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

.logo h2 {
    color: #333;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
    margin-left: -61px !important;
}

@keyframes glow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.5); }
    50% { text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.8); }
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s;
}

.nav a:hover {
    color: #667eea;
}

.nav a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    top: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #333;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-box {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
}

.search-box input {
    padding: 8px 15px;
    border: none;
    outline: none;
    width: 200px;
}

.search-box button {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    transition: all 0.3s;
}

.cart-icon:hover {
    transform: scale(1.1);
    color: #667eea;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.login-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 100px 0;
    text-align: center;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.cta-btn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
    animation: pulse 2s infinite;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(245, 87, 108, 0.6);
}

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

/* Products Grid */
.featured-products {
    padding: 80px 0;
    background: white;
    margin: 20px;
}

.categories-preview {
    padding: 80px 0;
    background: white;
    margin: 20px;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

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

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    animation: fadeInUp 0.8s ease;
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease;
}

/* Single Image Section */
.single-image-section {
    padding: 40px 20px;
    background: white;
}

.image-grid-4 .image-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-grid-4 .image-item:hover {
    transform: scale(1.05);
}

.image-grid-4 .image-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Multi Banner Slider */
.multi-banner-slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    margin: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.multi-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.multi-banner-slide.active {
    opacity: 1;
}

.multi-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

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

.multi-banner-text h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.multi-banner-text p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.featured-products h2, .categories-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #667eea;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    animation: fadeInUp 0.6s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f5576c;
    margin-bottom: 1rem;
}

.add-to-cart {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #764ba2;
}

/* Categories Grid */
.products-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

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

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

.category-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.category-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: white;
}

.category-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.category-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #764ba2;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.btn-primary {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #764ba2;
}

/* Cart Styles */
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

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

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.quantity-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px;
}

.remove-btn {
    background: #f5576c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.cart-total {
    text-align: right;
    padding: 2rem;
    background: #f8f9fa;
    margin-top: 2rem;
}

.cart-total h3 {
    font-size: 1.5rem;
    color: #667eea;
}

/* Page Specific Styles */
.page-header {
    background: white;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 2px solid #eee;
}

.page-header h1 {
    color: #667eea;
    font-size: 2.5rem;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
}

.page-content {
    padding: 3rem 0;
    background: white;
}

.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #667eea;
}

.product-info-details {
    padding: 1rem 0;
}

.product-info-details h1 {
    color: #667eea;
    margin-bottom: 1rem;
}

.product-info-details .price {
    font-size: 2rem;
    color: #f5576c;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-info-details .description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.add-to-cart-section {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quantity-selector button {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 10px 15px;
    }
    .logo h2{
            margin-left: -22px !important;
    }
    
    .logo {
        order: 1;
    }
    
    .logo img {
        height: 50px !important;
        width: 90px !important;
    }
    
    .logo h2 {
        font-size: 1rem !important;
        /* margin-left: -23px !important; */
    }
    h2#loko {
    margin-left: -43px !important;
}
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding-top: 60px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        color: #333 !important;
        text-align: left;
    }
    
    .nav a::after {
        display: none;
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0;
        background: #f8f9fa;
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        /* display: block; */
                /* display: block; */
        padding: 20px 0px 144%;
    }
    
    .dropdown-content a {
        padding: 12px 20px 12px 40px !important;
        font-size: 0.9rem;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        order: 3;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #10b981;
        border-radius: 2px;
        transition: all 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
    }
    
    /* .overlay.active {
        display: block;
    } */
    
    .header-actions {
        order: 2;
        gap: 15px;
    }
    
    .login-btn {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .products-grid-4,
    .categories-grid-4,
    .image-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .product-slide {
        flex-direction: column;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .slider-btn.prev {
        left: 5px;
    }
    
    .slider-btn.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .image-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Shop Layout with Sidebar */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media (max-width: 968px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-filters {
        position: static !important;
    }
}

.sidebar-filters {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.filter-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 0;
    transition: color 0.3s;
}

.filter-options label:hover {
    color: #667eea;
}

.filter-options input[type="radio"] {
    accent-color: #10b981;
}

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

.price-filter input[type="range"] {
    width: 100%;
    accent-color: #667eea;
}

.price-display {
    text-align: center;
    font-weight: 500;
    color: #667eea;
}

.filter-section select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    color: #333;
}

.clear-filters {
    width: 100%;
    background: #f5576c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.clear-filters:hover {
    background: #e74c3c;
}

.products-area {
    min-height: 500px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.products-header h2 {
    color: #667eea;
    margin: 0;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn.active,
.view-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    max-width: none;
    height: 200px;
}

.products-grid.list-view .product-card img {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Enhanced Cart Styles */
.cart-summary {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.cart-summary h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
}

.summary-row.total {
    border-top: 2px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: bold;
    font-size: 1.2rem;
    color: #667eea;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design for Shop */
@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar-filters {
        position: static;
        order: 2;
    }
    
    .products-area {
        order: 1;
    }
    
    .products-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
        height: auto;
    }
    
    .products-grid.list-view .product-card img {
        width: 100%;
        height: 250px;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
    
    .quantity-controls {
        order: 1;
    }
    
    .item-price {
        order: 2;
    }
    
    .remove-item {
        order: 3;
    }
    
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 350px;
    }
    
    .product-info-section {
        padding: 20px 0;
    }
    
    .add-to-cart-section {
        flex-direction: column;
    }
    
    .quantity-selector {
        justify-content: center;
    }
}

.cart-items-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.promo-code {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.promo-code h4 {
    color: #667eea;
    margin-bottom: 15px;
}

.promo-input {
    display: flex;
    gap: 10px;
}

.promo-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.promo-input button {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.promo-input button:hover {
    background: #764ba2;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.cart-item-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 5px;
}

.quantity-controls button {
    background: #667eea;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 500;
}

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.item-price {
    font-weight: bold;
    color: #667eea;
    font-size: 1.1rem;
}

.remove-item {
    background: #f5576c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.remove-item:hover {
    background: #e74c3c;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
    }
    
    .quantity-controls {
        order: 1;
    }
    
    .item-price {
        order: 2;
    }
    
    .remove-item {
        order: 3;
    }
}

/* Enhanced Product Details Page */
.product-images-section {
    position: relative;
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: zoom-in;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #667eea;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: #667eea;
    transform: scale(1.05);
}

.product-info-section {
    padding: 0 20px;
}

.product-info-section h1 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    color: #f39c12;
}

.product-rating span {
    color: #666;
    margin-left: 10px;
}

.product-info-section .price {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-description,
.product-features {
    margin-bottom: 25px;
}

.product-description h3,
.product-features h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.product-description p {
    color: #666;
    line-height: 1.8;
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features li i {
    color: #27ae60;
}

.product-options {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
}

.color-options,
.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option,
.size-option {
    cursor: pointer;
}

.color-option input,
.size-option input {
    display: none;
}

.color-option span,
.size-option span {
    display: block;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
}

.color-option:hover span,
.size-option:hover span,
.color-option.active span,
.size-option.active span {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.add-to-cart-section {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.quantity-selector button {
    background: #f8f9fa;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-selector button:hover {
    background: #667eea;
    color: white;
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    padding: 12px;
    font-size: 1rem;
}

.add-to-cart-btn {
    flex: 1;
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.product-meta {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.product-meta p {
    margin: 8px 0;
    color: #666;
}

.in-stock {
    color: #27ae60;
    font-weight: 500;
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.zoom-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.zoom-overlay img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

/* Responsive Product Details */
@media (max-width: 768px) {
    .product-details {
        grid-template-columns: 1fr;
    }
    
    .main-image {
        height: 350px;
    }
    
    .product-info-section {
        padding: 20px 0;
    }
    
    .add-to-cart-section {
        flex-direction: column;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
}

/* Product Slider */
.product-slider {
    position: relative;
    margin-bottom: 40px;
}

.product-slider-container {
    overflow: hidden;
    border-radius: 15px;
}

.product-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.product-slide {
    min-width: 100%;
    display: flex;
    gap: 20px;
    padding: 20px;
}

.product-slide-item {
    flex: 1;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.product-slide-item:hover {
    transform: translateY(-5px);
}

.product-slide-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-slide-info {
    padding: 15px;
}

.product-slide-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.product-slide-info .price {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: bold;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #667eea;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #667eea;
    color: white;
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

@media (max-width: 768px) {
    .product-slide {
        flex-direction: column;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}
