/* Public landing header — Login (white), Book A Table (same bg as header cart / “add to cart” green) */

.header-area.header-one .public-login-btn.theme-btn.style-two,
.header-area.header-one .nav-right-item .public-login-btn,
.header-area.header-one .nav-button .public-login-btn {
    color: #fff !important;
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.95) !important;
}

.header-area.header-one .public-login-btn.theme-btn.style-two:hover,
.header-area.header-one .nav-right-item .public-login-btn:hover,
.header-area.header-one .nav-button .public-login-btn:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: #fff !important;
}

/* Match .nav-right-item .cart-button — uses theme --secondary-color (#14A83A) */
.header-area.header-one .public-book-table.theme-btn,
.header-area.header-one .nav-right-item .public-book-table,
.header-area.header-one .nav-button .public-book-table {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border: 1px solid var(--secondary-color) !important;
    border-radius: 10px;
}

.header-area.header-one .public-book-table.theme-btn:hover,
.header-area.header-one .nav-right-item .public-book-table:hover,
.header-area.header-one .nav-button .public-book-table:hover {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    filter: brightness(0.92);
}

/* ----- OUR CATEGORIES (landing) ----- */
.public-categories-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.public-categories-title {
    font-family: "Barlow Condensed", "Hanken Grotesk", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a2e;
    line-height: 1.1;
    margin: 0;
}

.public-btn-see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    color: #1a1a2e;
    background: #fff;
    border: 2px solid #8b1538;
    border-radius: 6px;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.public-btn-see-more:hover {
    color: #fff;
    background: #8b1538;
    border-color: #8b1538;
}

.public-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .public-category-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.public-category-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.1rem;
    background: #f5f5f5;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    min-height: 100px;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

.public-category-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: inherit;
}

.public-category-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #eee;
}

.public-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color, #bf1109);
}

.public-category-text {
    min-width: 0;
    text-align: left;
}

.public-category-name {
    font-weight: 700;
    font-size: 1rem;
    color: #111;
    margin: 0 0 0.2rem;
    line-height: 1.25;
}

.public-category-meta {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}
