/* =====================================================
   Section 4 — Shop by Occasion
   ===================================================== */

.hocc-section {
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    padding: clamp(48px, 7vw, 80px) clamp(16px, 4vw, 40px);
}

.hocc-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Header ── */
.hocc-header {
    text-align: center;
    margin-bottom: 36px;
}

.hocc-pill {
    display: inline-flex;
    align-items: center;
    background: #e8f5d6;
    color: #5a8f2a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.hocc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

/* ── Grid ── */
.hocc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Cards ── */
.hocc-card {
    border-radius: 20px;
    padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    justify-content: center;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hocc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.hocc-card--eid {
    background: linear-gradient(135deg, #e8f5d6 0%, #d4edaa 100%);
    border: 1px solid #c5e3a0;
}

.hocc-card--corp {
    background: linear-gradient(135deg, #f5ede3 0%, #e8d5c0 100%);
    border: 1px solid #d4b896;
}

/* Decorative icon */
.hocc-card__icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 80px;
    opacity: 0.14;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Tag */
.hocc-card__tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hocc-card__tag--eid  { color: #5a8f2a; }
.hocc-card__tag--corp { color: #8B5E3B; }

/* Title */
.hocc-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.2;
}

/* Subtitle */
.hocc-card__subtitle {
    font-size: 13.5px;
    color: var(--color-muted);
    max-width: 280px;
    margin: 0;
    line-height: 1.6;
}

/* Buttons */
.hocc-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    width: fit-content;
    margin-top: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
}

.hocc-card__btn:hover {
    opacity: 0.88;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.hocc-card__btn--eid  { background: #7FBB42; }
.hocc-card__btn--corp { background: #8B5E3B; }

/* =====================================================
   Responsive
   ===================================================== */

@media (max-width: 768px) {
    .hocc-section {
        padding: 48px 16px;
    }
    .hocc-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .hocc-card {
        min-height: 180px;
    }
    .hocc-card__icon {
        font-size: 56px;
        opacity: 0.12;
    }
}

@media (max-width: 480px) {
    .hocc-card {
        padding: 26px 20px;
    }
    .hocc-card__subtitle {
        max-width: 100%;
    }
}
