/**
 * OCNJ Directory Common Styles
 * Shared across restaurants, shops, hotels, etc.
 */

/* Directory Grid */
.ocnj-directory-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 1rem 0;
}

@media (min-width: 550px) {
    .ocnj-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .ocnj-directory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .ocnj-directory-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Directory Card */
.ocnj-directory-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ocnj-directory-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.ocnj-directory-card__image {
    height: 160px;
    background-color: #e2e8f0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.ocnj-directory-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(145deg, #f5e6d3, #87ceeb);
}

.ocnj-directory-card__info {
    padding: 1rem 1.25rem 1.25rem;
}

.ocnj-directory-card__cuisine {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: #0077be;
}

.ocnj-directory-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0.25rem 0 0.5rem;
    line-height: 1.3;
}

.ocnj-directory-card__location {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.ocnj-directory-card__rating {
    font-size: 0.9rem;
    color: #64748b;
}

.ocnj-directory-card__rating .stars {
    color: #f59e0b;
}

/* Filters */
.ocnj-directory-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.ocnj-filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.ocnj-filter-label {
    font-weight: 600;
    color: #1a365d;
    font-size: 0.9rem;
    min-width: 70px;
}

.ocnj-directory-filters a {
    padding: 0.4rem 0.875rem;
    background: #f1f5f9;
    border-radius: 20px;
    color: #1a365d;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.ocnj-directory-filters a:hover,
.ocnj-directory-filters a.active {
    background: #0077be;
    color: white;
}

/* Empty state */
.ocnj-directory-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #64748b;
    font-size: 1.1rem;
}

.ocnj-directory-empty a {
    color: #0077be;
    text-decoration: underline;
}

/* Buttons */
.ocnj-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.ocnj-btn--outline {
    border: 2px solid #0077be;
    color: #0077be;
    background: transparent;
}

.ocnj-btn--outline:hover {
    background: #0077be;
    color: white;
}

/* Archive Pages */
.post-type-archive-ocnj_shop .site-main,
.post-type-archive-ocnj_hotel .site-main,
.tax-shop_type .site-main,
.tax-shop_location .site-main,
.tax-lodging_type .site-main,
.tax-hotel_town .site-main,
.tax-hotel_amenity .site-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Single Pages */
.single-ocnj_shop .entry-content,
.single-ocnj_hotel .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-ocnj_shop .entry-content h3,
.single-ocnj_hotel .entry-content h3 {
    color: #1a365d;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.single-ocnj_shop .entry-content ul,
.single-ocnj_hotel .entry-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-ocnj_shop .entry-content ul li,
.single-ocnj_hotel .entry-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.single-ocnj_shop .entry-content ul li:last-child,
.single-ocnj_hotel .entry-content ul li:last-child {
    border-bottom: none;
}
