

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Nunito+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');


:root {
  
  --primary-color: #0F5C6E;
  
  --primary-hover: #0a4454;
  
  --primary-light: #e6f3f6;
  
  --accent-color: #F28C28;
  
  --accent-hover: #d97920;
  
  --green-leaf: #5C8A4A;
  
  --text-dark: #263238;
  
  --text-muted: #607d8b;
  
  --bg-cream: #FFF3D6;
  
  --bg-card: #ffffff;
  
  --bg-light: #fdf8ee;
  
  --footer-bg: #0b3545;
  

  
  --border-radius-sm: 8px;
  --border-radius-md: 14px;
  --border-radius-lg: 22px;

  
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  
  --shadow-subtle: 0 2px 8px rgba(15, 92, 110, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 92, 110, 0.10);
  --shadow-lg: 0 20px 40px rgba(15, 92, 110, 0.14);
  --shadow-warm: 0 8px 24px rgba(242, 140, 40, 0.18);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

@view-transition {
  navigation: auto;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}


i[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

body.bg-page-white {
  background-color: #ffffff;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
}

p,
li,
span,
a,
label {
  font-family: 'Nunito Sans', sans-serif;
}


.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 56rem;
}

.fw-extrabold {
  font-weight: 800;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 140, 40, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(242, 140, 40, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(242, 140, 40, 0);
  }
}


.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}


.stagger-1 {
  animation-delay: 0.10s;
}

.stagger-2 {
  animation-delay: 0.20s;
}

.stagger-3 {
  animation-delay: 0.35s;
}

.stagger-4 {
  animation-delay: 0.50s;
}


.navbar-glass {
  view-transition-name: main-nav;
  background-color: rgba(255, 243, 214, 0.92);
  
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 92, 110, 0.10);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-glass.scrolled {
  background-color: rgba(255, 243, 214, 0.98);
  box-shadow: 0 4px 20px rgba(15, 92, 110, 0.08);
}

.nav-link-custom {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.35s ease;
}

.nav-link-custom:hover {
  color: var(--primary-color);
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
  opacity: 0.45;
}

.nav-link-custom.active {
  color: var(--primary-color);
  font-weight: 700;
}

.nav-link-custom.active::after {
  transform: scaleX(1);
  opacity: 1;
}


@starting-style {
  .nav-link-custom.active::after {
    transform: scaleX(0);
    opacity: 0;
    transform-origin: left center;
  }
}


.nav-link-custom.nav-was-active {
  color: var(--primary-color);
  font-weight: 700;
}


.nav-link-custom.nav-deactivating::after {
  transform: scaleX(0);
  transform-origin: right center;
  opacity: 0;
}


.nav-link-custom.nav-activating::after {
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}


.btn-primary-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1.75rem;
  transition: var(--transition-bounce);
  letter-spacing: 0.2px;
}

.btn-primary-custom:hover {
  background-color: var(--accent-hover);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-warm);
}

.btn-primary-custom:active {
  transform: translateY(-1px);
}

.btn-secondary-custom {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1.75rem;
  transition: var(--transition-smooth);
}

.btn-secondary-custom:hover {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
  transform: translateY(-3px);
}


.hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 10px 0 0 0;
  
}

.hero-overlay {
  background: linear-gradient(160deg,
      rgba(11, 53, 68, 0.88) 0%,
      rgba(15, 92, 110, 0.70) 60%,
      rgba(92, 138, 74, 0.40) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}


.hero-diliput-label {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.hero-diliput-label span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255, 243, 214, 0.80);
  
  text-transform: uppercase;
}


.card-hover {
  border: none;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}


.product-card-container {
  position: relative;
  perspective: 1000px;
  min-height: 460px;
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  border: 1px solid rgba(15, 92, 110, 0.10);
  background-color: var(--bg-card);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(242, 140, 40, 0.30);
}

.product-card-img-wrapper {
  overflow: hidden;
  height: 250px;
}

.product-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img-wrapper img {
  transform: scale(1.07);
}

.product-card-details-overlay {
  position: absolute;
  inset: 0;
  background: white;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.95) translateY(10px);
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.product-card.active-expanded .product-card-details-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.collapse-indicator {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: auto;
  transition: var(--transition-smooth);
}

.product-card:hover .collapse-indicator {
  color: var(--primary-color);
}


.value-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-bounce);
  border-bottom: 4px solid transparent;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--accent-color);
}

.value-icon-container {
  width: 72px;
  height: 72px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon-container {
  background-color: var(--primary-color);
  color: white;
  animation: pulse-ring 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}


.footer-custom {
  background-color: var(--footer-bg);
  color: #90a4ae;
}

.footer-custom h4 {
  color: #fff8e7;
}

.footer-link {
  color: #90a4ae;
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--accent-color);
  padding-left: 5px;
}


::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: #b0bec5;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}


.news-ticker-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 28px 0;
  background-color: var(--bg-light);
  border-top: 1px solid rgba(15, 92, 110, 0.08);
  border-bottom: 1px solid rgba(15, 92, 110, 0.08);
}


.news-ticker-container::before,
.news-ticker-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 160px;
  
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.news-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light) 30%, transparent);
}

.news-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light) 30%, transparent);
}

.news-ticker-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 60s linear infinite;
}

.news-ticker-track:hover {
  animation-play-state: paused;
  cursor: pointer;
}

.news-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.news-ticker-card {
  display: flex;
  align-items: center;
  width: 290px;
  height: 76px;
  
  background: var(--bg-card);
  border: 1px solid rgba(15, 92, 110, 0.10);
  border-radius: var(--border-radius-sm);
  padding: 8px 12px;
  margin-right: 16px;
  text-decoration: none;
  color: var(--text-dark);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.news-ticker-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
  color: var(--primary-color);
}

.news-ticker-card img {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: contain;
  background-color: white;
  padding: 4px;
  margin-right: 12px;
  flex-shrink: 0;
}

.news-ticker-card img.bg-dark-logo {
  background-color: #0b3544; 
}

.news-ticker-card img.bg-rri,
.news-ticker-card img.bg-tvri {
  background-color: #0384fc !important;
}

.news-ticker-card img.bg-rmol {
  background-color: #0f0f0f !important;
}

.news-ticker-card img.bg-delik {
  background-color: #b30d0c !important;
}

.news-ticker-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.news-ticker-card .news-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--green-leaf);
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.6px;
}

.news-ticker-card .news-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  margin: 0;
  color: var(--primary-color);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.hero-ticker {
  position: relative;
  z-index: 10;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 8px 0 0 0 !important;
  margin-top: 0 !important;
}


.hero-ticker .news-ticker-card {
  background: rgba(255, 243, 214, 0.18);
  border-color: rgba(255, 243, 214, 0.25);
  color: rgba(255, 243, 214, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-ticker .news-ticker-card:hover {
  background: rgba(255, 243, 214, 0.30);
  border-color: var(--accent-color);
  color: white;
}

.hero-ticker .news-ticker-card .news-title {
  color: rgba(255, 248, 230, 0.95);
}

.hero-ticker .news-ticker-card .news-tag {
  color: var(--accent-color);
}


.hero-ticker::before {
  background: linear-gradient(to right, rgba(11, 53, 68, 0.97) 20%, transparent) !important;
  width: 200px !important;
}

.hero-ticker::after {
  background: linear-gradient(to left, rgba(11, 53, 68, 0.97) 20%, transparent) !important;
  width: 200px !important;
}


@media (max-width: 991.98px) {
  .hero-section {
    min-height: 560px;
  }
}

@media (max-width: 767.98px) {
  .navbar-glass {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .hero-section {
    min-height: 520px;
    padding-top: 10px;
  }

  .hero-content h1 {
    font-size: 2.4rem !important;
  }

  .hero-content p.lead {
    font-size: 1.05rem !important;
  }

  .product-card-container {
    min-height: 420px;
  }

  .product-card-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.9rem !important;
  }

  .hero-content p.lead {
    font-size: 0.95rem !important;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    padding: 0.7rem 1.25rem;
    font-size: 0.95rem !important;
  }

  .hero-content .d-flex {
    width: 100%;
  }

  .value-card {
    padding: 1.75rem 1rem;
  }

  .news-ticker-container::before,
  .news-ticker-container::after {
    width: 60px;
  }

  .hero-ticker::before,
  .hero-ticker::after {
    width: 80px !important;
  }

  .news-ticker-card {
    width: 260px;
  }
}
.site-logo {
  border-radius: 50%;
  object-fit: cover;
}
.location-section {
  background-color: #ffffff;
}
.map-embed-wrapper {
  width: 100%;
  min-height: 420px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15, 92, 110, 0.10);
  background-color: var(--bg-light);
}
.map-embed-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 767.98px) {
  .map-embed-wrapper {
    min-height: 320px;
  }
  .map-embed-wrapper iframe {
    height: 320px;
  }
}

.site-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  background: #ffffff;
}
.footer-custom {
  background: linear-gradient(145deg, #082f3e 0%, #0b3545 55%, #071f2a 100%);
  color: rgba(255, 255, 255, 0.78);
}
.footer-custom h4 {
  letter-spacing: 1px;
}
.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}
.footer-desc,
.footer-address {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84) !important;
}
.footer-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-link:hover {
  color: var(--accent-color);
  padding-left: 0;
  transform: translateX(3px);
}
.social-media-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.social-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 1.1rem;
}
.social-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  filter: brightness(1.05);
}
.social-whatsapp {
  background: #25D366;
}
.social-facebook {
  background: #1877F2;
}
.social-instagram {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 45%, #8134AF 75%, #515BD4 100%);
}
.social-tiktok {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.location-section .badge,
.location-section h2,
.location-section p {
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .display-4 {
    font-size: clamp(2.25rem, 7vw, 3rem);
  }
  .display-5 {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }
  .display-6 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }
  .lead {
    font-size: 1rem;
  }
  section.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .footer-row > div {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  body {
    line-height: 1.6;
  }
  .navbar-glass {
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
  }
  .navbar-brand span {
    font-size: 1.15rem !important;
  }
  .site-logo {
    width: 44px !important;
    height: 44px !important;
  }
  .navbar-nav {
    gap: 0.35rem !important;
    padding-top: 0.5rem;
  }
  .nav-link-custom {
    padding: 0.65rem 0;
    font-size: 0.95rem;
  }
  .hero-section {
    min-height: calc(100svh - 64px);
    padding: 1.1rem 0 0.75rem 0;
    justify-content: center;
    gap: 0.45rem;
  }
  .hero-content {
    padding: 0 0.75rem 0.35rem;
  }
  .hero-content .badge {
    font-size: 0.7rem !important;
    padding: 0.4rem 0.75rem !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: 0.35px !important;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.45rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 0.85rem !important;
    letter-spacing: -0.5px !important;
  }
  .hero-content p.lead {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }
  .hero-content .d-flex.flex-column {
    gap: 0.75rem !important;
  }
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    max-width: 310px;
    padding: 0.72rem 1.1rem !important;
    font-size: 0.9rem !important;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-diliput-label {
    margin-top: 0.4rem;
    margin-bottom: 0.15rem;
  }
  .hero-diliput-label span {
    font-size: 0.62rem;
    letter-spacing: 1.7px;
  }
  .hero-ticker {
    padding-top: 0 !important;
  }
  .hero-ticker .news-ticker-card {
    width: 218px;
    height: 58px;
    padding: 6px 9px;
    margin-right: 10px;
  }
  .news-ticker-card img {
    width: 38px;
    height: 38px;
    margin-right: 8px;
  }
  .news-ticker-card .news-tag {
    font-size: 0.5rem;
  }
  .news-ticker-card .news-title {
    font-size: 0.64rem;
    line-height: 1.25;
  }
  .hero-ticker::before,
  .hero-ticker::after,
  .news-ticker-container::before,
  .news-ticker-container::after {
    width: 45px !important;
  }
  .product-card-container {
    min-height: 390px;
  }
  .product-card-img-wrapper {
    height: 190px;
  }
  .product-card .card-body {
    padding: 1rem !important;
  }
  .product-card h3,
  .product-card-details-overlay h3 {
    font-size: 1rem !important;
  }
  .product-card-details-overlay {
    padding: 1.15rem !important;
  }
  .value-card {
    padding: 1.5rem 1rem;
  }
  .location-section .row {
    text-align: center;
  }
  .location-section .btn-primary-custom {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .map-embed-wrapper,
  .map-embed-wrapper iframe {
    min-height: 300px;
    height: 300px;
  }
  .footer-custom {
    text-align: center;
  }
  .footer-brand,
  .footer-address,
  .footer-nav-list {
    justify-content: center;
    align-items: center;
  }
  .footer-row > div {
    text-align: center;
  }
  .social-media-buttons {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
  .social-btn {
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .hero-section {
    min-height: calc(100svh - 60px);
    padding-top: 0.75rem;
  }
  .hero-content h1 {
    font-size: clamp(1.75rem, 8.5vw, 2.05rem) !important;
  }
  .hero-content p.lead {
    font-size: 0.88rem !important;
    margin-bottom: 1rem !important;
  }
  .hero-content .badge {
    font-size: 0.64rem !important;
  }
  .hero-ticker .news-ticker-card {
    width: 200px;
    height: 54px;
  }
  .display-4,
  .display-5,
  .display-6 {
    line-height: 1.15;
  }
}
.hero-section > img {
  object-position: center center;
}
@media (max-width: 767.98px) {
  h1 {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }
  h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }
  h3 {
    font-size: clamp(1.1rem, 4.5vw, 1.35rem);
  }
  p,
  li,
  .card-text,
  .text-muted {
    font-size: 0.95rem;
  }
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .about-img-wrapper img,
  .about-main-image img {
    max-height: 300px;
  }
  .card-hover .card-body {
    padding: 1.1rem !important;
  }
}

.brand-title {
  font-weight: 900 !important;
  letter-spacing: -0.8px !important;
}
.btn-icon-text,
.icon-text {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.2;
}
.btn-icon,
.icon-align,
i[data-lucide] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  line-height: 1 !important;
  flex: 0 0 auto;
}
.hero-btn-equal {
  min-width: 180px;
  min-height: 52px;
}
.btn-whatsapp,
.btn-whatsapp-hero {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.22) !important;
}
.btn-whatsapp:hover,
.btn-whatsapp-hero:hover {
  background-color: #1ebe5d !important;
  border-color: #1ebe5d !important;
  color: #ffffff !important;
}
.product-card-container {
  min-height: 430px;
}
.product-card-img-wrapper {
  aspect-ratio: 1 / 1;
  height: auto !important;
}
.product-title {
  font-size: 1.18rem !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}
.product-price {
  font-size: 0.96rem !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}
.product-card-details-overlay .product-price {
  font-size: 0.92rem !important;
}
.product-card-details-overlay .btn-whatsapp {
  min-height: 40px;
  padding-top: 0.55rem !important;
  padding-bottom: 0.55rem !important;
  font-size: 0.86rem !important;
}
.collapse-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.section-blue {
  background: linear-gradient(135deg, #0F5C6E 0%, #0A4454 100%) !important;
  color: #ffffff !important;
}
.location-blue h2,
.location-blue p,
.location-blue .badge {
  color: #ffffff !important;
}
.location-blue .badge {
  background: rgba(255,255,255,0.14) !important;
  border: 1px solid rgba(255,255,255,0.2);
}
.location-blue .map-embed-wrapper {
  border: 3px solid rgba(255,255,255,0.28);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.about-photo-wrapper,
.about-story-wrapper {
  max-width: 56rem;
}
.about-photo-wrapper {
  aspect-ratio: 4 / 3;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-text,
.value-text {
  font-size: 1.08rem !important;
  line-height: 1.8 !important;
}
.values-section {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 18px 44px rgba(15, 92, 110, 0.18);
}
.values-subtitle {
  color: rgba(255,255,255,0.78) !important;
  font-size: 1.02rem !important;
}
.values-section .value-card {
  height: 100%;
}
.values-section .value-card h3 {
  text-align: center;
}
.gallery-img-wrapper {
  aspect-ratio: 5 / 4;
  height: auto !important;
}
.gallery-carousel,
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item,
.gallery-img {
  width: 100%;
  height: 100%;
}
.gallery-img {
  object-fit: cover;
}
.gallery-card-title {
  color: var(--primary-color) !important;
  font-weight: 800 !important;
}
.gallery-card-text {
  line-height: 1.7 !important;
}
.footer-custom {
  background: #050505 !important;
  color: rgba(255,255,255,0.78) !important;
}
.footer-address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.35rem;
  line-height: 1.75;
  text-decoration: none;
  color: rgba(255,255,255,0.84) !important;
  transition: color 0.25s ease;
}
.footer-address-link:hover {
  color: #ffffff !important;
}
.social-media-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.social-btn {
  display: grid !important;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
}
.social-btn i {
  grid-column: 1;
  justify-self: start;
}
.social-btn span {
  grid-column: 2;
  justify-self: center;
  text-align: center;
}
@media (max-width: 767.98px) {
  .brand-title {
    font-weight: 900 !important;
  }
  .hero-btn-equal {
    width: 100%;
    max-width: 310px;
    min-height: 46px;
  }
  .product-card-container {
    min-height: auto;
  }
  .product-card-img-wrapper {
    aspect-ratio: 1 / 1;
  }
  .product-title {
    font-size: 1.12rem !important;
  }
  .product-price {
    font-size: 0.9rem !important;
  }
  .about-photo-wrapper {
    aspect-ratio: 3 / 4;
  }
  .about-story-text,
  .value-text {
    font-size: 0.98rem !important;
    line-height: 1.75 !important;
  }
  .values-section {
    border-radius: 0 !important;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
  }
  .gallery-img-wrapper {
    aspect-ratio: 5 / 4;
  }
  .footer-address-link {
    justify-content: center;
    text-align: center;
  }
  .social-btn {
    max-width: 310px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
:root {
  --section-space-desktop: 4.5rem;
  --section-space-mobile: 3rem;
}
section.py-5 {
  padding-top: var(--section-space-desktop) !important;
  padding-bottom: var(--section-space-desktop) !important;
}
section.py-4 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.brand-title {
  font-family: 'Poppins', 'Arial Black', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.8px !important;
  text-transform: none;
  line-height: 1;
}
.navbar-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  line-height: 1;
}
.btn-icon-text,
.menu-info-badge,
.collapse-indicator,
.pointer-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 0.45rem;
  line-height: 1.2;
  vertical-align: middle;
}
.btn-icon,
.icon-align,
.badge-info-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  flex: 0 0 auto;
}
.hero-diliput-label span,
.hero-content p.lead {
  color: #ffffff !important;
}
.hero-btn-equal {
  width: 190px;
  min-width: 190px;
  text-align: center;
}
.btn-whatsapp-hero,
.btn-whatsapp {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
}
.btn-whatsapp-hero:hover,
.btn-whatsapp:hover {
  background-color: #1ebe5d !important;
  border-color: #1ebe5d !important;
  color: #ffffff !important;
}
.featured-order-btn {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #ffffff !important;
  min-width: 132px;
  text-align: center;
}
.featured-order-btn:hover {
  background-color: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
}
.menu-price {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
.menu-name,
.featured-menu-section .card-title,
.product-card h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.product-card .menu-name,
.product-card h3.menu-name {
  font-size: 1.02rem !important;
}
.featured-menu-section .menu-name,
.featured-menu-section .card-title {
  font-size: 1.12rem !important;
}
.featured-menu-section .menu-description,
.product-card .menu-description,
.product-card .card-body p,
.product-card-details-overlay p {
  text-align: justify !important;
}
.collapse-indicator {
  opacity: 1 !important;
  visibility: visible !important;
  min-height: 1.2rem;
  text-align: justify !important;
  justify-content: flex-start !important;
}
.product-card-container {
  min-height: 430px;
}
.product-card-details-overlay .btn {
  min-height: 42px;
}
.menu-info-badge {
  background-color: var(--primary-light) !important;
  color: var(--primary-color) !important;
  padding: 0.58rem 1rem !important;
  white-space: normal;
}
.badge-info-icon {
  font-size: 1rem;
}
.values-section.section-blue,
.values-full-section {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  width: 100vw !important;
  padding-left: max(1rem, calc((100vw - 1140px) / 2)) !important;
  padding-right: max(1rem, calc((100vw - 1140px) / 2)) !important;
}
.values-section .value-card {
  background-color: #ffffff !important;
  color: var(--text-dark) !important;
  border-radius: var(--border-radius-md) !important;
  box-shadow: var(--shadow-md) !important;
}
.values-section .value-icon-container {
  display: flex !important;
  background-color: var(--primary-light) !important;
  color: var(--primary-color) !important;
}
.values-section .value-card h3 {
  color: var(--primary-color) !important;
}
.values-section .value-text,
.values-section .value-card p {
  color: var(--text-muted) !important;
  font-size: 1.08rem !important;
  line-height: 1.8 !important;
  text-align: justify !important;
}
.values-subtitle {
  color: rgba(255,255,255,0.86) !important;
  font-size: 1.08rem !important;
}
.location-section.section-blue,
.location-blue {
  background: var(--primary-color) !important;
}
.location-section h2,
.location-section p,
.location-section .badge {
  color: #ffffff !important;
}
.location-section .badge {
  background-color: rgba(255,255,255,0.16) !important;
}
.footer-address-link {
  display: inline-flex !important;
  align-items: flex-start !important;
  gap: 0.55rem !important;
  line-height: 1.6 !important;
}
.footer-pin-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.6 !important;
  margin-top: 0.08rem;
  flex: 0 0 auto;
}
.social-btn {
  display: grid !important;
  grid-template-columns: 26px 1fr !important;
  align-items: center !important;
  column-gap: 0.65rem !important;
}
.social-btn i {
  justify-self: start;
}
.social-btn span {
  justify-self: center;
  text-align: center;
  width: 100%;
}
.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  display: none !important;
}
.gallery-img-wrapper,
.gallery-carousel,
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item,
.gallery-img {
  aspect-ratio: 5 / 4 !important;
  height: auto !important;
}
.gallery-img {
  object-fit: cover !important;
}
.section-title,
h1.display-4,
h2.display-4,
h2.display-5 {
  line-height: 1.15 !important;
}
.nasi-box-title {
  line-height: 1.35 !important;
}
@media (max-width: 767.98px) {
  section.py-5 {
    padding-top: var(--section-space-mobile) !important;
    padding-bottom: var(--section-space-mobile) !important;
  }
  section.py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .hero-section {
    min-height: 100svh !important;
    padding-top: 1.5rem !important;
    padding-bottom: 0 !important;
  }
  .hero-content {
    padding-bottom: 1.25rem !important;
  }
  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 2.65rem) !important;
    margin-bottom: 1rem !important;
  }
  .hero-content p.lead {
    font-size: 1rem !important;
    line-height: 1.65 !important;
    margin-bottom: 1.35rem !important;
  }
  .hero-btn-equal {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .nasi-box-title {
    font-size: 1rem !important;
    max-width: 320px;
  }
  .featured-menu-section .lead span {
    line-height: 1.45 !important;
  }
  .featured-menu-section .menu-name,
  .featured-menu-section .card-title {
    font-size: 1.02rem !important;
  }
  .product-card .menu-name,
  .product-card h3.menu-name {
    font-size: 0.98rem !important;
  }
  .menu-price {
    font-size: 0.95rem !important;
  }
  .product-card-img-wrapper:not(.gallery-img-wrapper) {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }
  .about-photo-wrapper,
  .about-photo {
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
  }
  .footer-row > div,
  .footer-brand,
  .footer-nav-list,
  .footer-social-col,
  .footer-address-col {
    text-align: center !important;
    align-items: center !important;
  }
  .footer-address-link {
    justify-content: center !important;
    text-align: left !important;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .navbar-menu-icon {
    font-size: 2.15rem !important;
  }
}

.brand-title {
  font-family: 'Arial Black', 'Poppins', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -1px !important;
  color: var(--primary-color) !important;
}
.footer-brand .footer-logo {
  margin-right: 0.35rem !important;
}
.footer-address-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  line-height: 1.55 !important;
}
.footer-pin-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin-top: 0.25rem !important;
  flex: 0 0 auto !important;
}
.social-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  padding: 0.72rem 1rem !important;
  text-align: center !important;
}
.social-btn i {
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}
.social-btn span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 0 1.8rem !important;
}
#hero-cta-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
}
.hero-btn-equal {
  width: 190px !important;
  min-width: 190px !important;
}
.hero-diliput-label span,
.hero-content p.lead {
  color: #ffffff !important;
}
.featured-menu-section .text-center.mb-5 {
  margin-bottom: 2.4rem !important;
}
.featured-menu-section .menu-name,
.featured-menu-section .card-title,
.product-card .card-body h3 {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.15 !important;
  margin-bottom: 0.25rem !important;
}
.product-card .card-body > div:first-child {
  margin-bottom: 0.15rem !important;
}
.featured-menu-section .menu-name,
.featured-menu-section .card-title {
  font-size: 1.05rem !important;
}
.product-card .card-body h3 {
  font-size: 0.94rem !important;
}
.menu-price,
.product-price,
.product-card .card-body > span,
.featured-menu-section .menu-price {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--primary-color) !important;
  margin-bottom: 0.7rem !important;
}
.product-card .card-body > p,
.featured-menu-section .menu-description {
  text-align: left !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 2.8em !important;
  max-height: 2.8em !important;
  line-height: 1.4 !important;
  font-size: 0.88rem !important;
  margin-bottom: 0.75rem !important;
}
.product-card-details-overlay p {
  text-align: justify !important;
  display: block !important;
  overflow: visible !important;
  max-height: none !important;
  color: var(--text-muted) !important;
}
.product-card-details-overlay h3,
.product-card-details-overlay h4,
.product-card-details-overlay span {
  color: var(--primary-color) !important;
}
.product-card-details-overlay {
  color: var(--text-dark) !important;
}
.collapse-indicator {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0.35rem !important;
  opacity: 1 !important;
  visibility: visible !important;
  color: var(--accent-color) !important;
  text-align: left !important;
}
.collapse-indicator i,
.badge-info-icon,
.btn-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  flex: 0 0 auto !important;
}
.menu-info-badge,
.btn-icon-text {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  line-height: 1.2 !important;
}
.products-cta-card {
  margin-top: 2.4rem !important;
  border-radius: var(--border-radius-md) !important;
}
.products-cta-card .card-body {
  padding: 1.65rem 2rem !important;
}
.products-cta-title {
  font-size: 1.55rem !important;
  line-height: 1.25 !important;
}
.products-cta-text {
  white-space: nowrap !important;
  line-height: 1.45 !important;
  font-size: 0.98rem !important;
}
.products-cta-btn {
  min-height: 48px !important;
  padding: 0.75rem 1.55rem !important;
  font-size: 0.94rem !important;
}
.values-subtitle {
  display: none !important;
}
.values-section .value-icon-container i {
  font-size: 2rem !important;
  color: var(--primary-color) !important;
}
.values-section .value-icon-container {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.location-section p span {
  line-height: 1.75 !important;
}
.about-photo-wrapper,
.about-photo {
  aspect-ratio: 4 / 3 !important;
}
@media (max-width: 991.98px) {
  .products-cta-text {
    white-space: normal !important;
  }
}
@media (max-width: 767.98px) {
  .hero-btn-equal {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    min-height: 44px !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  .featured-menu-section .menu-name,
  .featured-menu-section .card-title,
  .product-card .card-body h3 {
    font-size: 1rem !important;
  }
  .product-card .card-body > p,
  .featured-menu-section .menu-description {
    font-size: 0.9rem !important;
    min-height: 2.9em !important;
    max-height: 2.9em !important;
    -webkit-line-clamp: 2 !important;
  }
  .about-photo-wrapper,
  .about-photo {
    aspect-ratio: 4 / 3 !important;
  }
  .products-cta-card .card-body {
    padding: 1.45rem 1.2rem !important;
  }
  .products-cta-title {
    font-size: 1.3rem !important;
  }
  .products-cta-text {
    font-size: 0.92rem !important;
  }
  .footer-address-link {
    justify-content: center !important;
    text-align: left !important;
  }
}
.product-card {
  position: relative !important;
}

.navbar-brand .brand-title {
  margin-left: 1rem !important;
  font-family: 'Arial Black', 'Poppins', sans-serif !important;
  font-weight: 900 !important;
}
.footer-brand .footer-logo {
  margin-right: 0.75rem !important;
}
.hero-btn-equal {
  width: 205px !important;
  min-width: 205px !important;
  max-width: 205px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#hero-cta-contact {
  white-space: nowrap !important;
  background-color: transparent !important;
  border-color: rgba(255,255,255,0.78) !important;
  color: #ffffff !important;
}
#hero-cta-contact:hover {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
  border-color: #ffffff !important;
}
.featured-menu-card .card-body > .d-flex.justify-content-between {
  align-items: center !important;
  gap: 0.75rem !important;
}
.featured-menu-section .menu-price {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 42px !important;
  margin: 0 !important;
  line-height: 1 !important;
}
.featured-order-btn {
  min-height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}
.product-card-details-overlay {
  z-index: 50 !important;
}
.product-card.active-expanded .product-card-details-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: scale(1) translateY(0) !important;
}
.product-card .card-body > div:first-child {
  margin-bottom: 0.1rem !important;
}
.product-card .card-body > span {
  margin-top: 0 !important;
  margin-bottom: 0.72rem !important;
}
.product-card .card-body > p {
  margin-top: 0 !important;
  text-align: left !important;
}
.products-cta-card .card-body {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}
.products-cta-title {
  margin-bottom: 0.35rem !important;
}
.products-cta-text {
  white-space: nowrap !important;
  margin-bottom: 0 !important;
}
.products-cta-btn {
  min-height: 52px !important;
  padding: 0.85rem 1.8rem !important;
}
.values-full-section {
  margin-bottom: 0 !important;
  padding-bottom: 4rem !important;
}
.about-page-section {
  padding-bottom: 0 !important;
}
.values-section .value-icon-container,
.values-section .value-icon-container i,
.values-section .value-icon-container svg {
  opacity: 1 !important;
  visibility: visible !important;
}
.values-section .value-icon-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--primary-color) !important;
  background-color: var(--primary-light) !important;
}
.values-section .value-icon-container i {
  display: inline-flex !important;
  font-size: 2rem !important;
  line-height: 1 !important;
}
.footer-custom {
  margin-top: 0 !important;
}
.footer-address-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.65rem !important;
  line-height: 1.6 !important;
}
.footer-pin-icon {
  margin-top: 0.18rem !important;
  line-height: 1 !important;
}
.social-btn {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 44px !important;
  padding: 0.72rem 1rem !important;
}
.social-btn i {
  position: absolute !important;
  left: 1rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}
.social-btn span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 0 2.1rem !important;
}
.gallery-img-wrapper {
  aspect-ratio: 5 / 4 !important;
  height: auto !important;
}
.gallery-carousel,
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item {
  height: 100% !important;
  aspect-ratio: auto !important;
}
.gallery-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  aspect-ratio: auto !important;
}
@media (max-width: 767.98px) {
  .hero-btn-equal {
    width: 170px !important;
    min-width: 170px !important;
    max-width: 170px !important;
    min-height: 44px !important;
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
  }
  .products-cta-text {
    white-space: normal !important;
  }
  .featured-menu-card .card-body > .d-flex.justify-content-between {
    align-items: center !important;
  }
  .about-photo-wrapper,
  .about-photo {
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
  }
}


.about-page-section {
  padding-bottom: 0 !important;
}
.about-page-section > .container {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.about-page-section .values-full-section {
  margin-bottom: 0 !important;
}
.about-page-section + .footer-custom {
  margin-top: 0 !important;
}
.navbar-brand .brand-title,
.navbar-brand span {
  margin-left: 1.55rem !important;
}
.hero-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.15rem !important;
}
#hero-cta-contact {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  white-space: nowrap !important;
}
#hero-cta-contact:hover {
  background-color: #1ebe5d !important;
  border-color: #1ebe5d !important;
  color: #ffffff !important;
}
.hero-btn-equal {
  width: 205px !important;
  min-width: 205px !important;
  max-width: 205px !important;
}
.home-nasi-btn,
.nasi-box-section .btn,
section .home-nasi-btn {
  min-height: 52px !important;
  padding: 0.85rem 1.8rem !important;
  font-size: 0.96rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.featured-menu-section .menu-description {
  text-align: left !important;
  min-height: 2.9em !important;
  max-height: 2.9em !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.featured-menu-card .card-body {
  display: flex !important;
  flex-direction: column !important;
}
.featured-menu-card .card-body > .d-flex.justify-content-between {
  margin-top: auto !important;
  align-items: center !important;
}
.featured-menu-section .menu-price,
.featured-order-btn {
  min-height: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
}
.product-card-details-overlay > .d-flex:first-child {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.2rem !important;
  margin-bottom: 0.75rem !important;
}
.product-card-details-overlay h3 {
  font-size: 1rem !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.product-card-details-overlay .fs-5,
.product-card-details-overlay span.fw-bold {
  font-size: 0.95rem !important;
}
.product-card-details-overlay .btn,
.product-card-details-overlay .btn-primary-custom,
.product-card-details-overlay .btn-whatsapp,
.product-card-details-overlay .btn-noclose {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
}
.product-card-details-overlay .btn:hover,
.product-card-details-overlay .btn-primary-custom:hover,
.product-card-details-overlay .btn-noclose:hover {
  background-color: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #ffffff !important;
}
.product-card-details-overlay {
  cursor: default !important;
}
.product-card,
.collapse-indicator {
  cursor: pointer !important;
}
.gallery-img-wrapper,
.gallery-carousel,
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item {
  aspect-ratio: 5 / 4 !important;
  height: auto !important;
}
.gallery-img,
.gallery-img-wrapper img {
  aspect-ratio: 5 / 4 !important;
  height: auto !important;
  width: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 767.98px) {
  .hero-btn-equal {
    width: 168px !important;
    min-width: 168px !important;
    max-width: 168px !important;
  }
  .featured-menu-section .container {
    overflow: hidden !important;
  }
  .featured-menu-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.8rem !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }
  .featured-menu-row > .col {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center !important;
  }
  .featured-menu-row::-webkit-scrollbar {
    display: none !important;
  }
  .featured-menu-card {
    min-height: 100% !important;
  }
}

.navbar-brand .brand-title,
.navbar-brand span.brand-title {
  color: #111111 !important;
}

#hero-cta-shop,
#hero-cta-contact {
  width: 205px !important;
  min-width: 205px !important;
  max-width: 205px !important;
  text-align: center !important;
  white-space: nowrap !important;
}

#hero-cta-contact {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
}

#hero-cta-contact:hover {
  background-color: #1ebe5d !important;
  border-color: #1ebe5d !important;
  color: #ffffff !important;
}

.about-page-section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.about-page-section > .container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.values-full-section,
.values-section.section-blue {
  margin-bottom: -1px !important;
  padding-bottom: 4rem !important;
}

.values-full-section + *,
.about-page-section + .footer-custom,
footer.footer-custom {
  margin-top: 0 !important;
}

.product-card-details-overlay h3,
.product-card-details-overlay .menu-name {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  line-height: 1.2 !important;
  color: var(--text-dark) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

.product-card-details-overlay .product-price,
.product-card-details-overlay span.fw-bold,
.product-card-details-overlay .fs-5 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.96rem !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.product-card-details-overlay p {
  font-family: 'Nunito Sans', sans-serif !important;
  color: var(--text-muted) !important;
}

.product-card-details-overlay .btn,
.product-card-details-overlay .btn-primary-custom,
.product-card-details-overlay .btn-noclose {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #ffffff !important;
}

.product-card-details-overlay .btn:hover,
.product-card-details-overlay .btn-primary-custom:hover,
.product-card-details-overlay .btn-noclose:hover {
  background-color: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #ffffff !important;
}

@media (max-width: 767.98px) {
  #hero-cta-shop,
  #hero-cta-contact {
    width: 168px !important;
    min-width: 168px !important;
    max-width: 168px !important;
  }
}

.navbar-brand .brand-title,
.navbar-brand span.brand-title {
  color: var(--primary-color) !important;
  margin-left: 1.03rem !important;
}

.footer-brand span {
  font-weight: 800 !important;
}

.nasi-box-title {
  font-weight: 600 !important;
}

.home-nasi-btn,
.nasi-box-section .btn,
section .home-nasi-btn {
  min-height: 56px !important;
  padding: 0.95rem 2rem !important;
  font-size: 1rem !important;
}

#hero-cta-contact {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
}

#hero-cta-contact:hover {
  background-color: #1ebe5d !important;
  border-color: #1ebe5d !important;
  color: #ffffff !important;
}

.product-card .card-body h3,
.product-card-details-overlay h3,
.product-card-details-overlay .menu-name {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: var(--text-dark) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

.product-card-details-overlay > .d-flex:first-child {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.2rem !important;
}

.product-card-details-overlay .product-price,
.product-card-details-overlay span.fw-bold,
.product-card-details-overlay .fs-5,
.product-card .card-body > span,
.menu-price,
.product-price {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  color: var(--primary-color) !important;
}

.product-card-details-overlay .btn,
.product-card-details-overlay .btn-primary-custom,
.product-card-details-overlay .btn-noclose {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 700 !important;
}

.product-card-details-overlay .btn:hover,
.product-card-details-overlay .btn-primary-custom:hover,
.product-card-details-overlay .btn-noclose:hover {
  background-color: var(--accent-hover) !important;
  border-color: var(--accent-hover) !important;
  color: #ffffff !important;
}

.product-card.active-expanded .product-card-details-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: scale(1) translateY(0) !important;
}

.product-card-details-overlay {
  z-index: 60 !important;
}

.about-page-section {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.about-page-section > .container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.values-full-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.values-full-section + .footer-custom,
footer.footer-custom {
  margin-top: 0 !important;
}

@media (max-width: 767.98px) {
  .nasi-box-title i {
    display: none !important;
  }
  .nasi-box-title {
    font-size: 1rem !important;
    line-height: 1.45 !important;
  }
}


#product-1 .product-card-details-overlay h3.menu-name,
#product-1 .product-card-details-overlay h3.product-title {
  font-size: 0.82rem !important;
}

.featured-menu-section .menu-price {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

@media (max-width: 767.98px) {
  .product-mobile-slider {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 0.8rem !important;
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .product-mobile-slider > .col,
  .product-mobile-slider > .product-card-container {
    flex: 0 0 88% !important;
    max-width: 88% !important;
    scroll-snap-align: center !important;
  }

  .product-mobile-slider::-webkit-scrollbar {
    display: none !important;
  }

  .product-mobile-slider .product-card .card-body h3,
  .product-mobile-slider .product-card .card-body .menu-name,
  .product-mobile-slider .product-card .card-body > span,
  .product-mobile-slider .product-card .card-body .menu-price,
  .product-mobile-slider .product-card-details-overlay h3,
  .product-mobile-slider .product-card-details-overlay .menu-name,
  .product-mobile-slider .product-card-details-overlay span,
  .product-mobile-slider .product-card-details-overlay .menu-price,
  .product-mobile-slider .product-card-details-overlay h4 {
    text-align: center !important;
    align-self: center !important;
  }

  .product-mobile-slider .product-card .card-body > div:first-child,
  .product-mobile-slider .product-card-details-overlay > .d-flex:first-child {
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .product-mobile-slider .product-card .card-body > p,
  .product-mobile-slider .product-card .menu-description,
  .product-mobile-slider .product-card-details-overlay p {
    text-align: center !important;
  }

  .product-mobile-slider .border-top,
  .product-mobile-slider .product-card-details-overlay .border-top {
    text-align: center !important;
  }

  .featured-menu-section .menu-price {
    white-space: nowrap !important;
    min-width: max-content !important;
    font-size: 0.86rem !important;
  }

  .featured-order-btn {
    min-width: 104px !important;
    width: 104px !important;
    padding-left: 0.55rem !important;
    padding-right: 0.55rem !important;
    font-size: 0.78rem !important;
  }

  .featured-menu-card .card-body > .d-flex.justify-content-between {
    gap: 0.45rem !important;
  }
}

.mobile-line-break {
  display: none;
}

@media (max-width: 767.98px) {
  .mobile-line-break {
    display: inline;
  }

  #product-1 .product-card-details-overlay h3.menu-name,
  #product-1 .product-card-details-overlay h3.product-title {
    font-size: 1rem !important;
  }

  .product-mobile-slider .product-card .card-body h3,
  .product-mobile-slider .product-card .card-body .menu-name,
  .product-mobile-slider .product-card-details-overlay h3,
  .product-mobile-slider .product-card-details-overlay .menu-name {
    font-size: 1.05rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
  }

  .product-mobile-slider .product-card-details-overlay h4 {
    font-size: 0.98rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .product-mobile-slider .product-card .card-body > p,
  .product-mobile-slider .product-card .menu-description,
  .product-mobile-slider .product-card-details-overlay p {
    text-align: justify !important;
    text-align-last: auto !important;
    line-height: 1.65 !important;
  }

  .product-mobile-slider .product-card .card-body > p {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .product-mobile-slider .product-card .card-body > span,
  .product-mobile-slider .product-card .card-body .menu-price,
  .product-mobile-slider .product-card-details-overlay span,
  .product-mobile-slider .product-card-details-overlay .menu-price {
    text-align: center !important;
    align-self: center !important;
  }

  .product-mobile-slider .product-card-details-overlay .border-top,
  .product-mobile-slider .product-card-details-overlay .border-top h4 {
    text-align: center !important;
  }

  .featured-menu-section .menu-price {
    white-space: nowrap !important;
    min-width: max-content !important;
    font-size: 0.84rem !important;
  }

  .featured-order-btn {
    width: 136px !important;
    min-width: 136px !important;
    max-width: 136px !important;
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
    font-size: 0.8rem !important;
    white-space: nowrap !important;
  }

  .featured-menu-card .card-body > .d-flex.justify-content-between {
    gap: 0.65rem !important;
  }
}


#product-1 .product-card-details-overlay h3.menu-name,
#product-1 .product-card-details-overlay h3.product-title {
  font-size: 0.94rem !important;
  line-height: 1.16 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

@media (max-width: 767.98px) {
  #product-1 .product-card-details-overlay h3.menu-name,
  #product-1 .product-card-details-overlay h3.product-title {
    font-size: 1.24rem !important;
    line-height: 1.18 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  .product-mobile-slider .product-card .card-body h3,
  .product-mobile-slider .product-card .card-body .menu-name,
  .product-mobile-slider .product-card-details-overlay h3,
  .product-mobile-slider .product-card-details-overlay .menu-name {
    font-size: 1.24rem !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  .product-mobile-slider .product-card-details-overlay h4,
  .product-mobile-slider .product-card-details-overlay .border-top h4 {
    font-size: 1.17rem !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .featured-menu-card .card-body > .d-flex.justify-content-between {
    justify-content: space-between !important;
    align-items: center !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }

  .featured-menu-section .menu-price {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    min-width: max-content !important;
    font-size: 0.92rem !important;
    line-height: 1 !important;
  }

  .featured-order-btn {
    flex: 0 0 158px !important;
    width: 158px !important;
    min-width: 158px !important;
    max-width: 158px !important;
    margin-left: auto !important;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
    font-size: 0.88rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 767.98px) {
  .featured-menu-card .card-body > .d-flex.justify-content-between,
  .featured-menu-card .card-body > .d-flex.align-items-center {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 0.75rem !important;
    margin-top: 1rem !important;
  }

  .featured-menu-section .menu-price {
    flex: 0 0 auto !important;
    min-width: max-content !important;
    white-space: nowrap !important;
    margin: 0 !important;
    line-height: 1 !important;
    font-size: 0.92rem !important;
    text-align: left !important;
  }

  .featured-order-btn,
  .featured-menu-section .featured-order-btn {
    flex: 0 0 174px !important;
    width: 174px !important;
    min-width: 174px !important;
    max-width: 174px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-left: 0.9rem !important;
    padding-right: 0.9rem !important;
    font-size: 0.88rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
}

@media (max-width: 390px) {
  .featured-order-btn,
  .featured-menu-section .featured-order-btn {
    flex-basis: 166px !important;
    width: 166px !important;
    min-width: 166px !important;
    max-width: 166px !important;
    font-size: 0.84rem !important;
  }
}

.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  display: flex !important;
  opacity: 1 !important;
  width: 44px !important;
  height: 44px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(5, 5, 5, 0.48) !important;
  border: 1px solid rgba(255, 255, 255, 0.38) !important;
  border-radius: 999px !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.25s ease, transform 0.25s ease !important;
}
.gallery-carousel .carousel-control-prev {
  left: 12px !important;
}
.gallery-carousel .carousel-control-next {
  right: 12px !important;
}
.gallery-carousel .carousel-control-prev:hover,
.gallery-carousel .carousel-control-next:hover {
  background: rgba(5, 5, 5, 0.7) !important;
}
.gallery-control-symbol {
  color: #ffffff !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  margin-top: -2px !important;
}
.gallery-event-card {
  height: 100% !important;
}
.gallery-card-text {
  text-align: justify !important;
}
.gallery-img-wrapper,
.gallery-carousel,
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item {
  aspect-ratio: 5 / 4 !important;
  height: auto !important;
}
.gallery-img,
.gallery-img-wrapper img {
  aspect-ratio: 5 / 4 !important;
  height: auto !important;
  width: 100% !important;
  object-fit: cover !important;
}
@media (max-width: 767.98px) {
  .gallery-carousel .carousel-control-prev,
  .gallery-carousel .carousel-control-next {
    width: 38px !important;
    height: 38px !important;
  }
  .gallery-carousel .carousel-control-prev {
    left: 10px !important;
  }
  .gallery-carousel .carousel-control-next {
    right: 10px !important;
  }
  .gallery-control-symbol {
    font-size: 1.45rem !important;
  }
}


.gallery-carousel .carousel-control-prev,
.gallery-carousel .carousel-control-next {
  display: flex !important;
  opacity: 1 !important;
  width: 54px !important;
  height: 100% !important;
  top: 0 !important;
  bottom: 0 !important;
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.25s ease, color 0.25s ease !important;
}
.gallery-carousel .carousel-control-prev {
  left: 0 !important;
  background: linear-gradient(90deg, rgba(0,0,0,0.34), rgba(0,0,0,0)) !important;
}
.gallery-carousel .carousel-control-next {
  right: 0 !important;
  background: linear-gradient(270deg, rgba(0,0,0,0.34), rgba(0,0,0,0)) !important;
}
.gallery-carousel .carousel-control-prev:hover {
  background: linear-gradient(90deg, rgba(0,0,0,0.5), rgba(0,0,0,0)) !important;
}
.gallery-carousel .carousel-control-next:hover {
  background: linear-gradient(270deg, rgba(0,0,0,0.5), rgba(0,0,0,0)) !important;
}
.gallery-control-icon {
  color: #ffffff !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.75) !important;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.55)) !important;
}
.gallery-carousel .carousel-control-prev:hover .gallery-control-icon,
.gallery-carousel .carousel-control-next:hover .gallery-control-icon {
  color: var(--accent-color) !important;
}
.gallery-control-symbol {
  display: none !important;
}
@media (max-width: 767.98px) {
  .gallery-carousel .carousel-control-prev,
  .gallery-carousel .carousel-control-next {
    width: 46px !important;
  }
  .gallery-control-icon {
    font-size: 1.75rem !important;
  }
}

@media (min-width: 768px) {
  .product-card > .card-body .menu-description {
    text-align: left !important;
    text-align-last: auto !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .mobile-line-break {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .product-mobile-slider .product-card > .card-body .menu-description {
    text-align: center !important;
    text-align-last: center !important;
    line-height: 1.55 !important;
    max-width: 92% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .product-mobile-slider .product-card-details-overlay > p.menu-description,
  .product-mobile-slider .product-card-details-overlay .border-top p.menu-description {
    text-align: justify !important;
    text-align-last: auto !important;
    line-height: 1.62 !important;
    max-width: 100% !important;
  }

  .product-mobile-slider .product-card-details-overlay .border-top h4 {
    text-align: center !important;
  }
}


@media (min-width: 768px) {
  .product-card > .card-body .menu-description {
    text-align: left !important;
    text-align-last: auto !important;
    white-space: normal !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .mobile-line-break {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .mobile-line-break {
    display: inline !important;
  }

  .product-mobile-slider .product-card > .card-body .menu-description {
    text-align: center !important;
    text-align-last: center !important;
    line-height: 1.55 !important;
    max-width: 96% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
  }

  .product-mobile-slider .product-card-details-overlay > p.menu-description,
  .product-mobile-slider .product-card-details-overlay .border-top p.menu-description {
    text-align: justify !important;
    text-align-last: auto !important;
    line-height: 1.62 !important;
    word-spacing: normal !important;
    letter-spacing: normal !important;
  }

  .product-mobile-slider .product-card .card-body h3,
  .product-mobile-slider .product-card .card-body .menu-name,
  .product-mobile-slider .product-card-details-overlay h3,
  .product-mobile-slider .product-card-details-overlay .menu-name,
  .product-mobile-slider .product-card-details-overlay .border-top h4 {
    text-align: center !important;
  }
}

.product-card {
  cursor: pointer;
}

.menu-card-simple-body {
  gap: 0.42rem;
  min-height: 116px;
  justify-content: center;
}

.menu-card-simple-body .menu-name {
  margin-bottom: 0.1rem !important;
}

.menu-card-simple-body .menu-price {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.product-card-details-overlay .menu-detail-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.22rem !important;
}

.product-card-details-overlay .menu-detail-heading .menu-price {
  display: block !important;
  margin-top: 0 !important;
}

.product-card-details-overlay > p.menu-description {
  margin-bottom: 1rem !important;
  line-height: 1.68 !important;
}

.product-card-details-overlay .btn-primary-custom {
  margin-top: auto !important;
}

.product-card.active-expanded .product-card-details-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: scale(1) translateY(0) !important;
}

.product-card-details-overlay {
  visibility: hidden;
}

.product-card.active-expanded .product-card-details-overlay {
  visibility: visible;
}

@media (max-width: 767.98px) {
  .menu-card-simple-body {
    min-height: 112px;
    align-items: center;
    text-align: center;
  }
  .product-mobile-slider .menu-card-simple-body .menu-name,
  .product-mobile-slider .menu-card-simple-body .menu-price {
    text-align: center !important;
    align-self: center !important;
  }
  .product-mobile-slider .product-card-details-overlay .menu-detail-heading {
    align-items: center !important;
    text-align: center !important;
  }
  .product-mobile-slider .product-card-details-overlay > p.menu-description {
    text-align: justify !important;
    text-align-last: auto !important;
  }
}
