﻿:root {
    --gl-red: #e63946;
    --gl-dark: #1a1a2e;
    --gl-darker: #0d0d1a;
    --gl-gold: #ffc300;
    --gl-gray: #f8f9fa;
}



html, body {
  height: 100%;
}

.pf-body-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.pf-body-wrapper > main {
  flex: 1 0 auto;
}





* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
      background: linear-gradient(380deg, var(--gl-darker) 0%, #3d1309 100%);
}

#mainNav {
    background: #021026;
    border-bottom: 1px solid;
    color: #00ccff;
}


.navbar .container {
  padding-left: 66px;
  padding-right: 16px;
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  .navbar-brand img {
    height: 32px;
  }
}

.logo-circle {
  position: relative;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin: 10px 0;
  border: 2px solid #ffc400ac;
  perspective: 800px;
  transform-style: preserve-3d;
  animation: logo-float 3s ease-in-out infinite;
 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: -80px;
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.logo-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 55%);
  pointer-events: none;
}

/* ---- continuous gentle float + 3D rotation ---- */
@keyframes logo-float {
  0%, 100% {
    transform: translateY(0) rotateY(0deg) rotateX(0deg);
  }
  25% {
    transform: translateY(-6px) rotateY(8deg) rotateX(3deg);
  }
  50% {
    transform: translateY(0) rotateY(0deg) rotateX(0deg);
  }
  75% {
    transform: translateY(-6px) rotateY(-8deg) rotateX(-3deg);
  }
}

/* ---- hover: pause float, do a bigger interactive tilt + zoom ---- */


.logo-circle:hover img {
  transform: scale(1.2);
}

@media (max-width: 576px) {
  .logo-circle {
    height: 50px;
    width: 50px;
  }
}

.brand-logo {
    height: 35px;
    width: auto;

}


.brand-text {
    display: inline-block;
   font-weight: 500;
   
}


/*alert msg*/
/* Premium Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1055;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
}

/* Premium Toast Alert */
.custom-toast-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
    font-family: 'Segoe UI', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #333;
    border-left: 5px solid transparent;
    animation: slideIn 0.4s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
    position: relative;
    overflow: hidden;
}

/* Slide-in animation from right */
@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Fade-out when Bootstrap removes 'show' */
.custom-toast-alert.fade:not(.show) {
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.4s ease;
}

/* Icon circle */
.toast-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.toast-text {
    flex: 1;
    line-height: 1.4;
}

/* Close button */
.btn-close-custom {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}
.btn-close-custom:hover {
    color: #333;
}

/* Type-based colors */
.custom-toast-alert.alert-success {
    border-left-color: #13de5e;
}
.custom-toast-alert.alert-success .toast-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.custom-toast-alert.alert-danger {
    border-left-color: #ef4444;
}
.custom-toast-alert.alert-danger .toast-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.custom-toast-alert.alert-warning {
    border-left-color: #f59e0b;
}
.custom-toast-alert.alert-warning .toast-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.custom-toast-alert.alert-info {
    border-left-color: #3b82f6;
}
.custom-toast-alert.alert-info .toast-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Progress bar effect (optional premium touch) */
.custom-toast-alert::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: rgba(0,0,0,0.1);
    animation: progressBar 2.5s linear forwards;
}
@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    .custom-toast-alert {
        padding: 12px 14px;
        font-size: 13.5px;
    }
}





@keyframes colorChange {
    0% {
        color: #0acfc5;
    }

    25% {
        color: #f8f8f8;
    }

    50% {
        color: #00ccff;
    }

    75% {
        color: #ffcc00;
    }

    100% {
        color: #08caec;
    }
}

@keyframes waveMove {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-3px) translateX(2px);
    }

    50% {
        transform: translateY(0px) translateX(4px);
    }

    75% {
        transform: translateY(-3px) translateX(2px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}



.navbar-brand {
    font-size: 1.4rem;
    color: var(--gl-gold) !important;
    letter-spacing: 1px;

    display: flex;
    align-items: center;
    gap: 8px;

}

@media (max-width: 992px) {
    .navbar-nav {
        margin-right: 5px;

    }
}


.navbar-nav .nav-link {
    position: relative;
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-1px);
}


.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #c8a121, #ff6600);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}



.dropdown-menu {
    background-color: #05090e;
    /* dropdown background */
     border: 1px solid rgba(212, 175, 55, 0.25);
     
}

.dropdown-menu .dropdown-item {
    color: #ffffff;

    /* text color */
}

.dropdown-menu .dropdown-item:hover {
    background-color: #050101;
    /* hover background */
    color: #ffffff;
}

.dropdown-menu.dropdown-menu-end .dropdown-item {
    color: rgb(255, 255, 255);
}


/* =========================================================
   HOME TOP WRAPPER â€” hero + gallery + order-cta share ONE
   continuous background so no seam/border line appears
   between the sections (fixes the maroon line bug).
========================================================= */
.home-top-wrapper {
    background: linear-gradient(180deg, #1a1a2e 0%, #3d1309 55%, #1a1a2e 100%);
    overflow: hidden;
    
}

/*Main page er color*/

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
    background: transparent;
    padding-bottom: 0; /* extra space à¦¨à¦¾ à¦°à¦¾à¦–à¦¾ */
}


.hero-content p {
    color: #ffffff !important;

    letter-spacing: 2px;
    font-weight: 500;
    font-family: cursive;
    font-optical-sizing: calc();
    font-style: italic;
    animation: fadeUp 0.6s ease forwards;

}


h1.hero-title span {
    color: #e6d111 !important;
}

.hero-title {
    color: #ffffff !important;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    animation: slideDown .4s ease forwards;

}

/* inside span (PERI PERI & GRILL) */
.hero-title span {
    color: #ffc300 !important;
    font-weight: 900;
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    animation: zoomIn .6s ease forwards;
   

}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}



.fw-800 {
    font-weight: 800;
    

}

.cart-btn {
    position: relative;
    font-size: 1.3rem;
   
}

.cart-btn-mobile {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 4px;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: -6px;
    background: var(--gl-red);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    
}




.hero-content .d-flex.gap-3 {
  margin-top: -50px !important;
      
}

.text-white-50 span {
  color: #ffffff !important;
  margin-top: 30px;
}


.btn-order {
    background: var(--gl-red);
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s;

}

.btn-order:hover {
    background: #ff0314;
    transform: translateY(-2px);
    color: #fff9f9;
}

/* ===== ORDER NOW CTA SECTION =====
   Transparent so it shares the .home-top-wrapper background
   instead of leaking the body gradient (fixes the seam/border) */
.order-cta-section {
    background: transparent;
}

section.py-5 {
  background: linear-gradient(280deg, #132b3c 0%, #0d0d1a 100%);
  color: #fff;
}

/* ===== SECTION BACKGROUND ===== */
section.py-5 {
  
  color: #fff;

 
}


/* ===== TITLE ===== */
section.py-5 h2 {
  color: #ffffff;
  font-size: 2rem;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

section.py-5 .text-muted {
  color: #ffffff !important;
  margin-top: 15px;
  font-family: cursive;
}

section.py-5 p {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* ===== CARD DESIGN OVERRIDE ===== */
.menu-card {
  background: #592211b3;
  border: 1px solid rgb(188, 43, 14);
  color: #fff;
  
}

/* ===== IMAGE ===== */
.menu-card .card-img-top {
  border-bottom: 1px solid rgb(234, 207, 3);
  
}

/* ===== ITEM NAME ===== */
.menu-card .card-title {
  color: #ffffff;
  text-align: left;
  text-decoration: none !important;
  border-bottom: none !important;
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
}

/* ===== DESCRIPTION ===== */
.menu-card .card-text {
  color: rgba(255, 255, 255, 0.6);
}

/* ===== PRICE ===== */
.price-tag {
  color: #2c291f !important;
  font-weight: 700;
  font-size: 1.1rem;
  animation: priceWave 1s infinite ease-in-out;
}

@keyframes priceWave {
  0% { transform: translateY(0px); }
  25% { transform: translateY(-2px); }
  50% { transform: translateY(0px); }
  75% { transform: translateY(-2px); }
  100% { transform: translateY(0px); }
}

/* ===== ADD BUTTON ===== */
.menu-card .btn-primary {
  background: #000000;
  border: none;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.85rem;
}

.menu-card .btn-primary:hover {
  background: #c30f0f;
  transform: translateY(-2px);
}

/* ===== SEE FULL MENU BUTTON ===== */
.btn-outline-danger {
  border-color: #e63946;
  color: #fff;
}

.btn-outline-danger:hover {
  background: #e63946;
  color: #fff;
}





.menu-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(211, 7, 7, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
 
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.menu-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.menu-card .price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gl-red);
}

.cart-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 0;
}

.cart-summary {
    background: var(--gl-gray);
    border-radius: 12px;
    padding: 1.5rem;
}

.status-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #cff4fc;
    color: #055160;
}

.status-preparing {
    background: #fff3cd;
    color: #664d03;
}

.status-ready {
    background: #d1e7dd;
    color: #0a3622;
}

.status-out_for_delivery {
    background: #cfe2ff;
    color: #084298;
}

.status-delivered,
.status-collected {
    background: #d1e7dd;
    color: #0a3622;
}

.status-cancelled {
    background: #f8d7da;
    color: #842029;
}

.allergen-present {
    color: var(--gl-red);
    font-weight: 700;
}

.allergen-absent {
    color: #ccc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    z-index: 9999;
    border-top: 2px solid var(--gl-gold);
}

/* â†“â†“â†“ à¦¨à¦¤à§à¦¨ à¦¯à§‹à¦— à¦•à¦°à§‹ â†“â†“â†“ */
body {
    padding-bottom: 0px;   /* cookie banner à¦à¦° height à¦¯à¦¤à¦Ÿà§à¦•à§, footer à¦•à§‡ à¦¸à§‡à¦‡ à¦œà¦¾à¦¯à¦¼à¦—à¦¾ à¦›à§‡à¦¡à¦¼à§‡ à¦°à¦¾à¦–à¦¤à§‡ à¦¬à¦²à¦›à¦¿ */
}

body.cookie-dismissed {
    padding-bottom: 0;
}


/* ===== SECTION BACKGROUND OVERRIDE ===== */
section.py-5.bg-light {
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 100%) !important;
  color: #ffffff;
  text-align: center;
}

/* ===== TITLE ===== */
section.py-5.bg-light h2 {
  color: #ffffff;
  font-weight: 800;
}

/* ===== CARD STYLE ===== */
section.py-5.bg-light .col-6 > div {
  background: rgba(13, 56, 83, 0.714);
  border: 1px solid rgba(255, 196, 0, 0.981);
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}

/* ===== CARD HOVER ===== */
section.py-5.bg-light .col-6 > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(230, 57, 71, 0.237)

}

/* ===== ICON STYLE ===== */
section.py-5.bg-light .col-6 div div {
  font-size: 2rem !important;
  
}

/* ===== CARD TITLE ===== */
section.py-5.bg-light h5 {
  color: #ffffff;
  font-weight: 500;
  font-family:'Times New Roman', Times, serif;
}

/* ===== TEXT ===== */
section.py-5.bg-light p {
  color: rgb(255, 255, 255) !important;
}

/* ===== GRID CENTER ALIGN ===== */
section.py-5.bg-light .row {
  justify-content: center;
}





.footer-link {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--gl-gold);
}







.badge-meal-deal {
  background: #064c58;
  color: #fff;
}



.col-md-4 h6 {
    font-size: 18px;
    font-weight: 700;
    color: #ffe100 !important;
    text-align: center;
}








/* ===== SOCIAL ICONS ===== */


.footer-social a:hover {
    color: #ffc300;
}

/* ===== SECTION HEADINGS ===== */
.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #ffe100;
    text-align: center;
    margin-bottom: 12px;
}

/* ===== OPENING HOURS BADGE ===== */
.footer-open-badge {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}


.footer-info p {
  margin-bottom: 10px !important;
  line-height: 1.6;
}

.footer-info .tagline {
  margin-bottom: 16px !important;
}

.social-links {
  margin-top: 20px !important;
  display: flex !important;
  gap: 18px !important;
}

.social-links a {
  display: flex !important;
  align-items: center;
  text-decoration: none !important;
}

.social-links a span {
  margin-left: 6px !important;
}

.social-links a:hover {
  color: var(--bs-warning) !important;
}



/* ================================================
   FOOTER STYLES â€” Grill Lab
   ================================================ */



/* ===== SECTION HEADINGS (col-md-4 h6) ===== */
.col-md-4 h6 {
    font-size: 18px;

    color: #ffffff !important;
    text-align: center;
    text-decoration: underline;
    margin-top: 25px;

    
}



/* Checkout */
@media (max-width: 576px) {
    .checkout-order-type .form-check {
        padding: 0.8rem;
    }

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

/* Navbar */
@media (max-width: 992px) {
    .navbar-brand {
        font-size: 1.1rem;
    }

    #navMenu {
        background: var(--gl-darker);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
}


/* Buttons full width on mobile */
@media (max-width: 576px) {
    .btn-mobile-full {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    #category-pills-wrapper {
        overflow-x: auto;
        flex-wrap: nowrap !important;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    #category-pills-wrapper::-webkit-scrollbar {
        display: none;
    }
    .category-pill {
        white-space: nowrap;
    }

    /* ⬇️ নতুন যোগ করুন — sticky অবস্থায় mobile-এ left position ঠিক করার জন্য */
    #category-pills-wrapper.pills-sticky {
        left: 0;
        right: 0;
        top: 0;
        padding: 8px 12px;
    }
}



/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 1rem 0 2rem;
  margin-top: -110px;   /* negative margin à¦¸à¦°à¦¿à¦¯à¦¼à§‡ à¦¦à¦¿à¦²à¦¾à¦® */
  background: transparent;
}

.gallery-section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}



.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: .5px solid rgb(123, 80, 27);
  max-width: 680px;  /* à¦à¦Ÿà¦¾ à¦¯à§‹à¦— à¦•à¦°à§‹ */
  margin: 0px auto;   /* center à¦ à¦°à¦¾à¦–à¦¤à§‡ */
  box-shadow: 0 4px 12px rgba(230, 57, 71, 0.25);
  
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-group {
  display: flex;
  gap: 10px;
  padding: 15px;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}



.img-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.3);
  transform: scale(1.15); /* blur à¦à¦° edge à¦¶à¦¾à¦°à§à¦ª à¦¦à§‡à¦–à¦¾ à¦¯à¦¾à¦“à¦¯à¦¼à¦¾ à¦†à¦Ÿà¦•à¦¾à¦¤à§‡ */
  z-index: 0;
}

.img-card {
  flex: 1;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 195, 0, 0.15);
  height: 220px;               /* fixed height â€” à¦¸à¦¬ à¦•à¦¾à¦°à§à¦¡ à¦¸à¦®à¦¾à¦¨ à¦¸à¦¾à¦‡à¦œ */
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.img-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;            /* à¦ªà§à¦°à§‹ card à¦­à¦°à¦¾à¦Ÿ à¦•à¦°à¦¬à§‡, à¦ªà§à¦°à¦¯à¦¼à§‹à¦œà¦¨à§‡ crop/zoom à¦¹à¦¬à§‡ */
  object-position: center;      /* à¦›à¦¬à¦¿à¦° à¦®à¦¾à¦à¦–à¦¾à¦¨ à¦¥à§‡à¦•à§‡ crop à¦¹à¦¬à§‡ (à¦¸à¦¬à¦šà§‡à¦¯à¦¼à§‡ à¦—à§à¦°à§à¦¤à§à¦¬à¦ªà§‚à¦°à§à¦£ à¦…à¦‚à¦¶ à¦ªà§à¦°à¦¾à¦¯à¦¼à¦‡ à¦®à¦¾à¦à¦–à¦¾à¦¨à§‡ à¦¥à¦¾à¦•à§‡) */
}

.img-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.25);
  border-color: rgba(230, 57, 70, 0.5);
}
.img-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #0d0d1a;
}



.img-label {
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #1a1a2e;
}

.gallery-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 1.4rem;
}

.gallery-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(230, 57, 70, 0.5);
  background: transparent;
  color: #ffc300;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
   margin-bottom: -60px;
}

.gallery-nav-btn:hover {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}

.gallery-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.gallery-dot.active {
  background: #ffc300;
  transform: scale(1.3);
}

.gallery-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.3);
  font-size: 15px;
}

.gallery-empty .icon {
  font-size: 48px;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
 .slide-group {
  display: flex;
  gap: 4px;
  padding: 4px;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  align-items: stretch;
 }
}


/* ===== DASHBOARD GALLERY ADMIN ===== */
.gallery-upload-area {
  border: 2px dashed rgba(230, 57, 70, 0.4);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 20px;
  background: rgba(230, 57, 70, 0.03);
}

.gallery-upload-area:hover,
.gallery-upload-area.drag-over {
  border-color: #e63946;
  background: rgba(230, 57, 70, 0.07);
}

.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.gallery-admin-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  aspect-ratio: 1;
}

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

.gallery-admin-thumb .thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 11px;
  padding: 5px 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.gallery-admin-thumb .thumb-delete {
  position: absolute;
  top: 6px; right: 6px;
  background: rgba(220,50,50,0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 26px; height: 26px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  text-decoration: none;
}

.gallery-admin-thumb:hover .thumb-delete { opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, #fcf9f9 0%, #faeeec 100%);
  border-bottom: 2px solid #E63946;
}
.contact-hero h1 {
  color: #fffbfb !important;
}



.contact-subtitle {
  color: rgb(255, 255, 255) !important;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-hero .text-warning {
  color: #ffffff !important;
}

.contact-section {
  background: #F8F8F6;
}

/* ===== CARD - à¦›à§‹à¦Ÿ à¦•à¦°à¦¾ à¦¹à¦²à§‹ ===== */
.contact-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-card:hover {
  background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(255,255,255,0.03));
  border-color: rgba(239,68,68,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(239,68,68,0.15), 0 4px 12px rgba(0,0,0,0.3);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(239,68,68,0.2), rgba(239,68,68,0.05));
  border: 1px solid rgba(239,68,68,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #ef4444;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, rgba(239,68,68,0.35), rgba(239,68,68,0.1));
  box-shadow: 0 0 20px rgba(239,68,68,0.3);
}

.contact-card h6 {
  color: #ffffff;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-card p {
  color: rgb(255, 255, 255);
  font-size: 0.78rem;
}

.section-title-box {
  display: inline-block;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 32px;
  box-shadow: 0 4px 24px rgba(239,68,68,0.2), 0 2px 12px rgba(0,0,0,0.3);
  font-size: 1.5rem;
}


/* ===== FORM - Dark & Advanced ===== */
.contact-form-box {
  background: #1D1D1D;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(230, 57, 70, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #E63946, #F4A261, #E63946);
}

.contact-form-box h4 {
  color: #ffffff;
}

.contact-form-box p.text-muted {
  color: rgba(255,255,255,0.6) !important;
}

.contact-form-box .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

.contact-form-box .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
}

.contact-form-box .form-control::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-form-box .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: #E63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
  color: #ffffff;
}

.contact-map-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
  .contact-form-box { padding: 24px; }
}

.contact-hero h1 {
  color: #ffffff !important;
}

.contact-hero .contact-subtitle {
  color: rgb(255, 255, 255) !important;
}

.about-lead {
  max-width: 600px !important;
  color: rgba(255,255,255,0.65) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.about-image-box {
  max-width: 800px !important;
}

.about-image-box video {
  width: 100% !important;
  max-height: 460px !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 16px !important;
  display: block !important;
  background: #000;
}


.about-image-box img {
  width: 100% !important;
  height: 360px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  display: block !important;
}

.about-grid {
  display: grid !important;
  gap: 20px !important;
}

.about-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 768px) {
  .about-grid-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}


.section-title-box {
  display: inline-block;
  background: rgba(89, 44, 44, 0.632) !important;
  border: 1px solid rgba(103, 21, 21, 0.345);
  border-radius: 12px;
  padding: 10px 32px;
  box-shadow: 0 4px 24px rgba(210, 59, 59, 0.2), 0 2px 12px rgba(0,0,0,0.3);
}
.chef-card img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  border: 2px solid rgba(230, 57, 70, 0.2) !important;
  display: block !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.chef-card:hover img {
  transform: translateY(-6px) !important;
  border-color: #E63946 !important;
}

.chef-role {
  color: #F4A261 !important;
}



.chef-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.chef-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.chef-grid .chef-card {
  width: 270px;
}





/* ===================================================
   PREMIUM MENU PAGE ONLY
=================================================== */

.premium-menu-page{
    background:#0d1b2a;
    min-height:100vh;
    padding-bottom:50px;
}

/* Variables à¦¶à§à¦§à§ à¦à¦‡ page-à¦à¦° à¦œà¦¨à§à¦¯ */
.premium-menu-page{
    --card-bg:#1e4a77;
    --card-footer-bg:#442211;
    --text-primary:#fff;
    --text-muted:#b0bec5;
    --accent-orange:#ff7043;
    --price-gold:#ffca28;
}



/* Card */

.premium-menu-page .menu-card{
    background:var(--card-bg)!important;
    border:none!important;
    border-radius:16px!important;
    overflow:hidden;
    transition:.3s;
}

.premium-menu-page .menu-card:hover{
    transform:translateY(-8px);
}

.premium-menu-page .menu-card .card-img-top{
    height:220px;
    object-fit:cover;
}

.premium-menu-page .menu-card .card-body{
    background:var(--card-footer-bg);
    color:#fff;
    padding:20px;
}

.premium-menu-page .menu-card h6,
.premium-menu-page .menu-card .card-title{
    color:#fff;
    font-weight:700;
}





.premium-menu-page .price-tag{
    color:#fdfdfd!important;
    font-weight:700;
}

.premium-menu-page .menu-card .text-muted{
    color:var(--text-muted)!important;
}

/* Badges */

.premium-menu-page .badge{
    padding:6px 12px;
    border-radius:6px;
}

.premium-menu-page .badge-halal{
    background:#22a629;
}

.premium-menu-page .badge-popular{
    background:#1f0a03;
}

/* Button */

.premium-menu-page .btn-primary{
    background:#000!important;
    color:#fff!important;
    border-radius:50px!important;
    border:1px solid rgba(255,255,255,.2)!important;
}

.premium-menu-page .btn-primary:hover{
    background:#fff!important;
    color:#000!important;
}

/* Forms */

.premium-menu-page .form-control,
.premium-menu-page .form-select{
    background:#151f28!important;
    color:#fff!important;
    border:1px solid #2c3e50!important;
}

.premium-menu-page .form-control:focus,
.premium-menu-page .form-select:focus{
    border-color:var(--accent-orange)!important;
    box-shadow:0 0 0 .25rem rgba(255,112,67,.25)!important;
}

.premium-menu-page .btn-check:checked + .btn-outline-success{
    background:#2e7d32!important;
    color:#fff;
}

.premium-menu-page .btn-check:checked + .btn-outline-warning{
    background:#f57c00!important;
    color:#fff;
}

.premium-menu-page .btn-check:checked + .btn-outline-danger{
    background:#d32f2f!important;
    color:#fff;
}

.premium-menu-page h1{
    color:#fff !important;
}

.premium-menu-page p{
    color:#fff !important;
}


.premium-menu-page .menu-hero{
    background:#38160a;
    border-radius:30px;
   padding: 25px 45px;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.35);
     overflow: visible !important;
}

.premium-menu-page .menu-hero h1{
    font-size:3rem;
    font-weight:800;
    color:#fff;
}

.premium-menu-page .menu-hero p{
    color:#e5e5e5;
    font-size:1.1rem;
}

.premium-menu-page .menu-hero .category-pill{
    margin-top:40px;
}

/* ===============================
   Category Pills
================================ */

.premium-menu-page .category-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 20px;
    

    background:#0e2338;
    color:#fff;

    border:1px solid rgba(255,255,255,.08);
    border-radius:50px;

    text-decoration:none;
    font-size:14px;
    font-weight:600;
    white-space:nowrap;

    transition:all .2s ease;
}

.premium-menu-page .category-pill:hover,
.premium-menu-page .category-pill.active{
    background:#411a0c;
    color:#fff;
    border-color:#ff6b35;
    transform:translateY(-2px);
    box-shadow:0 4px 16px rgba(255,107,53,.35);
}




/* Sticky Pills */
#category-pills-wrapper {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  overflow-anchor: none;
}
#category-pills-wrapper::-webkit-scrollbar {
  display: none;
}

#category-pills-wrapper.pills-sticky {
  position: fixed;
  top: 15px;
  left: 94px;
  right: 0;
  z-index: 998;
  padding: 12px 16px;
 
}

@media (max-width: 768px) {
  #category-pills-wrapper.pills-sticky {
    left: 0;
    right: 0;
    top: 15px;
    padding: 10px 12px;
  }
}


/* ================================
   Menu Hero
================================ */

.menu-hero {
  background: #38160a;
  border-radius: 30px;
  padding: 45px;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden; /* banner à¦­à§‡à¦¤à¦°à§‡ à¦°à¦¾à¦–à§‡ */
}

/* Top row â€” left + right */
.menu-hero-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

/* Left side */
.menu-hero-left {
  flex: 1;
  min-width: 0;
}

/* ================================
   Search Row
================================ */

.menu-search-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 600px;
  margin-top: 12px;
}

.menu-search-wrap {
  position: relative;
  flex: 1;
  min-width: 180px;
}

.menu-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
}

.menu-search-input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

/* ================================
   Price Filter
================================ */

.price-filter-btn {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-badge-dot {
  display: none;
  background: #ff6b35;
  color: #fff;
  font-size: 11px;
  padding: 1px 7px;
  border-radius: 20px;
  font-weight: 600;
}

.price-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  width: 240px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.price-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.price-range-label {
  color: #ff6b35;
  font-weight: 600;
  font-size: 13px;
}

.price-value-label {
  color: #fff;
  font-size: 11px;
}

.price-slider {
  width: 100%;
  accent-color: #ff6b35;
  cursor: pointer;
}

.price-reset-btn {
  width: 100%;
  padding: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  cursor: pointer;
}

/* ================================
   Banner â€” Right Side
================================ */

.menu-hero-banner {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* hero padding cancel à¦•à¦°à§‡ edge à¦ à¦¨à¦¿à¦¯à¦¼à§‡ à¦¯à¦¾à¦“à¦¯à¦¼à¦¾ */
  margin-top: -45px;
  margin-right: -45px;
  margin-bottom: -55px;
  perspective: 1000px;
}

.menu-banner-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.18), rgba(184, 76, 36, 0.12));
  border-left: 3px solid rgba(255, 107, 53, 0.35);
  border-bottom: 3px solid rgba(255, 107, 53, 0.2);
  
  margin-right: 10px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 20px;
}

.menu-banner-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.menu-banner-body {
  padding: 2px 4px;
  text-align: center;
  
}
@keyframes bannerBounce {
  0%   { transform: translateY(0px) rotateY(0deg); }
  10%  { transform: translateY(-10px) rotateY(0deg); }
  20%  { transform: translateY(0px) rotateY(0deg); }
  28%  { transform: translateY(-6px) rotateY(0deg); }
  36%  { transform: translateY(0px) rotateY(0deg); }
  42%  { transform: translateY(-3px) rotateY(0deg); }
  48%  { transform: translateY(0px) rotateY(0deg); }
  100% { transform: translateY(0px) rotateY(0deg); }
}

.banner-bounce {
  animation: bannerBounce 1.5s ease-in-out infinite;
}

@keyframes bannerSpin {
  0%   { transform: translateY(0px) rotateY(0deg); }
  50%  { transform: translateY(0px) rotateY(180deg); }
  100% { transform: translateY(0px) rotateY(360deg); }
}

.banner-spin {
  animation: bannerSpin 0.6s ease-in-out forwards !important;
  transform-style: preserve-3d;
}

.menu-hero-banner {
  perspective: 1000px;
}
.menu-banner-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}

.menu-banner-title {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.menu-banner-desc {
  color: rgba(255, 255, 255, 0.844);
  font-size: 12px;
  margin: 0 0 8px;
}

.menu-banner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  flex-direction: column; 
}

.menu-banner-badge {
  background: #1c0a04;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block; /* â† add */
}

.menu-banner-deadline {
  color: rgb(255, 252, 252);
  font-size: 11px;
  display: block; /* â† add */
}

/* ================================
   Category Pills
================================ */

.menu-pills-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.menu-pills-wrapper::-webkit-scrollbar {
  display: none;
}

.premium-menu-page .category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #0e2338;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.premium-menu-page .category-pill:hover,
.premium-menu-page .category-pill.active {
  background: #411a0c;
  color: #fff;
  border-color: #ff6b35;
  transform: translateY(-2px);
  box-shadow: 2px 4px 8px rgba(255, 107, 53, 0.35);
}




.category-section {
  width: 100%;
}

.category-heading {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 12px;
  margin-bottom: 8px;
  
  display: inline-block;
  animation: wave 2s ease-in-out infinite;
}



#category-pills-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 4px;
  padding: 4px 12px;
  justify-content: flex-start;  /* â† left à¦ à¦°à¦¾à¦–à¦¬à§‡ */
  scrollbar-width: none;
}




.menu-item-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}

.rating-stars {
  display: inline-flex;
  gap: 1px;
  color: #d4af37;
  font-size: 0.85rem;
}

.rating-stars .bi-star {
  color: rgba(255, 255, 255, 0.25);
}

.rating-count {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.rating-empty {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.8rem;
}



.nav-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3dd9b, #d4af37);
  color: #0a0f1f;
  font-size: 12px;
  font-weight: 800;
  margin-right: 4px;
  vertical-align: middle;
}






/* ---------- Auth Card (Login/Register) reused from Edit Profile style ---------- */
.pf-edit-wrapper {
  padding: 60px 0 80px;
}

.pf-back-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.pf-back-link svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
 
}

.pf-back-link:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.pf-back-link:hover svg {
  stroke: #f3dd9b;
}

.pf-edit-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
 
}

.pf-edit-card {
  text-align: center;
  padding: 44px 40px;
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pf-edit-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #0e9595, #177a9b);
  border: 2px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.pf-edit-icon svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pf-edit-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.pf-edit-form {
  text-align: left;
}

.pf-form-group {
  margin-bottom: 22px;
  position: relative;
}

.pf-form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f3dd9b;
  margin-bottom: 8px;
}

.pf-edit-form input,
.pf-edit-form select,
.pf-edit-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 13px 16px;
  color: #ffffff;
  font-size: 0.94rem;
  color-scheme: dark;
  transition: all 0.2s ease;
}

.pf-edit-form input::placeholder,
.pf-edit-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.pf-edit-form input:hover,
.pf-edit-form select:hover,
.pf-edit-form textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.pf-edit-form input:focus,
.pf-edit-form select:focus,
.pf-edit-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.pf-form-error {
  color: #f87171;
  font-size: 0.78rem;
  margin-top: 6px;
}

.pf-btn-primary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 700;
  color: #0a0f1f;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.pf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(9, 137, 160, 0.49);
  color: #0a0f1f;
}

.pf-btn-primary.w-100 {
  width: 100%;
  text-align: center;
  background: linear-gradient(145deg, #0e9595, #177a9b);
  font-size: 0.95rem;
  padding: 14px 30px;
}












/* =====================================================================
   RESPONSIVE ADDITIONS â€” Grill Lab
   à¦à¦‡ à¦ªà§à¦°à§‹ à¦¬à§à¦²à¦•à¦Ÿà¦¾ main.css à¦à¦° à¦à¦•à¦¦à¦® à¦¶à§‡à¦·à§‡ à¦ªà§‡à¦¸à§à¦Ÿ à¦•à¦°à§‹à¥¤
   à¦à¦–à¦¾à¦¨à§‡ à¦¶à§à¦§à§ override/media-query à¦†à¦›à§‡, existing rule à¦®à§‹à¦›à¦¾ à¦¹à¦¯à¦¼à¦¨à¦¿à¥¤
   ===================================================================== */

/* ---------------------------------------------------------------
   0. FIX: leftover broken sticky-pills rule (top:-40px; left:112px)
   à¦à¦Ÿà¦¾ à¦†à¦—à§‡à¦° à¦à¦•à¦Ÿà¦¾ rule à¦›à¦¿à¦² à¦¯à§‡à¦Ÿà¦¾ à¦à¦–à¦¨à§‹ main.css-à¦ à¦†à¦›à§‡ à¦à¦¬à¦‚
   à¦¨à¦¿à¦šà§‡à¦° à¦¸à¦ à¦¿à¦• rule-à¦Ÿà¦¾à¦° à¦¸à¦¾à¦¥à§‡ conflict à¦•à¦°à¦¤à§‡ à¦ªà¦¾à¦°à§‡ â€” override à¦•à¦°à§‡ à¦¦à¦¿à¦šà§à¦›à¦¿
---------------------------------------------------------------- */

/* ---------------------------------------------------------------
   1. NAVBAR
---------------------------------------------------------------- */
@media (max-width: 992px) {
  .navbar .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 576px) {
  .navbar .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .navbar-brand {
    gap: 6px;
  }
}

/* ---------------------------------------------------------------
   2. LOGO CIRCLE (3D floating logo)
---------------------------------------------------------------- */
@media (max-width: 768px) {
  .logo-circle {
    height: 80px;
    width: 80px;
    margin-bottom: -40px;
  }
}

@media (max-width: 576px) {
  .logo-circle {
    height: 56px;
    width: 56px;
    margin-bottom: -24px;
    border-width: 1.5px;
  }
}

/* ---------------------------------------------------------------
   3. HERO SECTION
---------------------------------------------------------------- */
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0;
    text-align: center;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-title span {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-content .d-flex.gap-3 {
    margin-top: 20px !important;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  .btn-order {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    width: 100%;
  }
}

/* ---------------------------------------------------------------
   4. GALLERY SECTION
---------------------------------------------------------------- */
@media (max-width: 768px) {
  .gallery-section {
    margin-top: -40px;
    padding: 1rem 0;
  }
  .img-card {
    height: 160px;
  }
  .gallery-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-bottom: -20px;
  }
}

@media (max-width: 480px) {
  .slide-group {
    gap: 6px;
    padding: 6px;
  }
  .img-card {
    height: 130px;
  }
  .img-label {
    font-size: 11px;
    padding: 6px 8px;
  }
}

/* ---------------------------------------------------------------
   5. MENU HERO + BANNER (stack on mobile instead of side-by-side)
---------------------------------------------------------------- */
@media (max-width: 992px) {
  .premium-menu-page .menu-hero {
    padding: 20px;
  }
  .menu-hero-top {
    flex-direction: column;
  }
  .menu-hero-banner {
    width: 100%;
    margin: 16px 0 0;
    flex-direction: row;
    overflow-x: auto;
  }
  .menu-banner-card {
    margin: 0;
    min-width: 200px;
    flex-shrink: 0;
  }
  .premium-menu-page .menu-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .premium-menu-page .menu-hero {
    padding: 16px;
    border-radius: 20px;
  }
  .premium-menu-page .menu-hero h1 {
    font-size: 1.7rem;
  }
  .premium-menu-page .menu-hero p {
    font-size: 0.9rem;
  }
  .menu-search-row {
    flex-direction: column;
    align-items: stretch;
  }
  .menu-search-wrap {
    min-width: 0;
    width: 100%;
  }
  .price-filter-btn {
    width: 100%;
    justify-content: center;
  }
  .price-dropdown {
    width: 100%;
    left: 0;
    right: 0;
  }
}

/* ---------------------------------------------------------------
   6. CATEGORY PILLS
---------------------------------------------------------------- */
@media (max-width: 576px) {
  .category-heading {
    font-size: 18px;
    padding: 0 8px;
  }
  .premium-menu-page .category-pill,
  #category-pills-wrapper .category-pill {
    padding: 9px 14px;
    font-size: 12.5px;
  }
}

/* ---------------------------------------------------------------
   7. MENU CARDS
---------------------------------------------------------------- */
@media (max-width: 576px) {
  .premium-menu-page .menu-card .card-img-top,
  .menu-card .card-img-top {
    height: 160px;
  }
  .premium-menu-page .menu-card .card-body {
    padding: 14px;
  }
}

/* ---------------------------------------------------------------
   8. ABOUT / CHEF GRID
---------------------------------------------------------------- */
@media (max-width: 480px) {
  .about-grid-4 {
    grid-template-columns: 1fr !important;
  }
  .chef-grid .chef-card {
    width: 100%;
    max-width: 300px;
  }
  .about-image-box img,
  .about-image-box video {
    height: 220px !important;
  }
}

/* ---------------------------------------------------------------
   9. CONTACT PAGE
---------------------------------------------------------------- */
@media (max-width: 576px) {
  .contact-card {
    padding: 24px 16px;
  }
  .section-title-box {
    padding: 8px 20px;
    font-size: 1.15rem;
  }
  .contact-form-box {
    padding: 18px;
  }
}



/* ---------------------------------------------------------------
   11. AUTH / EDIT-PROFILE CARDS (pf-edit-*)
---------------------------------------------------------------- */
@media (max-width: 576px) {
  .pf-edit-wrapper {
    padding: 30px 0 50px;
  }
  .pf-edit-card {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .pf-edit-icon {
    width: 56px;
    height: 56px;
  }
  .pf-edit-icon svg {
    width: 22px;
    height: 22px;
  }
  .pf-edit-title {
    font-size: 1.3rem;
  }
}

/* ---------------------------------------------------------------
   12. TOAST ALERTS
---------------------------------------------------------------- */
@media (max-width: 480px) {
  .custom-toast-alert {
    padding: 12px 14px;
    font-size: 13.5px;
  }
}

/* ---------------------------------------------------------------
   13. GENERIC: prevent horizontal overflow on small screens
---------------------------------------------------------------- */
@media (max-width: 480px) {
  html, body {
    overflow-x: hidden;
  }
}





/* "Why Choose Grill Lab" section â€” à§ªà¦Ÿà¦¾ à¦•à¦¾à¦°à§à¦¡à§‡à¦° height à¦¸à¦¬à¦¸à¦®à¦¯à¦¼ à¦¸à¦®à¦¾à¦¨ à¦°à¦¾à¦–à¦¾ */
section.py-5.bg-light .row {
  align-items: stretch;
}

section.py-5.bg-light .col-6 {
  display: flex;
}

section.py-5.bg-light .col-6 > .p-3 {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}






/* =====================================================================
   RESPONSIVE FINAL FIX â€” Grill Lab
   à¦à¦‡ à¦ªà§à¦°à§‹ à¦«à¦¾à¦‡à¦²à¦Ÿà¦¾ main.css à¦à¦° à¦à¦•à¦¦à¦® à¦¶à§‡à¦·à§‡ à¦ªà§‡à¦¸à§à¦Ÿ à¦•à¦°à§à¦¨ (à¦¸à¦¬ à¦ªà§à¦°à¦¨à§‹ CSS à¦à¦° à¦ªà¦°à§‡)à¥¤
   à¦à¦Ÿà¦¾ à¦¸à¦¬ à¦¡à¦¿à¦­à¦¾à¦‡à¦¸à§‡ (iPhone SE à¦¥à§‡à¦•à§‡ iPad Pro / Surface / Fold à¦ªà¦°à§à¦¯à¦¨à§à¦¤)
   fluid à¦“ flex-based à¦²à¦œà¦¿à¦• à¦¦à¦¿à¦¯à¦¼à§‡ à¦•à¦¾à¦œ à¦•à¦°à§‡ â€” à¦¤à¦¾à¦‡ à¦•à§‹à¦¨à§‹ à¦¨à¦¿à¦°à§à¦¦à¦¿à¦·à§à¦Ÿ width-à¦
   à¦†à¦Ÿà¦•à§‡ à¦¥à¦¾à¦•à¦¾ magic-number bug à¦†à¦° à¦¹à¦¬à§‡ à¦¨à¦¾à¥¤
   ===================================================================== */

/* ---------------------------------------------------------------
   0. GLOBAL SAFETY NET
---------------------------------------------------------------- */
html, body {
  overflow-x: hidden;
  width: 100%;
}

img, video, table {
  max-width: 100%;
}

/* ---------------------------------------------------------------
   1. NAVBAR â€” fluid padding instead of fixed breakpoints
---------------------------------------------------------------- */
.navbar .container {
  padding-left: clamp(10px, 4vw, 66px);
  padding-right: clamp(10px, 2vw, 16px);
}

.navbar-brand {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  gap: clamp(6px, 1vw, 8px);
}

.logo-circle {
  height: clamp(50px, 10vw, 120px);
  width: clamp(50px, 10vw, 120px);
  margin-bottom: clamp(-40px, -6vw, -80px);
}

/* ---------------------------------------------------------------
   2. HERO SECTION â€” fluid, no fixed min-height traps
---------------------------------------------------------------- */
/* hero-à¦ à¦¶à§à¦§à§ à¦Ÿà§‡à¦•à§à¦¸à¦Ÿ+à¦²à§‹à¦—à§‹ à¦¥à¦¾à¦•à§‡ (à¦•à§‹à¦¨à§‹ carousel à¦¨à§‡à¦‡) â€” à¦¤à¦¾à¦‡ forced
   min-height:70-90vh à¦¬à¦¾à¦¦ à¦¦à¦¿à¦¯à¦¼à§‡ content-driven à¦°à¦¾à¦–à¦¾ à¦¹à¦²à§‹à¥¤ à¦à¦Ÿà¦¾à¦‡ à¦—à§à¦¯à¦¾à¦ª
   à¦¸à¦®à¦¸à§à¦¯à¦¾à¦° à¦†à¦¸à¦² à¦“ à¦à¦•à¦®à¦¾à¦¤à§à¦° à¦¸à¦®à¦¾à¦§à¦¾à¦¨, negative-margin hack à¦²à¦¾à¦—à¦¬à§‡ à¦¨à¦¾à¥¤ */
.hero-section {
  min-height: 0;
  padding: clamp(24px, 5vh, 60px) 0;
}

.hero-title {
  font-size: clamp(1.9rem, 6vw, 4rem);
}

.hero-title span {
  font-size: clamp(1.7rem, 6vw, 5rem);
}

.hero-content p {
  font-size: clamp(0.82rem, 1.6vw, 1rem);
  letter-spacing: 1px;
}

.hero-content .d-flex.gap-3 {
  margin-top: clamp(0px, 2vw, 12px) !important;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-order {
  padding: clamp(0.7rem, 2vw, 1rem) clamp(1.4rem, 4vw, 2.5rem);
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
}

@media (max-width: 480px) {
  .btn-order { width: 100%; }
}

/* ---------------------------------------------------------------
   3. GALLERY SECTION â€” negative-margin hack removed entirely,
   normal document flow spacing used instead (fixes the gap bug
   that changed unpredictably per phone)
---------------------------------------------------------------- */
/* hero à¦à¦–à¦¨ content-driven, à¦¤à¦¾à¦‡ compensation margin à¦†à¦° à¦¦à¦°à¦•à¦¾à¦° à¦¨à§‡à¦‡ â€”
   à¦à¦Ÿà¦¾ à¦à¦–à¦¨ à¦¸à¦¬ à¦¡à¦¿à¦­à¦¾à¦‡à¦¸à§‡ à¦¸à¦®à¦¾à¦¨à¦­à¦¾à¦¬à§‡ à¦•à¦¾à¦œ à¦•à¦°à¦¬à§‡, à¦†à¦²à¦¾à¦¦à¦¾ breakpoint hack à¦›à¦¾à¦¡à¦¼à¦¾à¦‡ */



.logo-circle-wrapper {
  perspective: 1000px !important;
  display: flex!important;
  justify-content: center!important;
  margin: 10px 0;
}


.gallery-section {
  margin-top: 0;
  padding: clamp(0.5rem, 3vw, 2rem) 0;
}

.slider-wrapper {
  width: min(680px, 94vw);
  margin: 0 auto;
}

.img-card {
  height: clamp(120px, 22vw, 220px);
}

.gallery-nav-btn {
  width: clamp(34px, 6vw, 42px);
  height: clamp(34px, 6vw, 42px);
  font-size: clamp(16px, 3vw, 22px);
  margin-bottom: 0 !important;   /* à¦†à¦—à§‡à¦° negative margin à¦¸à¦°à¦¾à¦¨à§‹ à¦¹à¦²à§‹ */
}

.img-label {
  font-size: clamp(10.5px, 1.8vw, 13px);
  padding: clamp(6px, 1.5vw, 10px) 8px;
}







/* ---------------------------------------------------------------
   5. MENU HERO + BANNER â€” negative-margin edge-bleed hack
   à¦¶à§à¦§à§ à¦¬à¦¡à¦¼ desktop à¦ à¦°à¦¾à¦–à¦¾ à¦¹à¦²à§‹, tablet/mobile à¦ normal flow
---------------------------------------------------------------- */
.menu-hero-top {
  flex-wrap: wrap;
}

@media (min-width: 1200px) {
  .menu-hero-banner {
    margin-top: -45px;
    margin-right: -45px;
    margin-bottom: -55px;
  }
}

@media (max-width: 1199.98px) {
  .menu-hero-top {
    flex-direction: column;
  }
  .menu-hero-banner {
    width: 100%;
    margin: 16px 0 0 !important;
    flex-direction: row;
    overflow-x: auto;
  }
  .menu-banner-card {
    margin: 0 10px 0 0;
    min-width: 200px;
    flex-shrink: 0;
  }
}

.premium-menu-page .menu-hero h1 {
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.premium-menu-page .menu-hero p {
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
}

.premium-menu-page .menu-hero {
  padding: clamp(16px, 4vw, 45px);
}

/* ---------------------------------------------------------------
   6. ABOUT / CHEF GRID â€” auto-fit, à¦•à§‹à¦¨à§‹ fixed column-count breakpoint à¦¦à¦°à¦•à¦¾à¦° à¦¨à§‡à¦‡
---------------------------------------------------------------- */
.about-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)) !important;
}

.chef-grid .chef-card {
  width: clamp(220px, 40vw, 270px);
}

.about-image-box img,
.about-image-box video {
  height: clamp(200px, 35vw, 360px) !important;
}

/* ---------------------------------------------------------------
   7. MENU SEARCH ROW / PRICE FILTER â€” fluid instead of hard break
---------------------------------------------------------------- */
@media (max-width: 576px) {
  .menu-search-row {
    flex-direction: column;
    align-items: stretch;
  }
  .price-dropdown {
    width: 100%;
    left: 0;
    right: 0;
  }
}

/* ---------------------------------------------------------------
   8. CARDS â€” fluid image height so tablets don't get an oddly
   tall/short crop
---------------------------------------------------------------- */
.menu-card .card-img-top,
.premium-menu-page .menu-card .card-img-top {
  height: clamp(150px, 22vw, 220px);
}




/* ---------------------------------------------------------------
   9c. STRAY BOTTOM GAP FIX â€” cookie-banner reserved space à¦¯à§‡à¦¨
   dismiss à¦•à¦°à¦¾à¦° à¦ªà¦°à§‡à¦“ à¦†à¦Ÿà¦•à§‡ à¦¨à¦¾ à¦¥à¦¾à¦•à§‡
---------------------------------------------------------------- */
body {
  padding-bottom: 0 !important; /* reserved space à¦¬à¦¾à¦¦ */
}

.cookie-banner {
  /* à¦¬à§à¦¯à¦¾à¦¨à¦¾à¦° à¦¨à¦¿à¦œà§‡ fixed/absolute, à¦¤à¦¾à¦‡ body à¦¤à§‡ à¦†à¦° à¦œà¦¾à¦¯à¦¼à¦—à¦¾ reserve à¦•à¦°à¦¾à¦° à¦¦à¦°à¦•à¦¾à¦° à¦¨à§‡à¦‡ */
}

/* ---------------------------------------------------------------
   9d. "WHY CHOOSE GRILL LAB" CARDS â€” 4à¦Ÿà¦¾ à¦•à¦¾à¦°à§à¦¡ height à¦…à¦¸à¦®à¦¾à¦¨ à¦¹à¦šà§à¦›à¦¿à¦²
   à¦•à¦¾à¦°à¦£: <div class="col-6 col-md-3"><div class="p-3">...
   à¦•à¦²à¦¾à¦® (.col-6) à¦¸à¦®à¦¾à¦¨ height à¦¹à¦²à§‡à¦“ à¦­à§‡à¦¤à¦°à§‡à¦° .p-3 div à¦¸à§‡à¦‡ height à¦¨à¦¿à¦šà§à¦›à¦¿à¦² à¦¨à¦¾à¥¤
   à¦«à¦¿à¦•à§à¦¸: child div-à¦•à§‡ à¦ªà§à¦°à§‹ column height à¦¨à¦¿à¦¤à§‡ à¦¬à¦¾à¦§à§à¦¯ à¦•à¦°à¦¾à¥¤
---------------------------------------------------------------- */


section.py-5.bg-light .col-6 {
  display: flex;
}

section.py-5.bg-light .col-6 > .p-3 {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ---------------------------------------------------------------
   14. ITEM DETAIL PAGE
---------------------------------------------------------------- */
.item-detail-img {
  margin-left: 0;              /* fixed 32px à¦¬à¦¾à¦¦ â€” à¦à¦–à¦¨ à¦¸à¦¬ à¦¸à§à¦•à§à¦°à¦¿à¦¨à§‡ center/flow-à¦ à¦ à¦¿à¦• à¦¥à¦¾à¦•à¦¬à§‡ */
  margin: 0 auto;
  max-height: clamp(200px, 40vw, 320px);
}

.item-detail-title {
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  word-break: break-word;
}

.item-price {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

/* badge/option button row â€” wrap à¦•à¦°à¦¬à§‡, overflow à¦•à¦°à¦¬à§‡ à¦¨à¦¾ */
.item-badge,
.item-option-btn {
  white-space: normal;
}

.item-form-label + div,
.d-flex:has(> .item-option-btn),
.d-flex:has(> .item-badge) {
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 576px) {
  .item-detail-title {
    text-align: center;
  }
  .item-price {
    text-align: center;
  }
  .item-qty-input {
    width: 70px;
  }
  .item-option-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* Drinks slider â€” à¦–à§à¦¬ à¦›à§‹à¦Ÿ à¦¸à§à¦•à§à¦°à¦¿à¦¨à§‡ card size à¦¸à¦¾à¦®à¦¾à¦¨à§à¦¯ à¦›à§‹à¦Ÿ */
@media (max-width: 400px) {
  .drink-slide-card {
    flex: 0 0 84px;
  }
  .drink-slide-img {
    width: 84px;
    height: 84px;
  }
}

/* Related items grid â€” auto-fit à¦¦à¦¿à¦¯à¦¼à§‡ à¦¯à§‡à¦•à§‹à¦¨à§‹ column count-à¦ à¦ à¦¿à¦• à¦¥à¦¾à¦•à¦¬à§‡ */
.related-item-card {
  height: 100%;
}

@media (max-width: 480px) {
  .related-item-img,
  .related-item-placeholder {
    height: 100px;
  }
}

/* ---------------------------------------------------------------
   9. FOLDABLE / VERY NARROW SCREENS (Galaxy Fold ~ 280-344px)
---------------------------------------------------------------- */
@media (max-width: 344px) {
  .hero-title { font-size: 1.6rem; }
  .hero-title span { font-size: 1.4rem; }
  .menu-banner-card { min-width: 160px; }
 
}







/* =====================================================================
   FOOTER â€” Grill Lab (CLEAN, DEDUPLICATED VERSION)
   ---------------------------------------------------------------------
   main.css à¦ à¦›à¦¡à¦¼à¦¿à¦¯à¦¼à§‡ à¦¥à¦¾à¦•à¦¾ footer à¦¸à¦‚à¦•à§à¦°à¦¾à¦¨à§à¦¤ à¦¸à¦¬ rule (à¦®à§‹à¦Ÿ à§© à¦¬à¦¾à¦° .footer,
   à§¨ à¦¬à¦¾à¦° footer *, à§¨ à¦¬à¦¾à¦° .footer-hours-table, à§¨ à¦¬à¦¾à¦° col-md-4 h6, à¦†à¦°
   layout à¦­à¦¾à¦™à¦¾ .footer .row { display:flex !important } à¦‡à¦¤à§à¦¯à¦¾à¦¦à¦¿)
   à¦®à§à¦›à§‡ à¦«à§‡à¦²à§‡ à¦à¦‡ à¦à¦•à¦Ÿà¦¾ à¦¬à§à¦²à¦• à¦¦à¦¿à¦¯à¦¼à§‡ à¦¬à¦¦à¦²à§‡ à¦¦à¦¿à¦¨à¥¤

   à¦•à§€ à¦¬à¦¦à¦²à¦¾à¦¨à§‹ à¦¹à¦²à§‹:
   - .footer .row { display:flex !important; justify-content:space-between }
     à¦à¦‡ rule à¦Ÿà¦¾à¦‡ à¦›à¦¿à¦² à¦†à¦¸à¦² à¦•à¦¾à¦°à¦£ Menu/Info à¦•à¦²à¦¾à¦® desktop-à¦à¦“ à¦¨à¦¿à¦šà§‡ à¦¨à§‡à¦®à§‡
     à¦¯à¦¾à¦“à¦¯à¦¼à¦¾à¦° â€” à¦à¦Ÿà¦¾ à¦ªà§à¦°à§‹à¦ªà§à¦°à¦¿ à¦¬à¦¾à¦¦ à¦¦à§‡à¦“à¦¯à¦¼à¦¾ à¦¹à¦¯à¦¼à§‡à¦›à§‡à¥¤ Bootstrap-à¦à¦° normal
     column grid (row/col-md-*) à¦¨à¦¿à¦œà§‡à¦‡ layout à¦¸à¦¾à¦®à¦²à¦¾à¦¬à§‡à¥¤
   - Opening Hours à¦Ÿà§‡à¦¬à¦¿à¦² centering à¦à¦–à¦¨ à¦¶à§à¦§à§ à¦Ÿà§‡à¦¬à¦¿à¦²à§‡à¦° à¦¨à¦¿à¦œà§‡à¦° à¦‰à¦ªà¦°
     (display:table + margin:auto) â€” à¦•à§‹à¦¨à§‹ wrapper à¦¬à¦¾ flex à¦²à¦¾à¦—à¦¬à§‡ à¦¨à¦¾,
     à¦¤à¦¾à¦‡ à¦ªà¦¾à¦¶à§‡à¦° column à¦—à§à¦²à§‹ disturb à¦¹à¦¬à§‡ à¦¨à¦¾à¥¤
   ===================================================================== */
/* =====================================================================
   FOOTER — Grill Lab (FINAL CLEAN VERSION)
   ===================================================================== */

.footer {
  background-color: #02070e;
  color: #ffffff;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  padding-top: 50px;
  padding-bottom: 20px;
}

.footer,
.footer *,
.footer .text-muted,
.footer .text-secondary,
.footer .text-body-secondary {
  color: #ffffff;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer i {
  color: #ffffff !important;
}

.footer .text-success i,
.footer i.text-success {
  color: #28a745 !important;
}

/* ---------- GRID: force bootstrap columns to behave ---------- */
.footer .row {
  display: flex !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

.footer .col-md-4,
.footer .col-md-2,
.footer .col-md-6 {
  box-sizing: border-box !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding: 24px 16px;
  position: relative;
}

@media (min-width: 744px) {
  .footer .col-md-4 {
    flex: 0 0 33.3333% !important;
    max-width: 33.3333% !important;
  }
  .footer .col-md-2 {
    flex: 0 0 16.6667% !important;
    max-width: 16.6667% !important;
  }
  .footer .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

/* column dividers on desktop */
@media (min-width: 992px) {
  .footer .col-md-4:not(:last-of-type)::before,
  .footer .col-md-2:not(:last-of-type)::before {
    content: '';
    position: absolute;
    top: 6px;
    right: 0;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 991.98px) {
  .footer .col-md-4,
  .footer .col-md-2 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
  }
  .footer .col-md-2:last-of-type {
    border-bottom: none;
  }
}

/* ---------- BRAND BLOCK ---------- */
.footer-logo {
  width: 35px !important;
  height: 35px !important;
  object-fit: contain !important;
  border-radius: 50%;
  border: 1px solid rgba(255, 195, 0, 0.4);
}

.footer-site-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffc300;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 8px;
  max-width: 320px;
}

@media (max-width: 991.98px) {
  .footer-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.site-address,
.site-phone {
  font-size: 0.85rem;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.site-address {
  margin-top: 12px;
}

/* ---------- SOCIAL LINKS ---------- */
.social-links {
  margin-top: 20px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 14px !important;
  width: 100%;
}

@media (max-width: 991.98px) {
  .social-links {
    justify-content: center !important;
  }
}

.social-links a {
  display: flex !important;
  align-items: center;
  color: #ffffff;
  font-size: 0.85rem;
  text-decoration: none !important;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  transition: all 0.25s ease;
}

.social-links a span {
  margin-left: 6px !important;
}

.social-links a:hover {
  color: #ffc300 !important;
  border-color: #ffc300;
  background: rgba(255, 195, 0, 0.08);
  transform: translateY(-2px);
}

/* ---------- HEADINGS (Opening Hours / Menu / Info) ---------- */
.footer-heading,
.col-md-4 h6,
.footer .col-md-2 h6 {
  font-size: 18px;
  font-weight: 700;
  color: #ffe100;
  text-decoration: none !important;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 16px;
  margin-top: 0;
}

.footer-heading::after,
.col-md-4 h6::after,
.footer .col-md-2 h6::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .footer .col-md-2 h6 {
    text-align: left;
  }
  .footer .col-md-2 h6::after {
    left: 0;
    transform: none;
  }
}

.footer-open-badge {
  display: block;
  text-align: center;
  margin-bottom: 12px;
}

.badge.bg-success,
.badge.bg-danger {
  border-radius: 50px;
  padding: 5px 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ---------- MENU / INFO LINKS ---------- */
.footer .col-md-2 ul {
  padding-left: 0 !important;
  margin: 0 !important;
}

.footer .col-md-2 li {
  list-style: none;
}

.footer-link {
  display: block;
  color: #cccccc;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-link:hover {
  color: #ffc300 !important;
  padding-left: 4px;
}

/* ---------- OPENING HOURS TABLE ---------- */
.footer-hours-table {
  display: table;
  margin: 0 auto;
  width: auto;
  max-width: 400px;
  font-size: 0.82rem;
  border-collapse: collapse;
  color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 195, 0, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.footer-hours-table td {
  padding: 7px 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: #ffffff;
  word-break: break-word;
  transition: background 0.2s;
}

.footer-hours-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.footer-hours-table tr.today-row td,
.footer .table .table-active td {
  background: rgba(255, 195, 0, 0.1) !important;
  color: #ffc300 !important;
  font-weight: 700;
}

.footer .table,
.footer .table td,
.footer .table th {
  background: none;
  color: #ffffff !important;
}

.footer table {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ---------- BOTTOM BAR ---------- */
.footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.15) !important;
  margin: 25px 0 0;
  opacity: 0.5;
}

.footer .row.py-3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 8px;
  font-size: 0.8rem;
  padding-top: 18px !important;
}

.footer .row.py-3 .text-muted {
  font-size: 0.8rem;
  color: #888888 !important;
}

@media (max-width: 767.98px) {
  .footer .row.py-3 {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer .row.py-3 > div {
    width: 100%;
    text-align: center !important;
  }
}

/* ---------- SMALL SCREENS ---------- */
@media (max-width: 400px) {
  .footer-hours-table td {
    padding: 6px 8px;
    font-size: 0.72rem;
  }
}






/* ===== GRILL LAB â€” HERO + LOGO + GALLERY FINAL RESPONSIVE FIX ===== */

/* hero à¦à¦° à¦­à§‡à¦¤à¦°à§‡à¦° à¦¸à¦¬ child à¦•à§‡ flex column à¦¬à¦¾à¦¨à¦¿à¦¯à¦¼à§‡ gap à¦¦à¦¿à¦¯à¦¼à§‡ spacing control â€”
   à¦à¦¤à§‡ Bootstrap à¦à¦° py-5 / mb-3 à¦†à¦° negative-margin hack à¦à¦° à¦¸à¦¾à¦¥à§‡ à¦†à¦° conflict à¦¹à¦¬à§‡ à¦¨à¦¾ */
.hero-content {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: clamp(2px, 1.8vw, 14px) !important;
}

.hero-content.py-5 {
  padding-top: clamp(1rem, 5vw, 3rem) !important;
  padding-bottom: clamp(0.2rem, 1.5vw, 0.8rem) !important;
}

.hero-title.mb-3,
.hero-title {
  margin: 0 !important;   /* gap à¦¦à¦¿à¦¯à¦¼à§‡à¦‡ spacing à¦¹à¦¬à§‡, à¦†à¦²à¦¾à¦¦à¦¾ margin à¦²à¦¾à¦—à¦¬à§‡ à¦¨à¦¾ */
  font-size: clamp(1.7rem, 6.5vw, 4rem) !important;
  line-height: 1.15 !important;
}

.hero-title span {
  font-size: clamp(1.5rem, 6.5vw, 5rem) !important;
}

.logo-circle-wrapper {
  margin: 0 !important;
}

.logo-circle {
  height: clamp(46px, 9vw, 120px) !important;
  width: clamp(46px, 9vw, 120px) !important;
  margin: 0 !important;   /* à¦ªà§à¦°à§‹à¦¨à§‹ negative margin-bottom hack à¦¬à¦¾à¦¤à¦¿à¦² */
}

.hero-subtitle {
  font-size: clamp(0.8rem, 2vw, 1rem) !important;
  margin: 0 !important;
}

/* Gallery â€” hero à¦à¦–à¦¨ content-driven à¦¹à¦“à¦¯à¦¼à¦¾à¦¯à¦¼ à¦¬à¦¡à¦¼ negative margin-top à¦†à¦° à¦¦à¦°à¦•à¦¾à¦° à¦¨à§‡à¦‡ */
.gallery-section {
  margin-top: clamp(-60px, -8vw, -25px) !important;
  padding: clamp(0.2rem, 1.5vw, 0.8rem) 0 !important;
}

/* ===== GALLERY CENTERING FIX ===== */
.gallery-section .container {
  padding-left: 12px !important;
  padding-right: 12px !important;
  display: flex;
  justify-content: center;
}

.gallery-section-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-wrapper {
  margin: 0 auto !important;
  width: min(680px, 94vw);
}


.order-cta-section {
  margin-top: clamp(-40px, -5vw, -15px) !important;
  padding-top: clamp(0.2rem, 1vw, 0.5rem) !important;
}



#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #154304;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}









.landing-order-type {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 2px;
  gap: 0px;
 
}

.landing-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  font-size: 15px;
  padding: 7px 16px;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.landing-order-btn i {
  font-size: 16px;
}

.landing-order-btn:hover {
  color: #fff;
}

.landing-order-btn.active {
  background: linear-gradient(135deg, #34160b, #35190d);
  color: #fff;

}

@media (max-width: 480px) {
  .landing-order-btn {
    padding: 9px 16px;
    font-size: 14px;
  }
}






.price-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-current {
  font-weight: 700;
  color: #ffffff;
}
.price-original {
  text-decoration: line-through;
  color: #fff704;
  font-size: 0.9em;
}
.discount-badge {
  background: #e02020;
  color: #fff;
  font-size: 0.75em;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}