/* Product Page Styles */
.wb-products{
    padding: 60px 0;
}

.wb-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

.wb-product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wb-product-top {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.wb-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.wb-product-top:hover .wb-product-image {
    opacity: 0.8;
}

.wb-discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 400;
    font-size: 15px;
    z-index: 2;
    letter-spacing: 1px;
}

.wb-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.wb-product-top:hover .wb-hover-overlay {
    opacity: 1;
}

.wb-read-more-btn {
    background: linear-gradient(135deg, #e94560, #ff6b6b);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.wb-product-bottom {
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: none;
    border-radius: 20px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.wb-product-name {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.wb-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wb-actual-price {
    color: #888;
    text-decoration: line-through;
    font-size: 1rem;
    letter-spacing: 1px;
}

.wb-discounted-price {
    color: #4ade80;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.wb-divider {
    height: 1px;
    background: linear-gradient(90deg, #00000063, rgb(195 195 195), #00000063);
    margin: 15px 0;
}

.wb-shop-online {
    text-align: center;
}

.wb-shop-online-title {
    color: #797979;
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wb-shop-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.wb-shop-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 40px;
    border-radius: 10px;
    padding: 8px;
    border: 1px solid #000;
}

.wb-shop-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.wb-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.wb-page-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 12px;
    color: #29610a;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid #29610a;
    cursor: pointer;
    background: #fff;
    letter-spacing: 1px;
}

.wb-page-btn.wb-active {
    background: linear-gradient(135deg, #ff9c00, #ffb136);
}

.wb-page-btn.wb-nav {
    width: auto;
    padding: 0 20px;
}

.wb-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.wb-page-info {
    color: #a0a0a0;
    font-size: 15px;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .wb-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .wb-product-top {
        height: 220px;
    }
}
