
    .products-wrapper {
        max-width: 1300px;
        margin: 0 auto;
        padding: 31px 20px;
        font-family: 'Poppins', sans-serif;
        background: #ffffff;
    }

    .products-title {
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 700;
        color: #1c1c1c;
        margin-bottom: 40px;
    }

    /* 4 products per row, wraps automatically to new rows */
    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .product-card {
        position: relative;
        background: #fff;
        border: 1px solid #ece6da;
        border-radius: 4px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.25s ease, transform 0.25s ease;
    }

    .product-card:hover {
        box-shadow: 0 12px 28px rgba(0,0,0,0.09);
        transform: translateY(-4px);
    }

    .discount-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: #000000;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 5px 10px;
        border-radius: 3px;
        z-index: 2;
    }

    .product-card-link {
        display: block;
        text-decoration: none;
        color: inherit;
    }

    .product-image {
        width: 100%;
        height: 331px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        padding: 20px 0;
    }

    .product-image img {
        max-width: 78%;
        max-height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 12px 14px rgba(0,0,0,0.12));
    }

    .product-info {
        padding: 4px 22px 24px;
    }

    .product-category {
        font-size: 11.5px;
        font-weight: 700;
        letter-spacing: 1.2px;
        color: #a9782f;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .product-name {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 600;
        color: #1c1c1c;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    .product-rating {
        font-size: 13.5px;
        color: #2b2b2b;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .stars {
        color: #e0a527;
        letter-spacing: 1px;
        font-size: 14px;
    }

    .reviews-count {
        color: #8a8a8a;
        font-size: 13px;
    }

    .product-price {
        margin-top: 12px;
        font-size: 18px;
        font-weight: 700;
        color: #1c1c1c;
    }

    .product-old-price {
        font-size: 14px;
        color: #b0b0b0;
        text-decoration: line-through;
        font-weight: 400;
        margin-left: 8px;
    }

    /* ── Actions: Add to Cart + WhatsApp + Share Image ── */
    .product-actions {
        margin-top: auto;
        padding: 0 22px 22px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .btn-add {
        width: 100%;
        background: transparent;
        border: 1px solid #1c1c1c;
        color: #1c1c1c;
        padding: 11px 0;
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 3px;
        cursor: pointer;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .btn-add:hover {
        background: #1c1c1c;
        color: #fff;
    }

    .quick-row {
        display: flex;
        gap: 8px;
    }

    .btn-wa,
    .btn-share {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 9px 0;
        font-size: 11px;
        font-family: 'Poppins', sans-serif;
        letter-spacing: 0.05em;
        font-weight: 600;
        text-transform: uppercase;
        border-radius: 3px;
        border: 1px solid #ece6da;
        background: #fff;
        color: #1c1c1c;
        cursor: pointer;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    }

    .btn-wa svg,
    .btn-share svg {
        width: 15px;
        height: 15px;
        flex: none;
    }

    .btn-wa {
        background: #25D366;
        border-color: #25D366;
        color: #fff;
    }
    .btn-wa:hover {
        background: #1ea952;
        border-color: #1ea952;
    }

    .btn-share:hover {
        border-color: #a9782f;
        color: #a9782f;
    }
    .btn-share[disabled] {
        opacity: 0.55;
        cursor: not-allowed;
    }

    /* Responsive */
    @media (max-width: 980px) {
        .product-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 540px) {
        .product-grid { grid-template-columns: 1fr; }
        .quick-row { flex-direction: column; }
    }
