/* ==========================================================================
   Shop Page Styles - Park Medical
   ========================================================================== */

/* ---------- Hero ---------- */
.shop-hero {
    padding: 140px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, #faf6f2 0%, #fff 100%);
}

.shop-hero__title {
    font-family: 'Figtree', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #2A2220;
    margin-bottom: 12px;
}

.shop-hero__subtitle {
    font-size: 18px;
    color: #6b5e57;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Sections ---------- */
.shop-section {
    padding: 60px 0;
}

.shop-section--coupons {
    background: #faf6f2;
}

.shop-section__title {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #2A2220;
    margin-bottom: 32px;
    text-align: center;
}

/* ---------- Grid ---------- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- Product Card ---------- */
.shop-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(42, 34, 32, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 34, 32, 0.12);
}

.shop-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f0eb;
}

.shop-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5a8;
}

.shop-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-card__name {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2A2220;
    margin-bottom: 8px;
}

.shop-card__desc {
    font-size: 14px;
    color: #6b5e57;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.shop-card__pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.shop-card__price {
    font-size: 20px;
    font-weight: 700;
    color: #D7A67B;
}

.shop-card__original-price {
    font-size: 15px;
    color: #999;
    text-decoration: line-through;
}

.shop-card__cta {
    display: inline-block;
    padding: 10px 20px;
    background: #D7A67B;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.shop-card__cta:hover {
    background: #c4925f;
}

/* ---------- Coupon Card ---------- */
.coupon-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(42, 34, 32, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(42, 34, 32, 0.12);
}

.coupon-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f5f0eb;
}

.coupon-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coupon-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coupon-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: #D7A67B;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.coupon-card__title {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2A2220;
    margin-bottom: 8px;
}

.coupon-card__desc {
    font-size: 14px;
    color: #6b5e57;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
}

.coupon-card__code {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.coupon-card__code-label {
    font-size: 13px;
    color: #6b5e57;
}

.coupon-card__code-value {
    display: inline-block;
    padding: 6px 14px;
    background: #faf6f2;
    border: 2px dashed #D7A67B;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #2A2220;
    letter-spacing: 1px;
}

.coupon-card__expiry {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
}

.coupon-card__cta {
    display: inline-block;
    padding: 10px 20px;
    background: #2A2220;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s;
}

.coupon-card__cta:hover {
    background: #3d3230;
}

/* ---------- Empty State ---------- */
.shop-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b5e57;
    font-size: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-hero__title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }

    .shop-hero {
        padding: 110px 0 30px;
    }

    .shop-hero__title {
        font-size: 28px;
    }

    .shop-hero__subtitle {
        font-size: 16px;
    }

    .shop-section {
        padding: 40px 0;
    }

    .shop-section__title {
        font-size: 24px;
    }
}
