/* SHOP SPECIFIC STYLES */
.shop-section {
    padding-top: 100px;
    padding-bottom: 200px;
    /* Space for sticky cart */
    background-color: var(--bg-black, #000);
    min-height: 100vh;
}

.shop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.product-card {
    background: #161617;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--apple-blue, #2997FF);
}

.prod-img {
    height: 140px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.prod-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.prod-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--apple-blue, #2997FF);
    margin-bottom: 15px;
}

.install-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}

.info-row {
    font-size: 11px;
    color: #86868b;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.info-row b {
    color: #ccc;
}

.complexity-bar {
    display: inline-flex;
    gap: 2px;
}

.comp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
}

.comp-dot.active {
    background: #30D158;
    /* Green for easy */
}

.comp-dot.medium {
    background: #FFD60A;
    /* Yellow */
}

.comp-dot.hard {
    background: #FF453A;
    /* Red */
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #000;
    padding: 5px 15px;
    border-radius: 99px;
    border: 1px solid #333;
}

.qty-btn {
    background: none;
    border: none;
    color: var(--apple-blue, #2997FF);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-val {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    width: 20px;
}

/* Sticky Cart */
.cart-sticky-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cart-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-label {
    font-size: 12px;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-total {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.cart-btn {
    padding: 10px 24px;
    font-size: 15px;
    background: #30D158;
    /* WhatsApp Green */
}

.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #555;
}

@media (max-width: 768px) {
    .cart-sticky-bar {
        bottom: 10px;
        width: 95%;
        padding: 12px 20px;
    }

    .cart-total {
        font-size: 20px;
    }

    .cart-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}