.shop-section {
    padding: 0;
    background-color: #fff;
}

.shop-hero {
    background: linear-gradient(to right, #f8fbff, #fff);
    padding: 60px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.shop-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.shop-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    margin: 0;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.shop-hero .outline-text {
    position: absolute;
    left: 280px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #e0e0e0;
    z-index: 1;
    opacity: 0.5;
    white-space: nowrap;
}

.shop-main {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.shop-sidebar {
    flex: 0 0 260px;
}

.sidebar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.category-list {
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding-right: 10px;
}

.category-list::-webkit-scrollbar {
    width: 6px;
}

.category-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.category-list::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    font-size: 1.05rem;
    color: #333;
}

.category-item input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    position: relative;
}

.category-item input[type="radio"]:checked {
    border-color: #2563eb;
}

.category-item input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-action-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 12px 35px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.filter-action-btn:hover {
    background-color: #1d4ed8;
}

.shop-content {
    flex: 1;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-count {
    color: #666;
    font-size: 1rem;
}

.sorting-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
}

.product-grid-redesign {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card-redesign {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease;
}

.product-card-redesign:hover {
    transform: translateY(-5px);
}

.image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background: #f9f9f9;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-minimal {
    padding: 15px 5px;
}

.product-name-minimal {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.product-price-minimal {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.whatsapp-btn {
    width: 100%;
    padding: 12px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-small {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .product-grid-redesign {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-main {
        flex-direction: column;
    }

    .shop-sidebar {
        flex: none;
        width: 100%;
    }

    .shop-hero h1 {
        font-size: 2.5rem;
    }

    .shop-hero .outline-text {
        font-size: 2.5rem;
        left: 180px;
    }

    .product-grid-redesign {
        grid-template-columns: 1fr;
    }
}
