/**
 * Donzella SEO Suite — Region Landing Styles
 * Path: inc/frontend/assets/css/dse-region-landing.css
 *
 * Targets ONLY:
 * - .dse-region-landing (region-landing.php shell)
 * - .dse-grape-wines-grid / .dse-grape-wine-card INSIDE region landing
 */

/* Shell to match grape landing layout */
.dse-region-landing {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2.5rem 1.5rem 4rem;
}

@media (min-width: 960px) {
    .dse-region-landing {
        padding-top: 3.5rem;
    }
}

/* Region hero reuse of grape hero, just tighten gap */
.dse-region-landing .dse-grape-hero {
    margin-bottom: 2.5rem;
}

/* Heading above grid */
.dse-region-landing .dse-section-title {
    font-size: 1.35rem;
    margin: 0 0 1.2rem;
}

/* -------------------------------------------------------------------------
   WINES GRID UNDER HERO
   ------------------------------------------------------------------------- */

.dse-region-landing .dse-grape-wines {
    margin-top: 0;
}

/* Card grid */
.dse-region-landing .dse-grape-wines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}

/* Individual wine card */
.dse-region-landing .dse-grape-wine-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
    padding: 1.25rem 1.25rem 1.4rem;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.dse-region-landing .dse-grape-wine-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Image wrapper */
.dse-region-landing .dse-grape-wine-card__image-wrap {
    width: 100%;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dse-region-landing .dse-grape-wine-card__image-wrap img {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
}

/* Fallback bottle if no thumbnail */
.dse-region-landing .dse-bottle-fallback {
    width: 90px;
    height: 220px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(180deg, #f9f6f0, #e6dfd4);
}

/* Title + price + CTA */
.dse-region-landing .dse-grape-wine-card__title {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
}

.dse-region-landing .dse-grape-wine-card__title a {
    color: inherit;
    text-decoration: none;
}

.dse-region-landing .dse-grape-wine-card__title a:hover {
    text-decoration: underline;
}

.dse-region-landing .dse-grape-wine-card__price {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.9rem;
}

/* Push button to bottom so cards line up nicely */
.dse-region-landing .dse-grape-wine-card__footer {
    margin-top: auto;
}

.dse-region-landing .dse-grape-wine-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition:
        background 0.15s ease,
        transform 0.08s ease,
        box-shadow 0.15s ease;
}

.dse-region-landing .dse-grape-wine-card__button:hover {
    background: #1f1f1f;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

/* Empty state */
.dse-region-landing .dse-empty {
    font-size: 0.95rem;
    color: #777;
    margin: 1.5rem 0;
}
