/* Shop Section */
.shop-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem 2rem 1rem;
}
.shop-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
.shop-search-input {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem 1.2rem;
    border-radius: 0.7rem;
    background: #181840;
    border: 2px solid #22224a;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Rajdhani', Arial, sans-serif;
    box-shadow: 0 0 8px #00eaff44;
    transition: border 0.2s, box-shadow 0.2s;
    margin-top: 4rem;
}
.shop-search-input:focus {
    outline: none;
    border-color: #00eaff;
    box-shadow: 0 0 8px #00eaff;
}
.shop-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.shop-category-btn {
    padding: 0.7rem 2rem;
    border-radius: 999px;
    background: #181840;
    border: 2px solid #22224a;
    color: #00eaff;
    font-weight: bold;
    font-size: 1.1rem;
    font-family: 'Rajdhani', Arial, sans-serif;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    box-shadow: 0 0 8px #00eaff44;
}
.shop-category-btn.active,
.shop-category-btn:hover {
    background: #00eaff;
    color: #181840;
    border-color: #00eaff;
    box-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff44;
}
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 700px) {
    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1100px) {
    .shop-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.shop-product-card {
    background: #181840;
    border-radius: 1.2rem;
    box-shadow: 0 0 8px #00eaff44;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem 2rem 1rem;
    transition: transform 0.2s, border 0.2s;
    position: relative;
}
.shop-product-card:hover {
    transform: scale(1.05);
    border-color: #00eaff;
    z-index: 2;
}
.shop-product-img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 0.7rem;
}
.shop-product-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}
.shop-product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ffb7;
    margin-bottom: 1rem;
    text-align: center;
}
.shop-product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.shop-quick-btn,
.shop-add-cart-btn {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1.5px solid transparent;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.shop-quick-btn {
    background: rgba(0, 234, 255, 0.1);
    border-color: #00eaff;
    color: #00eaff;
}

.shop-quick-btn:hover {
    background: #00eaff;
    color: #181840;
    border: 2px solid #00eaff;
    box-shadow: 0 0 12px #00eaff, 0 0 0 2px #181840 inset;
}

.shop-add-cart-btn {
    background: #00ffb7;
    color: black;
}

.shop-add-cart-btn:hover {
    background: white;
    box-shadow: 0 0 12px #00ffb7;
}

/* Quick View Modal */
.shop-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.shop-modal.open {
    display: flex;
}
.shop-modal-content {
    background: #181840;
    border: 2px solid #00eaff;
    box-shadow: 0 0 16px #00eaff44, 0 0 8px #a259ff44;
    border-radius: 1.2rem;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.shop-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}
.shop-modal-close:focus {
    outline: 2px solid #00eaff;
}
.shop-modal-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.shop-modal-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
}
.shop-modal-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ffb7;
    margin-bottom: 0.2rem;
}
.shop-modal-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #00eaff;
    margin-bottom: 0.5rem;
}
.shop-modal-desc {
    color: #fff;
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.shop-modal-addcart {
    width: 100%;
    padding: 0.7rem 0;
    border-radius: 0.7rem;
    background: #00eaff;
    color: #fff;
    font-weight: bold;
    font-size: 1.05rem;
    box-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff44;
    border: none;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}
.shop-modal-addcart:hover {
    background: #00ffb7;
    color: #181840;
    box-shadow: 0 0 8px #00ffb7, 0 0 16px #00ffb744;
}
.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 2.5rem;
    transform: translateX(-50%) scale(0.95);
    background: var(--neon-green);
    color: #181840;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    box-shadow: 0 0 16px var(--neon-green-glow);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s, transform 0.3s;
}
.cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
@media (max-width: 700px) {
    .shop-section {
        padding: 2rem 0.5rem 1rem 0.5rem;
    }
    .shop-product-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .shop-modal-content {
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    }
} 