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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

img, picture, video, svg {
    max-width: 100%;
    height: auto;
}

:root {
    --color-bg: #ffffff;
    --color-text: #212121;
    --color-primary: #808dd3; 
    --color-primary-dark: #1557b0;
    --color-accent: #f1890e; 
    --color-muted: #727272; 
    --radius: 12px;
    --radius-sm: 8px;
    --gap: 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}




/* Hero Section */
.hero-section {
    
    padding: 30px 10px;
    text-align: center;
    position: relative;
    z-index: 10;
}
.hero-content .logo {
    margin-bottom: 60px;
}
.hero-content button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.cta-button
 {
    position: relative;
    background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 18px;
border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 6px 6px 0 var(--color-accent);
}


/* Main Container Layout */
.main-container {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    grid-template-rows: auto 1fr;
    gap: 20px;
    padding: 30px 10px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 200px);
}

.left-ad, .center-content, .right-ad {
    grid-row: 2;
}

/* Side Ads */
.left-ad, .right-ad {
   
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
}

.ad-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ad-image {
    flex: 1;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.building-ad {

    background-image: url('./images/right add.png');
    background-size: cover;
    background-position: center;
}

.cola-ad {
  
    background-image: url('./images/Portrait Image.png');
    background-size: cover;
    background-position: center;
}

.cola-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.cola-size {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.ad-text {
    color: white;
}

.blog-badge {
    background: var(--color-primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 8px;
}

.ad-text h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.ad-text p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.4;
}


/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* place the header in the center column (aligns with category images) */
    grid-column: 2;
}


.section-header h2 {
    font-size: 50px;
    font-weight: 700;
    color: #212121;
    white-space: nowrap;
}

.view-all-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #334660;
    transform: translateY(-1px);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 200px;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFFFFF;
    color: #212121;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    z-index: 2;
}

.category-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.jewelry {
    background-image: url('./images/Jewelry.jpg');
    background-size: cover;
    background-position: center;
}

.office {
    background-image: url('./images/Office Supplies.jpg');
    background-size: cover;
    background-position: center;
}

.pets {
   
     background-image: url('./images/8814e9ecf587a74bdede675df9e46b172ee98e06.jpg');
    background-size: cover;
    background-position: center;
}

.sports {
     background-image: url('./images/5e659c1429e4cd10f7fc9a02d8159057d7906a24.jpg');
    background-size: cover;
    background-position: center;
}

.beauty {
     background-image: url('./images/beauty.jpg');
    background-size: cover;
    background-position: center;
}
.health {
     background-image: url('./images/health.jpg');
    background-size: cover;
    background-position: center;
}
.musical {
     background-image: url('./images/musical.jpg');
    background-size: cover;
    background-position: center;
}
.clothing {
     background-image: url('./images/clothing.jpg');
    background-size: cover;
    background-position: center;
}
.electronics {
    background-image: url('./images/electronics.jpg');
    background-size: cover;
    background-position: center;
}
.toys {
    background-image: url('./images/toys.jpg');
    background-size: cover;
    background-position: center;
}

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

.category-overlay h3 {
    font-size: 18px;
    font-weight: bold;
}

/* Most Popular Products */
.most-popular h2 {
    font-size: 50px;
    font-weight: 700;
    color: #212121;
    margin-bottom: 30px;
    text-align: start;
    position: relative;
}


        /* Similar Products Section */
        .similar-section {
            background: white;
            border-radius: var(--radius);
            
        }

        .similar-section h2 {
            font-size: 50px;
            font-weight: 700;
            margin-bottom: 30px;
            color: #1a1a1a;
        }

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

        .product-card {
            background: white;
            border: 1px solid #e5e5e5;
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .product-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 700;
            z-index: 1;
            text-transform: uppercase;
        }

        .product-badge.discount {
            background: #ff9500;
            color: white;
        }

        .product-badge.hot {
            background: #ff3b30;
            color: white;
        }

        .product-badge.sold-out {
            background: #666;
            color: white;
        }

        .product-image {
            width: 100%;
            height: 200px;
            background: #f8f9fa;
            background-size: cover;
            background-position: center;
            position: relative;
        }


        .card-info {
            padding: 15px;
        }

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

        .product-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text);
            margin-bottom: 8px;
        }

        .product-desc {
            font-size: 13px;
            color: #666;
            margin-bottom: 16px;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .product-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .action-btn {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .action-btn.primary {
            background: var(--color-primary);
            color: white;
                display: flex
;
    align-items: center;
    justify-content: center;
    gap: 8px;
        }

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

        

        @media (max-width: 1024px) {
    .product-section {
        padding: 1.5rem;
    }
    
    .product-info h1 {
        font-size: 1.5rem;
        
    }
    
    .current-price {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .product-section {
        align-items: center;
    }
    
    .product-images {
        max-width: 100%;
      
    }
    
    .thumbnails {
        flex-direction: column;
        width: 80px;
    }
    
    .thumbnail {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .product-images {
        flex-direction: column;
    }
    
    .thumbnails {
        flex-direction: row;
        width: 100%;
    }
    
    .thumbnail {
        width: 80px;
        flex-shrink: 0;
    }
}

@media (max-width: 640px) {
    .product-section {
        padding: 1rem;
        align-items:center
    }
    
    .quantity-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .order-btn {
        width: 100%;
        justify-content: center;
    }
    
    .price-section {
        flex-wrap: wrap;
    }
    
    .thumbnails {
        gap: 0.5rem;
    }
}

.order-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}



.view-btn {
    background: white;
    border: 2px solid #dee2e6;
    color: #6c757d;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}


/* Page Header */
.page-header {
    background-color: #F3F9FB;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.page-header .logo a {
    display: flex;
    align-items: center;
}

.page-header .logo svg {
    width: 200px;
    height: auto;
}

.breadcrumbs {
    font-size: 14px;
    background-color: transparent;
    color: var(--color-muted);
    padding: 0;
    display: flex;
    align-items: center;
}

.breadcrumbs a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumbs .current {
    color: var(--color-primary);
    font-weight: 600;
}


.product-section {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: start;
}



.product-info {
    flex: 1;
    min-width: 0;
    max-width: 500px;
}

.product-info h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #212121;
    line-height: 1.4;
}

.share-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #6c757d;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #e9ecef;
    color: var(--color-primary);
}

.price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 2rem;
    font-weight: bold;
    color: #212121;
}

.original-price {
    font-size: 1.25rem;
    color: #9CA3AF;
    text-decoration: line-through;
}

.discount-badge {
    background-color: #F1890E;
    color: var(--color-text);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.product-description {
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.quantity-section {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 0.5rem;
}

.qty-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-input {
    width: 3rem;
    text-align: center;
    border: none;
    font-size: 1rem;
    color: #212121;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.order-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.order-btn:hover {
    background-color: #4F46E5;
}

.product-images {
    flex: 1;
    max-width: 600px;
    display: flex;
    gap: 1rem;
    
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100px;
}

.main-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.thumbnail {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    height: 100px;
}

.thumbnail.active {
    border-color: #6366F1;
}

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

.thumbnail.thumb1 {
    background-image: url('./images/cb7ad2b1ec7dfa323a14d4b8fe2c6750523cf153.jpg');
}
.thumbnail.thumb2 {
    background-image: url('./images/f1dc6f1daa3dc64f85d4e009315532877f25874b.jpg');
}
.thumbnail.thumb3 {
    background-image: url('./images/a11df5b0f1e1f9c7a0bd71f0a97ad87b0fb61be8.jpg');
}
.thumbnail.thumb4 {
    background-image: url('./images/6815ac28bd71a2bb9ea48f67117e6dc86528e76a.jpg');
}
.thumbnail.thumb5 {
    background-image: url('./images/910e51f4b20f3338045c6dce42436eae772005b0.jpg');
}
.thumbnail.thumb6 {
    background-image: url('./images/01506d531957f8f1ea603a9f64f48beda77a4de6.jpg');
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--color-primary);
    opacity: 0.8;
}

.similar-products {
    margin-top: 60px;
}

.similar-products h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.similar-products h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-primary);
    opacity: 0.3;
}

/* Order Form Page */
.order-page {
    min-height: 100vh;
    padding:20px;
}

.order-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.order-content h1 {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 16px;
}

.order-content p {
    font-size: 16px;
    color: #727272;
  
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px #3A35351A;
    text-align: left;
    margin-top: 16px;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}



.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}
.form-group input[type="range"] {
  padding:12px 0;
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #9CA3AF80;
    border-radius: 8px;
    padding: 12px 16px;
    background: white;
}

.phone-input .flag {
    font-size: 18px;
}

.phone-input .country-code {
    color: #6c757d;
    font-size: 14px;
}

.phone-input input {
    border: none;
    padding: 0;
    flex: 1;
}

.phone-input input:focus {
    box-shadow: none;
}
input[type="text"],textarea {
    border: 1px solid #9CA3AF80;
}


/* Budget Range Slider Styles */
.budget-slider {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    width: 100%;
    height: 2px;
    position: relative;
    background: #E9ECEF;
    margin: 15px 0 35px;
}

.slider-range {
    height: 100%;
    position: absolute;
    background-color: #808DD3;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    position: absolute;
    height: 0;
    width: 100%;
    outline: none;
    top: -10px;
    background: transparent;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #808DD3;
    cursor: pointer;
    border: 3px solid #FFFFFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.slider::-moz-range-thumb {
    pointer-events: auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #808DD3;
    cursor: pointer;
    border: 3px solid #FFFFFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.slider.to-slider {
    z-index: 1;
}

.budget-inputs {
    display: flex;
    margin: 0;
    gap: 20px;
}

.budget-input {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.budget-input span {
    color: #6C757D;
    font-size: 13px;
    font-weight: 500;
}

.budget-input input[type="number"] {
    width: 90px;
    padding: 8px 12px;
    border: 1px solid #DEE2E6;
    border-radius: 6px;
    font-size: 14px;
    color: #212529;
    background: #FFFFFF;
    text-align: left;
}

.budget-input input[type="number"]:focus {
    outline: none;
    border-color: #808DD3;
}

/* Hide number input spinners */
.budget-input input[type="number"]::-webkit-inner-spin-button,
.budget-input input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


#description , #features {
  resize: none !important;
  min-height: 100px;
}


/* Radio Button Styles */
.radio-group {
   display: grid;
    gap: 12px;
    justify-content: start;
    align-items: center;
    grid-template-columns: repeat(3, 150px);
        white-space: nowrap;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex: 1;
}

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

.radio-label {
    display: block;
    padding: 10px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked + .radio-label {
    background-color: var(--color-primary);
    color: white;
    border: none;
   
}

.radio-option:hover .radio-label {
    border-color: var(--color-primary);
    color: var(--color-primary);

}



/* Image Upload Area */
.image-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: var(--radius);
    padding:10px;
    text-align: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.image-upload-area:hover {
    border-color: var(--color-primary);
    background: #f0f4ff;
}



.upload-text {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}


.upload-instruction span {
    font-weight: 700;
     color: var(--color-text);
   
   
}


 .browse-link {
   
    color: black;
    font-weight: 600;
    cursor: pointer;
    background-color: #F3F9FB;
    padding: 6px 12px;
   
}




 .next-btn {
    width: 100%;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 500;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
  
}

 .next-btn:hover ,.order-btn:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

/* Form Switch Links */
.form-switch {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.form-switch p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

.switch-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.switch-link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* Hidden Input */
.hidden-input {
    display: none;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    margin-bottom: 24px;
}

.filter-row {
    display: flex;
    gap: 30px;
   
}

.filter-group {
    flex: 1;
}

.filter-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Special Card Styles */
.special-card {
    background: #f1f5f6;
    border: 3px solid var(--color-primary);
        display: flex;
    justify-content: center;
    align-items: center;
}

.special-card .card-info {
    padding: 30px 20px;
    text-align: center;
}

.special-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.special-card .cta-button {

    font-size: 14px;
    padding: 12px ;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap:8px ;

}

/* Confirmation Page */
.confirm-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.confirm-illustration {
  display: flex;
  justify-content: center;
}

.confirm-illustration img {
  max-width: 520px;
  width: 100%;
  height: auto;
}

.confirm-text {
  text-align: center;
}


.confirm-text h1 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.confirm-text p {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.confirm-text .go-home {
    background: var(--color-primary);
    color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 900px) {
  .confirm-wrap {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
  }
}
            /* duplicate confirm block removed */
      .error-illustration {
        display: flex;
        justify-content: center;
      }
      .error-illustration img {
        max-width: 520px;
        width: 100%;
        height: auto;
      }
      .error-text {
        text-align: center;
      }
      .error-text .icon {
        width: 56px;
        height: 56px;
        border-radius: var(--radius);
        border: 3px solid #ef4444;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 16px;
        color: #ef4444;
        font-size: 28px;
      }
      .error-text h1 {
        font-size: 28px;
        font-weight: 700;
        color: #111;
        margin-bottom: 8px;
      }
      .error-text p {
        color: var(--color-muted);
        margin-bottom: 20px;
      }
      .error-text .go-home {
        background: var(--color-primary);
        color: #fff;
        border: none;
        padding: 10px 24px;
        border-radius: 8px;
        font-weight: 600;
        cursor: pointer;
      }

/* Footer */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 10px 50px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}




.footer-left p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-right h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-cta {
position: relative;
background: white;
color: var(--color-primary);
border: none;
padding: 16px 40px;
font-size: 18px;
border-radius: var(--radius);
cursor: pointer;
font-family: 'Inter', sans-serif;
box-shadow: 6px 6px 0 var(--color-accent);
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
white-space: nowrap;

}



/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        grid-template-columns: 150px 1fr 150px;
    }
    

}

@media (max-width: 768px) {
    .main-container {
           grid-template-columns: 100px 1fr;
        gap: 20px;
    }
    
      .left-ad {
        display: block;
    }
    .ad-text p {
        font-size: 12px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-badge{
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;

    }
    
    .filter-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .radio-label {
        padding: 10px;
        font-size: 13px;
    }
       .section-header {
           grid-column: 1;
    }
    .filter-section {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
}
   .product-section {
        flex-direction: column-reverse;;
        padding: 1rem;
        align-items: center;
    }
   .footer-logo{
        justify-content: center;
    }
    
    .page-header {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-header .logo svg {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
.special-content{
    display: flex;
    align-items: center;
    flex-direction: column;
}

    .section-header h2 {
    font-size: 28px;
    }
    .similar-section h2 {
        font-size: 28px;
    }
    
    .order-content h1 {
        font-size: 28px;
    }
    .cta-button{
        padding: 12px 24px;
        font-size: 16px;
    }
    .category-overlay {
        text-align: center;
    }
    .radio-group {
   
    grid-template-columns: repeat(3, 1fr);
    }
        .section-header {
           grid-column: 1;
    }
    .filter-section {
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    }
    .thumbnails{
    flex-direction: row;
}
    .footer{
        padding: 20px;
    }
    .footer-logo{
        justify-content: center;
    }
    
    .footer-cta {
        padding: 12px 24px;
        font-size: 16px;
    }
    .footer-right{
            display: flex
;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    
    .page-header {
        padding: 10px 15px;
    }
    
    .page-header .logo svg {
        width: 120px;
    }
    
    .breadcrumbs {
        font-size: 12px;
    }

}
