* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ECF1E7;
}



.container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 40px;
}

.sidebar {
    width: 280px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sidebar-section {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #000;
}

.checkbox-item label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.color-circle:hover {
    border-color: #000;
    transform: scale(1.1);
}

.color-circle.selected {
    border-color: #000;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #000;
}

select {
    width: 100%;
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    background-color: #fff;
}

.main-content {
    flex: 1;
    min-width: 0;
}

.content-header {
    margin-bottom: 32px;
}

.content-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.content-header p {
    color: #666;
    font-size: 15px;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-control label {
    font-size: 14px;
    font-weight: 600;
}

.sort-control select {
    padding: 8px 16px;
    width: auto;
    min-width: 200px;
}

.view-btn {
    padding: 8px 20px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.view-btn:hover {
    border-color: #000;
}

.filter-toggle-btn {
    display: none;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: 100%;
    transition: background-color 0.3s;
}

.filter-toggle-btn:hover {
    background-color: #333;
}

.filter-toggle-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background-color: #f0f0f0;
}

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.product-category {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.product-colors {
    font-size: 12px;
    color: #999;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    padding: 8px 14px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover {
    border-color: #000;
}

.page-btn.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.page-btn.next {
    background-color: #000;
    color: #fff;
    border-color: #000;
}




@media (max-width: 1000px) {
    .navbar {
        padding: 40px 50px;
    }
}



.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
}

.mobile-overlay.active {
    display: block;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    nav {
        display: none;
    }

    /* .hamburger {
                display: flex;
            } */
}

@media (max-width: 768px) {
    .header-top {
        padding: 16px 20px;
    }

    .container {
        padding: 20px 16px;
        flex-direction: column;
        gap: 20px;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background-color: #fff;
        z-index: 300;
        overflow-y: auto;
        padding: 20px;
        transition: left 0.3s ease;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-section {
        box-shadow: none;
        margin-bottom: 0;
    }

    .close-filter-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #000;
        width: 32px;
        height: 32px;
        line-height: 28px;
        text-align: center;
    }

    .filter-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .content-header h1 {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }

    .controls {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-control {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-control select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 14px;
    }
}

.last-footer {
    margin-top: 20px;
}


/* Products Styling */

.product-grid {
    display: flex;
    justify-content: center;
    /* gap: 20px; */
    flex-wrap: wrap;
    align-items: center;
}

.item {
    background: rgb(255, 255, 255);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    max-width: 250px;
}

.item img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.text {
    padding: 15px;
}

.text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.text p {
    font-size: 14px;
    color: gray;
}


.arrow {
    display: inline;
    text-align: right;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
}

.arrow {
    display: flex;
    justify-content: space-between;
}

.main-price{
    color: #000 !important;
}

/* @media (max-width: 768px) {
 
} */


.content-header h1  span{
    color:#EBD96B ;
}