/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* PRODUCT PAGE LAYOUT */
.product-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
}

.product-page img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}


/* PRODUCT CARD */
.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.product-card h3 {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
}

.product-card p {
    color: #555;
    font-size: 14px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

/* PRODUCT IMAGES */
.product-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* BUTTONS */
.btn-view,
.btn-buy {
    display: inline-block;
    padding: 10px 18px;
    background: #1b6ec2;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.btn-view:hover,
.btn-buy:hover {
    background: #155a9a;
}

/* PRODUCT PAGE */
.product-page {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 16px;
}

.product-page img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* STORE WRAPPER */
.store-wrap {
    max-width: 1080px;
    margin: 40px auto;
    padding: 0 16px;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        height: 200px;
    }

    .product-card {
        padding: 16px;
    }
}

/* STRIPE PAGES */
.success-box,
.cancel-box,
.loading-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
}

.success-box h1 {
    color: #16a34a;
}

.cancel-box h1 {
    color: #dc2626;
}

/* BUTTONS */
.btn-buy,
.btn-home {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background: #1b6ec2;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-buy:hover,
.btn-home:hover {
    background: #155a9a;
}

/* SPACING FIX */
.store-wrap {
    margin-top: 40px;
}
.main-nav {
    margin-bottom: 30px;
}

/* MOBILE */
@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-img {
        height: 200px;
    }
    .product-card {
        padding: 16px;
    }
}
