/* ========================== ☕ GROOTTO CAFE - RUSTIC STYLE ========================== */


/* 🎨 MÀU CHỦ ĐẠO */

:root {
    --brown-dark: #3e2a1e;
    --brown: #5b3a29;
    --cream: #f6eee3;
    --beige: #e8dbc0;
    --text-dark: #1c1c1c;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    --radius: 14px;
}


/* ===== RESET ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}


/* ===== HEADER ===== */

.header {
    background: var(--brown-dark);
    color: var(--beige);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--beige);
    letter-spacing: 1px;
}

.nav a {
    color: var(--beige);
    text-decoration: none;
    margin: 0 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav a:hover,
.nav .active {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
}


/* ===== HERO ===== */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    background: rgba(30, 20, 10, 0.3);
}

.overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 12px;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.5);
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    background: var(--brown);
    color: var(--beige);
    border: none;
    border-radius: 28px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: var(--brown-dark);
    transform: translateY(-3px);
}


/* ===== ABOUT ===== */

.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 90px 10%;
    background: var(--beige);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--brown-dark);
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 18px;
}

.about-text p {
    color: #3b2e2b;
    font-size: 1rem;
    text-align: justify;
}

.about-gallery {
    flex: 1;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.about-gallery img {
    width: 32%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    filter: sepia(0.25) contrast(1.05);
    transition: 0.3s ease;
}

.about-gallery img:hover {
    transform: scale(1.05);
}


/* ===== MENU ===== */

.menu-section {
    text-align: center;
    padding: 90px 10%;
    background: var(--cream);
}

.menu-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown);
    font-size: 2.4rem;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 36px;
}

.menu-card {
    background: #fffaf5;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.menu-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
    filter: brightness(0.95);
}

.menu-card h3 {
    color: var(--brown-dark);
    margin: 14px 0 6px;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.menu-card p {
    color: #4b3a34;
    font-size: 0.96rem;
    padding: 0 16px;
    min-height: 42px;
}

.menu-card button {
    background: var(--brown);
    color: var(--beige);
    border: none;
    padding: 10px 22px;
    border-radius: 24px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s;
    margin: 18px 0 20px;
}

.menu-card button:hover {
    background: var(--brown-dark);
}


/* ===== NEWS / COFFEE STORIES ===== */

.news-section {
    background: var(--beige);
    text-align: center;
    padding: 90px 10%;
}

.news-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brown-dark);
    font-size: 2.3rem;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fffaf5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    text-align: left;
    transition: 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    filter: brightness(0.9);
}

.news-text {
    padding: 20px;
}

.news-text h3 {
    color: var(--brown);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-text p {
    color: #3d302a;
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.news-btn {
    color: var(--brown-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.news-btn:hover {
    color: #000;
    text-decoration: underline;
}


/* ===== NEWSLETTER ===== */

.newsletter {
    background: var(--brown-dark);
    color: var(--beige);
    text-align: center;
    padding: 80px 20px;
}

.newsletter h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter input {
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    width: 260px;
    outline: none;
    font-size: 1rem;
}

.newsletter .btn {
    margin-left: 10px;
    font-weight: 600;
}


/* ===== 🌙 FOOTER ===== */

.footer {
    background: var(--brown);
    color: var(--beige);
    padding: 60px 8%;
    text-align: left;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.footer p,
.footer a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--beige);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    color: #e3d4b8;
    margin-top: 30px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 10px;
        padding: 12px 20px;
    }
    .about {
        flex-direction: column;
        padding: 60px 20px;
    }
    .about-gallery {
        flex-direction: column;
    }
    .about-gallery img {
        width: 100%;
    }
    .menu-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }
    .newsletter input {
        width: 80%;
    }
}


/* ===== 📰 BẢNG TIN GÓC PHẢI (SLIDER STYLE ĐẸP & MƯỢT) ===== */
.news-popup {
  position: fixed;
  bottom: 90px;
  right: -360px;
  width: 320px;
  background: #fffaf5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  transition: right 0.5s ease;
  z-index: 9999;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  text-align: center; /* ✅ căn giữa nội dung */
}

/* ✨ HIỆU ỨNG FADE-IN KHI HIỆN POPUP */
@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-popup.show {
  right: 20px;
  animation: popupFadeIn 0.6s ease-out;
}

/* ===== THANH TIÊU ĐỀ ===== */
.news-header {
  background: var(--brown-dark);
  color: var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.news-header h3 {
  flex: 1;
  text-align: center; /* ✅ chữ giữa */
  font-family: 'Playfair Display', serif;
  font-size: 1.0rem;
  letter-spacing: 0.5px;
}

/* ===== NÚT ĐIỀU HƯỚNG ===== */
.news-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 10px;
}

.news-nav button {
  background: none;
  border: none;
  color: var(--beige);
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.news-nav button:hover {
  color: #fff;
  transform: scale(1.1);
}

/* ===== KHUNG SLIDE ===== */
.news-slide {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  padding: 10px;
}

/* ===== NỘI DUNG TIN ===== */
.news-item {
  position: absolute;
  opacity: 0;
  transform: translateX(40%);
  transition: all 0.6s ease;
  width: 100%;
}

.news-item.active {
  opacity: 1;
  transform: translateX(0);
  animation: slideIn 0.6s ease both;
}

.news-item.exit-left {
  transform: translateX(-40%);
  opacity: 0;
}

/* ✨ Hiệu ứng trượt mượt */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(40%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.news-item h4 {
  color: var(--brown);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.news-item p {
  color: #3d302a;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto; /* ✅ căn giữa nội dung */
}

/* 🔘 NÚT MỞ BẢNG TIN */
.news-toggle {
  position: fixed;
  bottom: 30px;
  right: 25px;
  background: var(--brown);
  color: var(--beige);
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.3s;
  z-index: 9998;
}

.news-toggle:hover {
  background: var(--brown-dark);
  transform: translateY(-3px);
}


/* ======================
   🛍️ GIỎ HÀNG GROOTTO
====================== */

.cart-section {
    background: #fffaf4;
    max-width: 900px;
    margin: 80px auto;
    padding: 40px 50px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--brown);
}

.cart-section h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--brown);
}


/* ===== Bảng sản phẩm ===== */

.cart-table {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.cart-header,
.cart-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #e0d6c9;
}

.cart-header {
    background: var(--brown);
    color: var(--beige);
    font-weight: 600;
}

.cart-row {
    background: #fff;
    transition: 0.2s ease;
}

.cart-row:hover {
    background: #f9f4ef;
}


/* ===== Hình ảnh và thông tin ===== */

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.cart-item h4 {
    font-size: 1rem;
}


/* ===== Nút số lượng ===== */

.quantity {
    display: flex;
    align-items: center;
    gap: 6px;
}

.quantity button {
    border: none;
    background: var(--brown);
    color: var(--beige);
    border-radius: 6px;
    width: 26px;
    height: 26px;
    cursor: pointer;
    font-size: 1rem;
}

.quantity button:hover {
    background: #3e2723;
}

.quantity span {
    min-width: 24px;
    text-align: center;
}


/* ===== Nút xóa ===== */

.remove-btn {
    background: none;
    border: none;
    color: #a33;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.9rem;
}


/* ===== Tổng cộng ===== */

.cart-total {
    text-align: right;
    font-size: 1.1rem;
    margin-top: 20px;
    color: var(--brown);
}


/* ===== Nút hành động ===== */

.cart-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-outline {
    background: none;
    color: var(--brown);
    border: 2px solid var(--brown);
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--beige);
}


/* =========================
   💳 THANH TOÁN GROOTTO
========================= */

.checkout-section {
    max-width: 800px;
    margin: 80px auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.checkout-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--brown);
    margin-bottom: 30px;
}

.checkout-form label {
    display: block;
    font-weight: 600;
    color: var(--brown);
    margin-top: 15px;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 10px;
    outline: none;
    font-size: 1rem;
    background: #fdfbf8;
}

.checkout-form textarea {
    resize: none;
    height: 80px;
}

.checkout-form h3 {
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    color: var(--brown);
}

#order-summary {
    background: #fffaf4;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#order-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#order-summary li {
    padding: 6px 0;
    border-bottom: 1px dashed #ddd;
}

#order-summary strong {
    color: var(--brown);
}

.btn {
    background: var(--brown);
    color: var(--beige);
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
    margin-top: 25px;
    font-size: 1rem;
}

.btn:hover {
    background: #3e2723;
    transform: translateY(-2px);
}


/* 🎉 POPUP CẢM ƠN */

.thankyou-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    background: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    text-align: center;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 9999;
}

.thankyou-popup.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.thankyou-popup button {
    margin-top: 20px;
    background: var(--brown);
    color: var(--beige);
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.thankyou-popup button:hover {
    background: #3e2723;
}


/* ====== TOAST THÔNG BÁO ====== */

.toast {
    position: fixed;
    bottom: 30px;
    right: -350px;
    background: #5b3a29;
    color: #fffaf0;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 9999;
}

.toast.show {
    right: 30px;
    opacity: 1;
}

.toast.error {
    background: #d33;
}


/* ===============================
   📞 LIÊN HỆ (CONTACT PAGE)
=============================== */

.contact-section {
    background: #fffaf7;
    padding: 60px 80px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.contact-info,
.contact-form {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'Playfair Display', serif;
    color: #5b3a29;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 15px;
}

.social-links a {
    color: #5b3a29;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a06b47;
}


/* ===== FORM ===== */

form label {
    display: block;
    margin: 12px 0 5px;
    font-weight: 500;
    color: #4d3b2a;
}

form input,
form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    resize: none;
    transition: border-color 0.3s;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #a06b47;
}

.btn {
    margin-top: 15px;
    padding: 12px 24px;
    background: #5b3a29;
    color: #fffaf0;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #704831;
    transform: translateY(-2px);
}

#thankyou-msg {
    display: none;
    color: #5b3a29;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
}


/* ===== MAP ===== */

.map-box {
    margin-top: 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

iframe {
    width: 100%;
    height: 350px;
    border: 0;
}


/* ===== FOOTER ===== */

.footer {
    background: #5b3a29;
    color: #fffaf0;
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer a {
    color: #fff8dc;
    text-decoration: none;
    margin: 0 8px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.85;
}


/* ✅ RESPONSIVE CHO MOBILE LIÊN HỆ */

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 20px;
    }
    .contact-container {
        flex-direction: column;
    }
    iframe {
        height: 280px;
    }
}
        /* ===========================
       🛍️ GIỎ HÀNG GROOTTO STYLE
    ============================ */
        
        body {
            background: #f9f4ef;
        }
        
        .cart-section {
            background: #fff;
            max-width: 950px;
            margin: 80px auto;
            padding: 50px 60px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .cart-section h2 {
            font-family: 'Playfair Display', serif;
            text-align: center;
            font-size: 2.2rem;
            color: var(--brown, #5b3a29);
            margin-bottom: 35px;
        }
        /* ===== BẢNG GIỎ HÀNG ===== */
        
        .cart-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 1rem;
        }
        
        .cart-table th {
            background: var(--brown, #5b3a29);
            color: var(--beige, #f5e9da);
            padding: 14px 12px;
            text-align: center;
            font-weight: 600;
        }
        
        .cart-table td {
            padding: 14px 12px;
            border-bottom: 1px solid #e6dccc;
            text-align: center;
        }
        
        .cart-table tr:hover td {
            background: #fff8f2;
        }
        
        .qty-btn {
            background: var(--brown, #5b3a29);
            color: var(--beige, #f5e9da);
            border: none;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s ease;
        }
        
        .qty-btn:hover {
            background: #3e2723;
        }
        
        .del-btn {
            background: none;
            border: none;
            color: #b33;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s ease;
        }
        
        .del-btn:hover {
            color: #e60000;
        }
        /* ===== TỔNG CỘNG ===== */
        
        .cart-total {
            text-align: right;
            font-size: 1.2rem;
            font-weight: 600;
            margin-top: 25px;
            color: var(--brown, #5b3a29);
        }
        /* ===== NÚT HÀNH ĐỘNG ===== */
        
        .cart-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 35px;
        }
        
        .btn {
            background: var(--brown, #5b3a29);
            color: var(--beige, #f5e9da);
            border: none;
            border-radius: 25px;
            padding: 12px 32px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s ease;
            font-size: 1rem;
        }
        
        .btn:hover {
            background: #3e2723;
            transform: translateY(-2px);
        }
        /* ===== FOOTER ===== */
        
        .footer {
            background: var(--brown, #5b3a29);
            color: var(--beige, #f5e9da);
            text-align: center;
            padding: 25px 0;
            font-size: 0.9rem;
            margin-top: 100px;
        }
        
        @media (max-width: 768px) {
            .cart-section {
                padding: 30px 20px;
            }
            .cart-table th,
            .cart-table td {
                font-size: 0.9rem;
                padding: 10px;
            }
        }
/* ===============================
   📱 TỐI ƯU HIỂN THỊ TRÊN MOBILE
=============================== */

@media (max-width: 768px) {
  /* 🌰 HEADER */
  .header {
    flex-direction: column;
    padding: 12px 20px;
    text-align: center;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .nav a {
    font-size: 0.9rem;
    margin: 4px 8px;
  }

  /* ☕ HERO */
  .hero {
    height: 70vh;
  }

  .overlay h1 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .overlay p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  /* 🌿 ABOUT */
  .about {
    flex-direction: column;
    padding: 50px 20px;
  }

  .about-gallery {
    flex-direction: column;
  }

  .about-gallery img {
    width: 100%;
  }

  /* ☕ MENU */
  .menu-section {
    padding: 50px 20px;
  }

  .menu-section h2 {
    font-size: 1.8rem;
  }

  .menu-card img {
    height: 180px;
  }

  /* 💌 NEWSLETTER */
  .newsletter {
    padding: 60px 20px;
  }

  .newsletter h2 {
    font-size: 1.6rem;
  }

  .newsletter input {
    width: 80%;
    font-size: 0.9rem;
  }

  /* 📰 NEWS POPUP */
  .news-popup {
    width: 90%;
    right: -100%;
    bottom: 20px;
    border-radius: 16px;
  }

  .news-popup.show {
    right: 5%;
  }

  .news-header h3 {
    font-size: 1rem;
  }

  .news-item h4 {
    font-size: 0.95rem;
  }

  .news-item p {
    font-size: 0.85rem;
  }

  .news-toggle {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  /* 🛍️ GIỎ HÀNG */
  .cart-section {
    padding: 20px;
    margin: 40px 10px;
  }

  .cart-header,
  .cart-row {
    grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr;
    font-size: 0.85rem;
    gap: 8px;
  }

  .cart-item img {
    width: 45px;
    height: 45px;
  }

  .quantity button {
    width: 22px;
    height: 22px;
  }

  .btn,
  .btn-outline {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  /* 💳 THANH TOÁN */
  .checkout-section {
    padding: 30px 20px;
    margin: 40px 10px;
  }

  .checkout-form label {
    font-size: 0.9rem;
  }

  .checkout-form input,
  .checkout-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  /* 📞 LIÊN HỆ */
  .contact-section {
    padding: 40px 20px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 20px;
  }

  .map-box iframe {
    height: 250px;
  }

  /* 🌙 FOOTER */
  .footer-columns {
    flex-direction: column;
    text-align: center;
  }

  .footer h3 {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .overlay h1 {
    font-size: 1.5rem;
  }

  .overlay p {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .logo span {
    font-size: 1.4rem;
  }

  .news-popup {
    bottom: 10px;
    width: 92%;
  }

  .news-toggle {
    bottom: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}
