:root {
    --restaurant-gold: #f3b21a;
    --restaurant-text: #333333;
    --restaurant-muted: #666666;
}

.restaurant-intro {
    padding: 80px 0;
    background: #ffffff;
}

.restaurant-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.restaurant-image-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.restaurant-image-mosaic img {
    width: 100%;
    aspect-ratio: 1.06;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.restaurant-image-mosaic img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(243, 178, 26, 0.15);
}

.restaurant-image-mosaic img:nth-child(2) { margin-top: 40px; }
.restaurant-image-mosaic img:nth-child(3) { margin-bottom: 40px; }

/* Chỉ thêm height 100% cho ảnh 1 và 4 */
.restaurant-image-mosaic img:nth-child(1),
.restaurant-image-mosaic img:nth-child(4) {
    height: 100%;
}

.restaurant-copy .restaurant-heading-wrap,
.restaurant-section-heading,
.restaurant-products-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.restaurant-copy h2,
.restaurant-section-heading h2,
.restaurant-products-head h2 {
    margin: 0;
    color: var(--restaurant-gold);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: normal;
}

.restaurant-copy span,
.restaurant-section-heading span,
.restaurant-products-head span {
    flex-grow: 1;
    height: 1px;
    background: var(--restaurant-gold);
    position: relative;
    display: block;
}

.restaurant-copy span::after,
.restaurant-section-heading span::after,
.restaurant-products-head span::after {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--restaurant-gold);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: -3px;
}

.restaurant-copy p {
    margin: 0 0 32px;
    color: var(--restaurant-text);
    font-size: 18px;
    line-height: 1.7;
}

.restaurant-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 54px;
    padding: 12px 32px;
    border-radius: 50px;
    background: var(--restaurant-gold);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.restaurant-button:hover {
    background: #250900;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.restaurant-feature-banner {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0) 100%), url("/image/banner.png");
    background-size: cover;
    background-position: center;
}

.restaurant-banner-copy {
    max-width: 650px;
}

.restaurant-kicker {
    margin: 0 0 12px;
    color: var(--restaurant-gold);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.restaurant-banner-copy h2 {
    margin: 0 0 24px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.restaurant-banner-description {
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.restaurant-gallery {
    padding: 80px 0;
    background: #ffffff;
}

.restaurant-section-heading {
    margin-bottom: 40px;
}

.restaurant-section-heading p {
    color: var(--restaurant-text);
    font-size: 18px;
    line-height: 1.7;
    margin-top: 10px;
}

.restaurant-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.restaurant-gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.restaurant-gallery-grid img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(243, 178, 26, 0.15);
}

.restaurant-diamonds {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.restaurant-diamonds span {
    width: 10px;
    height: 10px;
    background: rgb(243, 178, 26);
    transform: rotate(45deg);
}

.restaurant-diamonds i {
    width: 60px;
    height: 1px;
    background: var(--restaurant-gold);
}

.restaurant-products {
    padding: 0 0 80px;
    background: #ffffff;
}

.restaurant-products-head {
    margin-bottom: 40px;
}

.restaurant-products-head p {
    color: var(--restaurant-muted);
    font-size: 18px;
    line-height: 1.6;
}

.restaurant-product-grid {
    margin-bottom: 50px;
}

.restaurant-more {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

.restaurant-empty {
    padding: 40px;
    text-align: center;
    color: var(--restaurant-muted);
    border: 1px dashed #dddddd;
    border-radius: 12px;
}

@media (max-width: 991.98px) {
    .restaurant-intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .restaurant-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .restaurant-copy h2, .restaurant-section-heading h2 { font-size: 30px; }
    .restaurant-banner-copy h2 { font-size: 32px; }
    .restaurant-image-mosaic img:nth-child(2), .restaurant-image-mosaic img:nth-child(3) { margin-top: 0; margin-bottom: 0; }
}

@media (max-width: 575.98px) {
    .restaurant-gallery-grid { grid-template-columns: 1fr; }
    .restaurant-gallery-grid img { height: 250px; }
}
