/* Store Header Styles */
.seller-header-container {
    background: linear-gradient(to right, #d35400, #e67e22, #f39c12);
    color: white;
    padding: 6rem .8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    h1,
    p {
        padding: 0;
        margin: 0;
        color: white;
    }

    h1 {
        font-size: 1.6rem;
        font-weight: 700;
        position: relative;
        z-index: 2;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .slogan {
        font-size: .75rem;
        font-weight: bold;
    }

    .tagline {
        font-size: .9rem;
        position: relative;
        z-index: 2;
        opacity: 0.9;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .logo {
        max-width: 150px;
        height: auto;
        border-radius: 5px;
        transition: transform 0.3s ease;
    }

    .logo:hover {
        transform: scale(1.05);
    }

}

/* ===== Layout ===== */
.store-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 1.5rem;
}

/* Listing */
.regualar-list {
    position: sticky;
    top: 6rem;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;

    .h-group {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 35px;
    }

    button {
        color: var(--text-color);
        border: none;
        padding: 8px 0px;
        cursor: pointer;
        font-size: .8rem;
        display: flex;
        align-items: center;
        gap: 5px;
        font-weight: 600;
        font-size: .7rem;
    }
}

.v-divider {
    width: 1px;
    height: 20px;
    background-color: #ccc;
    margin: 0 10px;
    display: none;
}

#filterToggle {
    display: none;
}

.products-title {
    font-size: 1.2rem;
    font-weight: 500;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
}

.sort-options select {
    padding: 3px 0;
    border: none;
    background: transparent;
    outline: none;
    font-size: .7rem;
    cursor: pointer;
}


/* ===== Mobile Responsive ===== */
@media (max-width: 900px) {
    .store-container {
        grid-template-columns: 1fr;
    }

    .products-header {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .v-divider,
    #filterToggle {
        display: block;
    }

    .filters {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100%;
        overflow-y: auto;
        background: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 200;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .filters.open {
        transform: translateX(0);
    }

    .s-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 150;
    }

    .s-overlay.active {
        display: block;
    }
}

/* Radio Buttons */
input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-color);
    background-color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Custom radio button inner circle */
input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s ease;
}

/* Active radio button effect */
input[type="radio"]:checked {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(246, 181, 59, 0.5);
}

input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}