  :root {
    --primary-color: #A41F1F;
    /* Fudo Tea Red */
    --secondary-color: #F8F1E5;
    /* Light Cream background */
    --accent-color: #D4AF37;
    /* Gold for some highlights */
    --text-dark: #2C1810;
    --text-light: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  body {
    font-family: 'Outfit', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
  }

  a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
  }

  ul {
    list-style: none;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Header */
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
    background-color: var(--primary-color);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo img {
    height: 50px;
    width: auto;
  }

  .nav-menu {
    display: flex;
    gap: 25px;
  }

  .nav-menu a {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .nav-menu a:hover {
    color: var(--accent-color);
  }

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
  }

  .hotline-btn {
    background: #C41E1E;
    /* Deeper red */
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
  }

  /* Hero Slider */
  .hero {
    margin-top: 70px;
    height: 400px;
    /* Adjust as needed */
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .slider-container {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .slide {
    flex: 0 0 100%;
    position: relative;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Sections */
  section {
    padding: 60px 0;
  }

  .section-pad {
    padding: 80px 0;
  }

  @media (max-width: 768px) {
    .section-pad {
      padding: 40px 0;
    }
  }

  .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
  }

  /* Intro Section (2 Columns) */
  .intro-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .intro-img {
    width: 100%;
    text-align: center;
  }

  .intro-img img {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: none !important;
  }

  .intro-text-content {
    text-align: left;
  }

  .intro-title {
    font-size: 2.2rem;
  }

  @media (max-width: 768px) {
    .intro-grid-new {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 30px;
    }

    .intro-text-content {
      text-align: center;
    }

    .intro-title {
      font-size: 1.6rem;
    }
  }

  /* Menu Section (New - Clean) */
  .tabs-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    width: 100%;
  }

  .tab-btn {
    padding: 10px 25px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    color: #333;
    transition: var(--transition);
    font-size: 1.05rem;
  }

  .tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
  }

  .tab-btn.active {
    background: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(164, 31, 31, 0.3);
  }

  .tabs-content {
    width: 100%;
    text-align: center;
  }

  .tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
  }

  .tab-pane.active {
    display: block;
  }

  .tab-pane img {
    width: 100%;
    max-width: 1100px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  /* Branches Section */
  /* Branches Section */
  .branch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
  }

  .branch-info-left {
    flex: 1;
  }

  .branch-info-left h3 {
    font-size: 1.8rem;
    color: #05332b;
    margin-bottom: 5px;
    font-weight: 700;
  }

  .branch-info-left p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
  }

  .branch-info-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .branch-info-right p {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
  }

  .branch-info-right a {
    color: inherit;
  }

  .btn-map {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .btn-map:hover {
    background: #8a1717;
    color: #fff !important;
  }

  /* Header colors */
  header a,
  header button {
    color: #fff !important;
  }

  .hotline-btn {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  @media (max-width: 480px) {
    .branch-info-left h3 {
      font-size: 1.4rem;
    }

    .branch-info-right p {
      font-size: 0.9rem;
    }

    .btn-map {
      padding: 6px 12px;
      font-size: 0.85rem;
    }
  }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .menu-card {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
  }

  .menu-card:hover {
    transform: translateY(-5px);
  }

  .menu-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
  }

  .menu-card h3 {
    padding: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .menu-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  }

  /* Branches Section */
  .branch-albums {
    position: relative;
    overflow: hidden;
    padding: 10px 0 20px 0;
    margin: 0 -15px;
    /* Offset some padding for feel */
  }

  .album-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
  }

  .album-img {
    flex: 0 0 280px;
    height: 380px;
    /* Fallback for no aspect-ratio */
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
  }

  .album-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 480px) {
    .album-img {
      flex: 0 0 220px;
      height: 300px;
    }
  }

  .album-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
  }

  .album-img .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
  }

  .album-img:hover {
    transform: scale(1.02);
  }

  .slider-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
  }

  .album-img:hover {
    transform: translateY(-5px);
  }

  /* Footer */
  footer {
    background: #fff;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #ddd;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background: var(--primary-color);
      flex-direction: column;
      padding: 20px;
      gap: 15px;
      text-align: center;
      clip-path: circle(0% at top right);
      transition: clip-path 0.4s ease-in-out;
    }

    .nav-menu.active {
      clip-path: circle(150% at top right);
    }

    .nav-toggle {
      display: block;
    }

    .intro-grid-new { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .intro-img img { max-width: 280px; }
    .branch-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
    .branch-info-left h3 { font-size: 1.3rem; margin-bottom: 2px; }
    .branch-info-left p { font-size: 0.85rem; }
    .branch-info-right {
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 5px;
      margin-top: 0;
    }
    .branch-info-right p { font-size: 0.9rem; font-weight: 700; color: var(--primary-color); }
    .btn-map { padding: 4px 12px; font-size: 0.8rem; }

    .section-title { font-size: 1.5rem; }

    .hotline-btn {
      font-size: 0.75rem;
      padding: 6px 12px;
    }

    .hide-mobile {
      display: none;
    }

    .show-mobile {
      display: block;
    }
  }

  .side-title {
    flex: 0 0 80px;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    border-right: 2px solid var(--primary-color);
    padding-left: 10px;
    opacity: 0.9;
    display: flex;
    align-items: center;
  }

  .show-mobile {
    display: none;
  }

  @media (max-width: 768px) {
    .show-mobile {
      display: block;
    }
  }

  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
  }

  .lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
  }

  .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    cursor: zoom-in;
  }

  .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
  }

  .lightbox-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    pointer-events: none;
  }

  .lightbox-nav button {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    pointer-events: auto;
    transition: var(--transition);
  }

  .lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.4);
  }

  .zoomable {
    cursor: pointer;
    transition: transform 0.3s;
  }

  .zoomable:hover {
    transform: scale(1.02);
  }
/* Manual Horizontal Scroll for Branch Albums */
.album-track-manual {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}
.album-track-manual::-webkit-scrollbar { display: none; } /* Hide scrollbar Chrome/Safari */

.album-track-manual .album-img {
  flex: 0 0 250px;
  height: 330px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
  .album-track-manual .album-img { flex: 0 0 200px; height: 260px; }
  .branch-header { display: flex !important; justify-content: space-between !important; width: 100%; align-items: flex-start; }
  .branch-info-left { flex: 1; min-width: 0; }
  .branch-info-right { 
    flex-shrink: 0; 
    text-align: right; 
    display: flex; 
    flex-direction: column; 
    align-items: flex-end; 
    gap: 4px; 
    min-width: 100px;
  }
}
