/* Store Page Styles */
.store-section {
    min-height: 100vh;
    padding: 120px 40px 80px;
    background: #000000;
}

.store-container {
    max-width: 1400px;
    margin: 0 auto;
}

.store-title {
    font-family: 'Parfumerie Script', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #55ff51;
    margin: 0 0 3rem 0;
    text-align: center;
    text-shadow: 0 0 14px rgba(85, 255, 81, 0.3);
}

.store-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.store-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.filter-card {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
}

.filter-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.filter-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #55ff51;
    cursor: pointer;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-range input[type="range"] {
    width: 100%;
    accent-color: #55ff51;
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #55ff51;
}

.filter-select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(85, 255, 81, 0.1);
    border: 1px solid rgba(85, 255, 81, 0.3);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    cursor: pointer;
}

.filter-select option {
    background: #000000;
    color: #ffffff;
}

.clear-filters {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(85, 255, 81, 0.3);
    color: #55ff51;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.clear-filters:hover {
    background: rgba(85, 255, 81, 0.1);
    border-color: rgba(85, 255, 81, 0.6);
}

.store-products {
    flex: 1;
}

.products-header {
    margin-bottom: 2rem;
}

.products-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.store-product-item {
    border-radius: 16px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.store-product-item:hover {
    background: rgba(85, 255, 81, 0.08);
    border-color: rgba(85, 255, 81, 0.3);
    transform: translateY(-5px);
}

.store-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.store-product-image-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(85, 255, 81, 0.03);
}

.store-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-product-details {
    padding: 1.5rem;
}

.store-product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.store-product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #55ff51;
    margin: 0;
    font-weight: 500;
}

.store-product-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.store-add-cart,
.store-add-wishlist {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(85, 255, 81, 0.3);
    background: transparent;
    color: #55ff51;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.store-add-wishlist {
    font-size: 1.5rem;
}

.store-add-cart {
    background: rgba(85, 255, 81, 0.1);
}

.store-add-cart:hover {
    background: rgba(85, 255, 81, 0.2);
    border-color: rgba(85, 255, 81, 0.6);
}

.store-add-wishlist:hover {
    background: rgba(85, 255, 81, 0.1);
    border-color: rgba(85, 255, 81, 0.6);
}

@media (max-width: 968px) {
    .store-content {
        grid-template-columns: 1fr;
    }
    
    .store-sidebar {
        position: relative;
        top: 0;
    }
}

