#shop-section {
    margin-top: 3rem;
}

.categories {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;

    margin-top: -2.5rem;

    gap: 4rem;
    z-index: 1;
    position: relative;
}

#brand,
#family,
#category {
    appearance: none;
    -webkit-appearance: none;
    background-color: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.6rem 2.5rem 0.6rem 1rem;
    font-size: 0.875rem;
    color: #2d3748;
    cursor: pointer;
    width: 97.5%;
    display: block;
    margin: 0 auto;
    transition: border-color 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

#brand:focus,
#family:focus,
#category:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.product-column {
    padding-bottom: 40px;
    display: flex;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
}

.product-img-shop {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: white;
}

.product-img-shop img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    height: 2.8rem;
    overflow: hidden;
    margin-bottom: 10px;
    line-height: 1.4;
}

#store {
    border-radius: 15px;
    overflow: visible;
    border: 1px solid #ddd;
    background-color: white;
    height: fit-content;
    min-height: 200px;
}

.store-filter>nav {
    margin-top: 2rem;
    padding-inline: 2.5rem;
}

label {
    display: block;

    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.options {
    display: flex;
    flex-direction: column;
    margin-top: 1.3rem;
    gap: 0.5rem;
}

.options a {
    display: flex;
    flex-direction: column;
}

#applyFiltersBtn {
    background-color: var(--blue);
}

#removeFiltersBtn {
    background-color: red;
}

#applyFiltersBtn,
#removeFiltersBtn {
    border: 0;
    border-radius: 2rem;
    padding-block: 0.6rem;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#applyFiltersBtn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#removeFiltersBtn:hover {
    background-color: rgb(200, 15, 15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#applyFiltersBtn:active,
#removeFiltersBtn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.kit {
    padding-block: 0.6rem;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

#btn-kit {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    background-color: var(--blue);
    padding-block: 0.1rem;
    gap: 1rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;

    margin-top: 1.6rem;
}

#btn-kit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#btn-kit i {
    color: white;
    transition: transform 0.3s ease;
}

#btn-kit:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(63, 63, 250, 0.3);
}

#btn-kit:hover::before {
    left: 100%;
}

#btn-kit:hover i {
    transform: translateX(-3px);
}

.product-btns {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 0.8rem;
}

.opts {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

#see-product i,
#add-product i {
    color: var(--blue);
}

#wishlist-product i {
    color: #d90429;
}

.product-btns button {
    background-color: transparent;
    border: 0;
}

.product-btns button i {
    font-size: 1.2rem;
}

.add-to-cart-btn,
.add-to-preview-btn,
.add-wishlist {
    position: relative;
    display: inline-block;
    overflow: visible;
    cursor: pointer;
}

.add-to-cart-btn .tooltip,
.add-to-preview-btn .tooltip,
.add-wishlist .tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    white-space: nowrap;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 1rem;
    transition: opacity 0.3s;
    z-index: 9999;
}

.product-column {
    overflow: visible !important;
}

.col-lg-4,
.col-md-6,
.col-sm-6 {
    overflow: visible !important;
}

#store {
    overflow: visible !important;
}

.add-to-cart-btn:hover .tooltip,
.add-to-preview-btn:hover .tooltip,
.add-wishlist:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.new {
    margin: 0 !important;
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s ease infinite;
}

.empty-state-icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
}

.empty-state-icon i {
    font-size: 3.5rem;
    color: white;
    opacity: 0.7;
}

.empty-state-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.empty-state-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.empty-state-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-clear-filters,
.btn-view-all {
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-clear-filters {
    background: var(--blue);
    color: white;
}

.btn-clear-filters:hover {
    transform: translateY(-2px);
    background: rgb(200, 15, 15);
}

.btn-view-all {
    background: white;
    color: #4b5563;
    border: 2px solid #e5e7eb;
}

.btn-view-all:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.swal-minimal {
    border-radius: 15px !important;
    font-family: 'Poppins', sans-serif;
}

.swal-minimal .swal2-icon {
    border: none !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.swal-minimal .swal2-success-ring {
    border: .25em solid rgba(165, 220, 134, .3) !important;
}

@media (max-width: 768px) {
    .categories {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
        gap: 1rem;
        margin-top: -5.5rem;
    }

    #shop-section {
        margin-top: 2rem;
    }

    .product-body {
        padding-inline: 0.8rem !important;
        justify-content: space-between !important;
    }

    .product-img-shop {
        height: 150px;
        padding: 15px 15px 0px 15px;
    }

    .product-column {
        padding-bottom: 10px;
    }

    #store{ 
        margin-left: 0.8rem;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}