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

/* ================================
   01. ROOT VARIABLES
================================ */
:root {
  --cbn-font-primary: 'Poppins', sans-serif;

  --cbn-color-primary: #5ced73;
  --cbn-color-primary-dark: #38d85a;
  --cbn-color-primary-light: #83f28f;

  --cbn-color-text: #1f2937;
  --cbn-color-text-muted: #6b7280;
  --cbn-color-heading: #111827;

  --cbn-color-white: #ffffff;
  --cbn-color-black: #000000;

  --cbn-color-bg: #f3f4f6;
  --cbn-color-bg-soft: #f8f9fb;
  --cbn-color-border: #d9dce1;
  --cbn-color-border-light: #e7e9ee;

  --cbn-shadow-sm: 0 2px 8px rgba(17, 24, 39, 0.04);
  --cbn-shadow-md: 0 8px 24px rgba(17, 24, 39, 0.08);

  --cbn-radius-sm: 8px;
  --cbn-radius-md: 12px;
  --cbn-radius-lg: 18px;
  --cbn-radius-xl: 24px;
  --cbn-radius-pill: 999px;

  --cbn-transition: all 0.3s ease;
  --cbn-container-padding: 16px;
}

/* ================================
   02. RESET / GLOBAL
================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--cbn-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cbn-color-text);
  background-color: var(--cbn-color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ================================
   03. TYPOGRAPHY
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-family: var(--cbn-font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cbn-color-heading);
}

h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--cbn-color-text-muted);
}

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

a:hover {
  text-decoration: none;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}

/* Optional section spacing */
section {
  position: relative;
}

/* Optional Bootstrap container refinement */
.container {
  padding-left: var(--cbn-container-padding);
  padding-right: var(--cbn-container-padding);
}

/* ================================
   04. HEADER WRAPPER
================================ */
/* Header */
.cbn-header-wrap {
  background-color: var(--cbn-color-bg);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.cbn-header-wrap.cbn-header-scrolled {
  box-shadow: var(--cbn-shadow-sticky);
}

/* Topbar */
.cbn-topbar {
  padding: 16px 0 14px;
}

/* Logo */
.cbn-logo-link {
  display: inline-flex;
  align-items: center;
}

.cbn-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Location */
.cbn-location-pill {
  width: 100%;
}

.cbn-location-btn {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--cbn-color-border);
  border-radius: var(--cbn-radius-pill);
  background-color: var(--cbn-color-bg);
  color: var(--cbn-color-text);
  font-size: 16px;
  font-weight: 500;
  box-shadow: none !important;
  transition: var(--cbn-transition);
}

.cbn-location-btn:hover,
.cbn-location-btn:focus,
.cbn-location-btn:active,
.cbn-location-btn.show {
  background-color: var(--cbn-color-white) !important;
  border-color: #cfd3da !important;
  color: var(--cbn-color-text) !important;
}

.cbn-location-menu {
  margin-top: 8px !important;
  padding: 8px;
  border: 1px solid var(--cbn-color-border-light);
  border-radius: var(--cbn-radius-md);
  background: #fff;
}

.cbn-location-menu .dropdown-item {
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
}

.cbn-location-menu .dropdown-item:hover {
  background: #f8f9fb;
  color: var(--cbn-color-primary);
}

/* USA Flag */
.cbn-flag-usa {
  width: 22px;
  height: 14px;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      to bottom,
      #b22234 0 2px,
      #ffffff 2px 4px
    );
}

.cbn-flag-usa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 55%;
  background-color: #3c3b6e;
}

/* Search */
.cbn-search-form {
  width: 100%;
}

.cbn-search-box {
  width: 100%;
  display: flex;
}

.cbn-search-input.form-control {
  height: 48px;
  border: 1px solid var(--cbn-color-border);
  border-right: 0;
  border-radius: var(--cbn-radius-pill) 0 0 var(--cbn-radius-pill);
  background-color: var(--cbn-color-bg);
  color: var(--cbn-color-text);
  font-size: 16px;
  padding: 0 18px;
  box-shadow: none;
}

.cbn-search-input.form-control::placeholder {
  color: var(--cbn-color-text-muted);
}

.cbn-search-input.form-control:focus {
  background-color: #fff;
  border-color: var(--cbn-color-border);
  box-shadow: none;
}

.cbn-search-btn {
  width: 54px;
  min-width: 54px;
  height: 48px;
  border: 0;
  border-radius: 0 var(--cbn-radius-pill) var(--cbn-radius-pill) 0;
  background: linear-gradient(180deg, var(--cbn-color-primary) 0%, var(--cbn-color-primary-dark) 100%);
  color: #fff;
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Desktop Top Actions */
.cbn-top-actions {
  min-height: 48px;
}

.cbn-action-item {
  min-width: 86px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #596173;
  text-align: center;
  transition: var(--cbn-transition);
}

.cbn-action-item:hover {
  color: var(--cbn-color-primary);
}

.cbn-action-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
  color: inherit;
}

.cbn-action-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

/* Bottom Nav */
.cbn-nav-border {
  border-top: 1px solid var(--cbn-color-border);
  background-color: var(--cbn-color-bg);
}

.cbn-navbar {
  min-height: 72px;
  padding: 10px 0;
}

.cbn-nav-left {
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.cbn-nav-left::-webkit-scrollbar {
  display: none;
}

.cbn-menu-toggle {
  width: 38px;
  height: 38px;
  color: var(--cbn-color-text);
  font-size: 28px;
  flex: 0 0 auto;
}

.cbn-nav-link {
  color: var(--cbn-color-text);
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
}

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

.cbn-app-btn {
  min-width: 166px;
  height: 52px;

  display: flex;              /* important */
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */

  padding: 0 28px;
  border: 0;
  border-radius: 10px;

  background: linear-gradient(180deg, var(--cbn-color-primary) 0%, var(--cbn-color-primary-dark) 100%);
  color: #fff;

  font-size: 17px;
  font-weight: 700;
  text-align: center;         /* fallback */
  line-height: 1;             /* extra clean */
}

.cbn-app-btn:hover {
  color: #fff;
}

/* Mobile Bottom Fixed Bar */
.cbn-mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #ffffff;
  border-top: 1px solid #dcdfe5;
  box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
  animation: cbnBottomBarUp 0.45s ease;
}

.cbn-mobile-bottom-bar__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #596173;
  text-align: center;
  transition: var(--cbn-transition);
}

.cbn-mobile-bottom-bar__item i {
  font-size: 22px;
  line-height: 1;
}

.cbn-mobile-bottom-bar__item span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.cbn-mobile-bottom-bar__item:hover,
.cbn-mobile-bottom-bar__item.active {
  color: var(--cbn-color-primary);
}

/* Animations */
@keyframes cbnBottomBarUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes cbnHeaderFadeDown {
  from {
    transform: translateY(-12px);
    opacity: 0.88;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tablet + Mobile */
@media (max-width: 991.98px) {
  body {
    padding-bottom: 78px;
  }

  .cbn-header-wrap {
    animation: cbnHeaderFadeDown 0.35s ease;
  }

  .cbn-topbar {
    padding: 12px 0 14px;
  }

  .cbn-logo-img {
    height: 34px;
  }

  .cbn-location-btn {
    height: 44px;
    font-size: 15px;
    padding: 0 14px;
  }

  .cbn-search-input.form-control {
    height: 46px;
    font-size: 15px;
  }

  .cbn-search-btn {
    height: 46px;
    width: 52px;
    min-width: 52px;
    font-size: 20px;
  }

  .cbn-navbar {
    min-height: auto;
    padding: 10px 0;
  }

  .cbn-nav-link {
    font-size: 15px;
  }
}

/* Mobile app-like layout */
@media (max-width: 767.98px) {
  .cbn-header-wrap {
    background: rgba(243, 243, 243, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--cbn-shadow-mobile);
  }

  .cbn-topbar .row {
    row-gap: 12px !important;
  }

  .cbn-logo-img {
    height: 32px;
  }

  .cbn-location-pill {
    width: 100%;
  }

  .cbn-location-btn {
    height: 42px;
    font-size: 15px;
    padding: 0 14px;
  }

  .cbn-search-form {
    width: 100% !important;
    flex: 0 0 100%;
  }

  .cbn-search-box {
    width: 100%;
  }

  .cbn-search-input.form-control {
    width: 100%;
    height: 46px;
    font-size: 15px;
    background: #fff;
  }

  .cbn-search-btn {
    height: 46px;
  }

  .cbn-nav-border {
    margin-top: 2px;
  }

  .cbn-menu-toggle {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }

  .cbn-nav-left {
    gap: 14px !important;
    padding-bottom: 2px;
  }
}

/* ================================
   HERO SLIDER
================================ */
.cbn-hero-slider-section {
  padding: 0 0 26px;
  background-color: #f3f3f3;
}

.cbn-hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.cbn-hero-carousel-inner {
  border-radius: 0;
}

.cbn-hero-slide {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.cbn-hero-slide-img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}

/* ================================
   CONTROLS
================================ */
.cbn-hero-control {
  width: 68px;
  opacity: 1;
}

.cbn-hero-control-prev {
  justify-content: flex-start;
  padding-left: 18px;
}

.cbn-hero-control-next {
  justify-content: flex-end;
  padding-right: 18px;
}

.cbn-hero-control-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(106, 23, 137, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cbn-hero-control:hover .cbn-hero-control-icon {
  background-color: rgba(106, 23, 137, 0.4);
  transform: scale(1.06);
}

/* ================================
   INDICATORS
================================ */
.cbn-hero-indicators {
  bottom: 12px;
  margin-bottom: 0;
  gap: 8px;
}

.cbn-hero-indicators [data-bs-target] {
  width: 24px;
  height: 7px;
  border: 0;
  border-radius: 0;
  margin: 0;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: all 0.3s ease;
}

.cbn-hero-indicators .active {
  width: 26px;
  background-color: #ffffff;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1199.98px) {
  .cbn-hero-slide-img {
    height: 250px;
  }
}

@media (max-width: 991.98px) {
  .cbn-hero-slide-img {
    height: 240px;
  }

  .cbn-hero-control {
    width: 54px;
  }

  .cbn-hero-control-prev {
    padding-left: 10px;
  }

  .cbn-hero-control-next {
    padding-right: 10px;
  }
}

@media (max-width: 767.98px) {
  .cbn-hero-slide-img {
    height: 180px;
  }

  .cbn-hero-control-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .cbn-hero-indicators {
    bottom: 8px;
    gap: 6px;
  }

  .cbn-hero-indicators [data-bs-target] {
    width: 18px;
    height: 6px;
  }
}

@media (max-width: 575.98px) {
  .cbn-hero-slide-img {
    height: 150px;
  }
}

/* =========================
   Categories Section
========================= */
.cbn-categories-section {
  padding: 40px 0 52px;
  background-color: #f3f3f3;
}

.cbn-categories-wrap {
  width: 100%;
}

.cbn-categories-title {
  margin: 0 0 34px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #1d2a39;
  letter-spacing: -0.3px;
}

/* =========================
   Categories Layout
========================= */
.cbn-categories-list {
  gap: 24px 18px;
}

.cbn-category-item {
  flex: 0 0 auto;
}

.cbn-category-link {
  min-width: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.cbn-category-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbn-category-icon img {
  max-width: 58px;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.cbn-category-text {
  display: block;
  max-width: 190px;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 500;
  color: #000000;
  transition: all 0.3s ease;
}

/* Hover */
.cbn-category-link:hover .cbn-category-text {
  color: #38d85a;
}

.cbn-category-link:hover .cbn-category-icon {
  transform: translateY(-2px);
}

/* Active */
.cbn-category-link-active .cbn-category-text {
  color: #38d85a;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1399.98px) {
  .cbn-category-link {
    min-width: 118px;
  }

  .cbn-category-text {
    max-width: 170px;
    font-size: 16px;
  }
}

@media (max-width: 1199.98px) {
  .cbn-categories-section {
    padding: 36px 0 46px;
  }

  .cbn-categories-title {
    margin-bottom: 28px;
    font-size: 28px;
  }

  .cbn-categories-list {
    gap: 22px 16px;
  }

  .cbn-category-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
  }

  .cbn-category-icon img {
    max-width: 54px;
    max-height: 54px;
  }

  .cbn-category-text {
    font-size: 16px;
    max-width: 155px;
  }
}

@media (max-width: 991.98px) {
  .cbn-categories-list {
    justify-content: center !important;
    gap: 26px 18px;
  }

  .cbn-category-link {
    min-width: 110px;
  }

  .cbn-category-text {
    font-size: 15px;
    max-width: 140px;
  }
}

@media (max-width: 767.98px) {
  .cbn-categories-section {
    padding: 30px 0 38px;
  }

  .cbn-categories-title {
    margin-bottom: 24px;
    font-size: 24px;
  }

  .cbn-category-link {
    min-width: 96px;
  }

  .cbn-category-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }

  .cbn-category-icon img {
    max-width: 46px;
    max-height: 46px;
  }

  .cbn-category-text {
    font-size: 14px;
    max-width: 120px;
  }
}

@media (max-width: 575.98px) {
  .cbn-categories-list {
    gap: 22px 14px;
  }

  .cbn-category-link {
    min-width: 88px;
  }

  .cbn-category-text {
    font-size: 13px;
    max-width: 105px;
  }
}

.cbn-food-offers-section {
  background: #f3f3f3;
}

.cbn-food-offers-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1e2a3a;
}

.cbn-food-offers-slider {
  overflow: hidden;
  padding-bottom: 28px;
}

.cbn-food-offers-slider .swiper-slide {
  height: auto;
}

.cbn-food-card {
  position: relative;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
}

.cbn-food-card-media {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.cbn-food-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 22, 65, 0.85) 0%, rgba(24, 22, 65, 0.25) 45%, rgba(24, 22, 65, 0.02) 100%);
  z-index: 1;
}

.cbn-food-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 10px;
  background: #38d85a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cbn-food-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 18px 16px 18px;
}

.cbn-food-card-title {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
}

.cbn-food-card-price-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cbn-food-card-price {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.cbn-food-card-old-price {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  font-weight: 500;
  text-decoration: line-through;
}

.cbn-food-card-save {
  padding: 4px 10px;
  border-radius: 999px;
  background: #19c43b;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.cbn-food-slider-pagination {
  position: static;
  margin-top: 14px;
  text-align: center;
}

.cbn-food-slider-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 6px;
  border-radius: 0;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 4px !important;
}

.cbn-food-slider-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #38d85a;
}

@media (max-width: 991.98px) {
  .cbn-food-offers-title {
    font-size: 28px;
  }

  .cbn-food-card {
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .cbn-food-offers-title {
    font-size: 24px;
  }

  .cbn-food-card {
    height: 260px;
  }

  .cbn-food-card-title {
    font-size: 15px;
  }

  .cbn-food-card-price {
    font-size: 16px;
  }

  .cbn-food-card-old-price {
    font-size: 14px;
  }

  .cbn-food-card-save {
    font-size: 12px;
  }
}


.cbn-best-sellers-section {
  background: #f3f3f3;
}

.cbn-best-sellers-head {
  max-width: 900px;
}

.cbn-best-sellers-title {
  margin: 0 0 10px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #1d2a39;
}

.cbn-best-sellers-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #8b93a1;
}

.cbn-best-sellers-btn {
  min-width: 108px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid #b9a6c5;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b2e67;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cbn-best-sellers-btn:hover {
  background: #38d85a;
  border-color: #38d85a;
  color: #fff;
}

.cbn-best-sellers-slider {
  overflow: hidden;
  padding-bottom: 28px;
}

.cbn-best-sellers-slider .swiper-slide {
  height: auto;
}

.cbn-best-card {
  height: 100%;
}

.cbn-best-card-img-wrap {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.cbn-best-card-img {
  width: 100%;
  height: 196px;
  display: block;
  object-fit: cover;
}

.cbn-best-card-badge {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 8px;
  background: #38d85a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.cbn-best-card-body {
  padding: 14px 2px 0;
}

.cbn-best-card-meta {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: #9a99a8;
}

.cbn-best-card-location,
.cbn-best-card-sold {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cbn-best-card-title {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
}

.cbn-best-card-title a {
  color: #33383f;
  text-decoration: none;
}

.cbn-best-card-title a:hover {
  color: #38d85a;
}

.cbn-best-card-price-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.cbn-best-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #353b43;
}

.cbn-best-card-old-price {
  font-size: 15px;
  font-weight: 500;
  color: #a1a7b3;
  text-decoration: line-through;
}

.cbn-best-card-save {
  padding: 4px 9px;
  border-radius: 999px;
  background: #17bf38;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.cbn-best-sellers-pagination {
  position: static;
  margin-top: 14px;
  text-align: center;
}

.cbn-best-sellers-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 6px;
  border-radius: 0;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 4px !important;
}

.cbn-best-sellers-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #38d85a;
}

@media (max-width: 1199.98px) {
  .cbn-best-card-img {
    height: 180px;
  }
}

@media (max-width: 991.98px) {
  .cbn-best-sellers-title {
    font-size: 28px;
  }

  .cbn-best-card-title {
    font-size: 17px;
  }

  .cbn-best-card-img {
    height: 170px;
  }
}

@media (max-width: 767.98px) {
  .cbn-best-sellers-title {
    font-size: 24px;
  }

  .cbn-best-sellers-desc {
    font-size: 14px;
  }

  .cbn-best-card-img {
    height: 150px;
  }

  .cbn-best-card-meta {
    font-size: 12px;
  }

  .cbn-best-card-title {
    font-size: 16px;
  }

  .cbn-best-card-price {
    font-size: 16px;
  }

  .cbn-best-card-old-price {
    font-size: 14px;
  }
}

.cbn-restaurant-showcase-section {
  background: #f3f3f3;
}

/* head */
.cbn-restaurant-showcase-head {
  max-width: 920px;
}

.cbn-restaurant-showcase-title {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: #1d2a39;
}

.cbn-restaurant-showcase-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #8e95a2;
}

.cbn-restaurant-showcase-btn {
  min-width: 108px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid #c8b8d3;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #56366c;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cbn-restaurant-showcase-btn:hover {
  background: #38d85a;
  border-color: #38d85a;
  color: #fff;
}

/* featured slider */
.cbn-featured-restaurants-slider,
.cbn-restaurant-deals-slider {
  overflow: hidden;
  padding-bottom: 28px;
}

.cbn-featured-restaurants-slider .swiper-slide,
.cbn-restaurant-deals-slider .swiper-slide {
  height: auto;
}

.cbn-featured-restaurant-v2 {
  display: block;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
  transition: all 0.3s ease;
}

.cbn-featured-restaurant-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.10);
}

.cbn-featured-restaurant-v2__image-wrap {
  position: relative;
  height: 185px;
  overflow: hidden;
}

.cbn-featured-restaurant-v2__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cbn-featured-restaurant-v2__content {
  padding: 16px 16px 15px;
}

.cbn-featured-restaurant-v2__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  color: #222b36;
}

.cbn-featured-restaurant-v2__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cbn-featured-restaurant-v2__price {
  font-size: 16px;
  font-weight: 700;
  color: #38d85a;
}

.cbn-featured-restaurant-v2__tag {
  padding: 5px 10px;
  border-radius: 999px;
 background: #cefad0;;
  color: #065f46;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

/* deals slider */
.cbn-restaurant-deal-v2 {
  height: 100%;
}

.cbn-restaurant-deal-v2__image-wrap {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.cbn-restaurant-deal-v2__image {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
}

.cbn-restaurant-deal-v2__badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 8px;
  background: #38d85a;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.cbn-restaurant-deal-v2__body {
  padding: 12px 2px 0;
}

.cbn-restaurant-deal-v2__meta {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: #979cab;
}

.cbn-restaurant-deal-v2__brand,
.cbn-restaurant-deal-v2__sold {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cbn-restaurant-deal-v2__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.cbn-restaurant-deal-v2__title a {
  color: #343942;
  text-decoration: none;
}

.cbn-restaurant-deal-v2__title a:hover {
  color: #38d85a;
}

.cbn-restaurant-deal-v2__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.cbn-restaurant-deal-v2__price {
  font-size: 18px;
  font-weight: 700;
  color: #313843;
}

.cbn-restaurant-deal-v2__old-price {
  font-size: 15px;
  font-weight: 500;
  color: #a0a7b3;
  text-decoration: line-through;
}

.cbn-restaurant-deal-v2__save {
  padding: 4px 9px;
  border-radius: 999px;
  background: #18bf39;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* pagination */
.cbn-featured-restaurants-pagination,
.cbn-restaurant-deals-pagination {
  position: static;
  margin-top: 14px;
  text-align: center;
}

.cbn-featured-restaurants-pagination .swiper-pagination-bullet,
.cbn-restaurant-deals-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 6px;
  border-radius: 0;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 4px !important;
}

.cbn-featured-restaurants-pagination .swiper-pagination-bullet-active,
.cbn-restaurant-deals-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #38d85a;
}

/* responsive */
@media (max-width: 991.98px) {
  .cbn-restaurant-showcase-title {
    font-size: 28px;
  }

  .cbn-featured-restaurant-v2__title {
    font-size: 20px;
  }

  .cbn-restaurant-deal-v2__title {
    font-size: 17px;
  }

  .cbn-featured-restaurant-v2__image-wrap {
    height: 170px;
  }

  .cbn-restaurant-deal-v2__image {
    height: 190px;
  }
}

@media (max-width: 767.98px) {
  .cbn-restaurant-showcase-title {
    font-size: 24px;
  }

  .cbn-restaurant-showcase-desc {
    font-size: 14px;
  }

  .cbn-featured-restaurant-v2__image-wrap {
    height: 155px;
  }

  .cbn-featured-restaurant-v2__content {
    padding: 14px;
  }

  .cbn-featured-restaurant-v2__title {
    font-size: 18px;
  }

  .cbn-restaurant-deal-v2__image {
    height: 160px;
  }

  .cbn-restaurant-deal-v2__title {
    font-size: 16px;
  }

  .cbn-restaurant-deal-v2__meta {
    font-size: 12px;
  }

  .cbn-restaurant-deal-v2__price {
    font-size: 16px;
  }

  .cbn-restaurant-deal-v2__old-price {
    font-size: 14px;
  }
}

.cbn-featured-ad-section {
  background-color: #f3f3f3;
}

.cbn-featured-ad-banner {
  position: relative;
  display: block;
  width: 100%;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.cbn-featured-ad-banner__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.cbn-featured-ad-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 16, 60, 0.82) 0%,
    rgba(20, 16, 60, 0.58) 38%,
    rgba(20, 16, 60, 0.18) 100%
  );
}

.cbn-featured-ad-banner__content {
  position: absolute;
  top: 50%;
  left: 48px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 520px;
}

.cbn-featured-ad-banner__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #38d85a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cbn-featured-ad-banner__title {
  margin: 0 0 12px;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
}

.cbn-featured-ad-banner__text {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cbn-featured-ad-banner__btn {
  min-width: 148px;
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #1f2430;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cbn-featured-ad-banner:hover .cbn-featured-ad-banner__btn {
  background: #38d85a;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .cbn-featured-ad-banner,
  .cbn-featured-ad-banner__img {
    min-height: 280px;
    height: 280px;
  }

  .cbn-featured-ad-banner__content {
    left: 32px;
    max-width: 430px;
  }

  .cbn-featured-ad-banner__title {
    font-size: 38px;
  }

  .cbn-featured-ad-banner__text {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .cbn-featured-ad-banner,
  .cbn-featured-ad-banner__img {
    min-height: 240px;
    height: 240px;
  }

  .cbn-featured-ad-banner__content {
    left: 22px;
    right: 22px;
    max-width: 100%;
  }

  .cbn-featured-ad-banner__tag {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .cbn-featured-ad-banner__title {
    font-size: 28px;
  }

  .cbn-featured-ad-banner__text {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.5;
  }

  .cbn-featured-ad-banner__btn {
    min-width: 128px;
    height: 42px;
    font-size: 14px;
  }
}


.cbn-offer-tags-section {
  background-color: #f3f3f3;
  padding-bottom: 42px !important;
}

.cbn-offer-tags-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.cbn-offer-tags-indicator {
  width: 18px;
  height: 4px;
  background: #d7d7d7;
  display: inline-block;
}

.cbn-offer-tags-indicator--active {
  background: #38d85a;
}

.cbn-offer-tags-head {
  margin-bottom: 18px;
}

.cbn-offer-tags-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #1f2a3a;
}

.cbn-offer-tags-wrap {
  gap: 8px;
}

.cbn-offer-tag-btn {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid #d9dce2;
  border-radius: 8px;
  background: #f7f7f8;
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cbn-offer-tag-btn:hover {
  color: #38d85a;
  border-color: #c9a4d7;
  background: #ffffff;
}

@media (max-width: 991.98px) {
  .cbn-offer-tags-title {
    font-size: 18px;
  }

  .cbn-offer-tag-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 767.98px) {
  .cbn-offer-tags-section {
    padding-top: 28px !important;
    padding-bottom: 34px !important;
  }

  .cbn-offer-tags-indicators {
    margin-bottom: 16px;
  }

  .cbn-offer-tags-head {
    margin-bottom: 14px;
  }

  .cbn-offer-tags-title {
    font-size: 17px;
  }

  .cbn-offer-tag-btn {
    min-height: 38px;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 7px;
  }
}

.cbn-how-works-section {
  position: relative;
  overflow: hidden;
background: linear-gradient(180deg, #5ced73 0%, #38d85a 100%);
  padding-top: 72px !important;
  padding-bottom: 72px !important;
}

.cbn-how-works-title {
  margin: 0 0 56px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

/* abstract bg shapes */
.cbn-how-works-shape {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  pointer-events: none;
}

.cbn-how-works-shape--one {
  width: 760px;
  height: 320px;
  top: -120px;
  left: -120px;
  transform: rotate(-14deg);
}

.cbn-how-works-shape--two {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -90px;
}

.cbn-how-works-shape--three {
  width: 940px;
  height: 340px;
  bottom: -160px;
  left: 50%;
  transform: translateX(-50%) rotate(12deg);
}

/* layout */
.cbn-how-works-steps {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  margin-bottom: 54px;
}

.cbn-how-works-step {
  width: 100%;
  max-width: 300px;
  position: relative;
}

.cbn-how-works-step-top {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.cbn-how-works-step-number {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #38d85a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 2;
}

.cbn-how-works-step-heading {
  margin-left: -12px;
  min-height: 46px;
  padding: 10px 20px 10px 28px;
  border-radius: 8px;
  background: #0a0077;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.cbn-how-works-step-text {
  margin: 0;
  padding-left: 88px;
  max-width: 260px;
  font-size: 16px;
  line-height: 1.45;
  color: #ffffff;
}

/* arrows */
.cbn-how-works-arrow {
  width: 220px;
  flex: 0 0 220px;
  position: relative;
  top: -34px;
}

.cbn-how-works-arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

/* button */
.cbn-how-works-btn {
  min-width: 180px;
  height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #38d85a;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.cbn-how-works-btn:hover {
  background: #0a0077;
  color: #ffffff;
}

/* xl */
@media (max-width: 1399.98px) {
  .cbn-how-works-title {
    font-size: 42px;
  }

  .cbn-how-works-step-heading {
    font-size: 20px;
  }

  .cbn-how-works-step-number {
    width: 66px;
    height: 66px;
    min-width: 66px;
    font-size: 34px;
  }

  .cbn-how-works-step-text {
    padding-left: 80px;
  }

  .cbn-how-works-arrow {
    width: 180px;
    flex: 0 0 180px;
  }
}

/* lg */
@media (max-width: 1199.98px) {
  .cbn-how-works-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .cbn-how-works-title {
    margin-bottom: 46px;
    font-size: 38px;
  }

  .cbn-how-works-steps {
    gap: 14px;
    margin-bottom: 42px;
  }

  .cbn-how-works-step {
    max-width: 270px;
  }

  .cbn-how-works-step-heading {
    font-size: 18px;
    min-height: 42px;
    padding: 10px 16px 10px 24px;
  }

  .cbn-how-works-step-number {
    width: 62px;
    height: 62px;
    min-width: 62px;
    font-size: 30px;
  }

  .cbn-how-works-step-text {
    padding-left: 76px;
    font-size: 15px;
  }

  .cbn-how-works-arrow {
    width: 120px;
    flex: 0 0 120px;
    top: -24px;
  }

  .cbn-how-works-btn {
    min-width: 166px;
    height: 52px;
    font-size: 20px;
  }
}

/* md */
@media (max-width: 991.98px) {
  .cbn-how-works-title {
    font-size: 34px;
  }

  .cbn-how-works-steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 34px;
  }

  .cbn-how-works-step {
    max-width: 520px;
  }

  .cbn-how-works-step-text {
    max-width: 100%;
  }

  .cbn-how-works-arrow {
    display: none;
  }
}

/* sm */
@media (max-width: 767.98px) {
  .cbn-how-works-section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .cbn-how-works-title {
    margin-bottom: 34px;
    font-size: 30px;
  }

  .cbn-how-works-step {
    max-width: 100%;
  }

  .cbn-how-works-step-top {
    align-items: center;
  }

  .cbn-how-works-step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 26px;
  }

  .cbn-how-works-step-heading {
    font-size: 17px;
    min-height: 40px;
    padding: 9px 14px 9px 20px;
    white-space: normal;
  }

  .cbn-how-works-step-text {
    padding-left: 70px;
    font-size: 14px;
    line-height: 1.5;
  }

  .cbn-how-works-btn {
    min-width: 150px;
    height: 48px;
    font-size: 18px;
  }
}

/* xs */
@media (max-width: 479.98px) {
  .cbn-how-works-title {
    font-size: 26px;
  }

  .cbn-how-works-step-top {
    flex-wrap: nowrap;
  }

  .cbn-how-works-step-heading {
    font-size: 16px;
  }

  .cbn-how-works-step-text {
    padding-left: 0;
    margin-top: 10px;
    max-width: 100%;
  }

  .cbn-how-works-step {
    padding: 0 4px;
  }
}

.cbn-achievements-section {
  background-color: #f3f3f3;
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.cbn-achievements-head {
  max-width: 760px;
  margin: 0 auto 42px;
}

.cbn-achievements-title {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: #111827;
}

.cbn-achievements-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #8691a2;
}

.cbn-achievements-stats {
  background: transparent;
}

.cbn-achievements-stat-box {
  text-align: center;
  padding: 10px 28px;
}

.cbn-achievements-stat-box--border {
  border-left: 1px solid #dddddf;
}

.cbn-achievements-stat-number {
  margin: 0 0 8px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: #38d85a;
  letter-spacing: -0.8px;
}

.cbn-achievements-stat-label {
  font-size: 16px;
  line-height: 1.5;
  color: #8190a3;
}

@media (max-width: 1199.98px) {
  .cbn-achievements-stat-number {
    font-size: 48px;
  }
}

@media (max-width: 991.98px) {
  .cbn-achievements-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .cbn-achievements-head {
    margin-bottom: 34px;
  }

  .cbn-achievements-title {
    font-size: 30px;
  }

  .cbn-achievements-desc {
    font-size: 16px;
  }

  .cbn-achievements-stat-number {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .cbn-achievements-title {
    font-size: 26px;
  }

  .cbn-achievements-desc {
    font-size: 15px;
  }

  .cbn-achievements-stat-box {
    padding: 16px 10px;
  }

  .cbn-achievements-stat-box--border {
    border-left: 0;
    border-top: 1px solid #dddddf;
    margin-top: 10px;
    padding-top: 26px;
  }

  .cbn-achievements-stat-number {
    font-size: 34px;
  }

  .cbn-achievements-stat-label {
    font-size: 15px;
  }
}
/* Footer Wrapper */
.cbn-site-footer {
  background-color: var(--cbn-color-bg);
  padding-top: 48px;
  padding-bottom: 28px;
}
.cbn-footer-brand__logo-wrap {
  display: inline-block;
  margin-bottom: 22px;
}

.cbn-footer-brand__logo-img {
  height: 99px;
  width: auto;
  display: block;
}
/* Newsletter */
.cbn-footer-newsletter {
  background: linear-gradient(90deg, var(--cbn-color-primary) 0%, #38d85a 100%);
  border-radius: 32px;
  padding: 38px 42px;
  margin-bottom: 56px;
}

.cbn-footer-newsletter__title {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--cbn-color-white);
}

.cbn-footer-newsletter__text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.cbn-footer-newsletter__input.form-control {
  height: 68px;
  border: 0;
  border-radius: 18px;
  background: var(--cbn-color-white);
  color: #4c596c;
  font-size: 17px;
  font-weight: 500;
  padding: 0 22px;
  box-shadow: none;
}

.cbn-footer-newsletter__input.form-control::placeholder {
  color: #6b7788;
}

.cbn-footer-newsletter__input.form-control:focus {
  box-shadow: none;
}

.cbn-footer-newsletter__btn {
  height: 68px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  color: var(--cbn-color-primary);
  font-size: 18px;
  font-weight: 700;
  transition: var(--cbn-transition);
}

.cbn-footer-newsletter__btn:hover {
  background: #ffffff;
  color: var(--cbn-color-primary);
}

/* Footer Main */
.cbn-footer-main {
  padding-bottom: 34px;
}

.cbn-footer-brand__logo {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--cbn-color-primary);
}

.cbn-footer-brand__text {
  max-width: 510px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--cbn-color-text);
}

.cbn-footer-links-box__title {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--cbn-color-heading);
}

.cbn-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cbn-footer-links-list li + li {
  margin-top: 14px;
}

.cbn-footer-links-list a {
  font-size: 17px;
  line-height: 1.5;
  color: var(--cbn-color-text);
  text-decoration: none;
  transition: var(--cbn-transition);
}

.cbn-footer-links-list a:hover {
  color: var(--cbn-color-primary);
}

/* Social */
.cbn-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cbn-footer-socials__link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ececef;
  color: var(--cbn-color-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  transition: var(--cbn-transition);
}

.cbn-footer-socials__link:hover {
  background: var(--cbn-color-primary);
  color: var(--cbn-color-white);
  transform: translateY(-2px);
}

/* Bottom */
.cbn-footer-bottom {
  border-top: 1px solid #d6dbe3;
  padding-top: 20px;
}

.cbn-footer-bottom__text {
  font-size: 15px;
  line-height: 1.5;
  color: #677588;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .cbn-footer-newsletter {
    padding: 32px 34px;
    margin-bottom: 48px;
  }

  .cbn-footer-newsletter__title {
    font-size: 34px;
  }

  .cbn-footer-brand__logo {
    font-size: 48px;
  }

  .cbn-footer-brand__text {
    font-size: 17px;
  }
}

@media (max-width: 991.98px) {
  .cbn-site-footer {
    padding-top: 40px;
  }

  .cbn-footer-newsletter {
    padding: 28px 26px;
    border-radius: 26px;
    margin-bottom: 42px;
  }

  .cbn-footer-newsletter__title {
    font-size: 30px;
  }

  .cbn-footer-newsletter__text {
    font-size: 16px;
  }

  .cbn-footer-newsletter__input.form-control,
  .cbn-footer-newsletter__btn {
    height: 60px;
    font-size: 16px;
  }

  .cbn-footer-brand__logo {
    font-size: 44px;
    margin-bottom: 18px;
  }

  .cbn-footer-links-box__title {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .cbn-footer-links-list a {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .cbn-site-footer {
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .cbn-footer-newsletter {
    padding: 24px 18px;
    border-radius: 22px;
    margin-bottom: 36px;
  }

  .cbn-footer-newsletter__title {
    font-size: 26px;
  }

  .cbn-footer-newsletter__text {
    font-size: 15px;
  }

  .cbn-footer-newsletter__input.form-control,
  .cbn-footer-newsletter__btn {
    height: 54px;
    border-radius: 14px;
    font-size: 15px;
  }

  .cbn-footer-brand__logo {
    font-size: 38px;
  }

  .cbn-footer-brand__text {
    font-size: 16px;
  }

  .cbn-footer-main {
    padding-bottom: 28px;
  }

  .cbn-footer-links-box__title {
    font-size: 17px;
  }

  .cbn-footer-links-list a {
    font-size: 15px;
  }

  .cbn-footer-socials__link {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .cbn-footer-bottom__text {
    font-size: 14px;
  }
}

  .cbn-restaurant-hero-section {
    padding: 28px 0 20px;
    background: #f3f4f6;
  }

  .cbn-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
  }

  .cbn-breadcrumb a:hover {
    color: var(--cbn-color-primary);
  }

  .cbn-restaurant-cover-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
    background: #ddd;
  }

  .cbn-restaurant-cover-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
  }

  .cbn-restaurant-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.18) 55%, rgba(17, 24, 39, 0.02) 100%);
  }

  .cbn-restaurant-cover-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
  }

  .cbn-restaurant-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }

  .cbn-restaurant-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(92, 237, 115, 0.95);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  .cbn-restaurant-cover-title {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
  }

  .cbn-restaurant-cover-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 500;
  }

  .cbn-restaurant-cover-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .cbn-restaurant-main-section {
    padding: 26px 0 60px;
    background: #f3f4f6;
  }

  .cbn-info-card {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
    height: 100%;
  }

  .cbn-section-title-sm {
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
  }

  .cbn-about-text {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 0;
  }

  .cbn-detail-list {
    display: grid;
    gap: 14px;
  }

  .cbn-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #374151;
  }

  .cbn-detail-item i {
    font-size: 18px;
    color: var(--cbn-color-primary-dark);
    margin-top: 2px;
  }

  .cbn-detail-item strong {
    display: block;
    color: #111827;
    margin-bottom: 2px;
    font-weight: 600;
  }

  .cbn-rating-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cbn-rating-box {
    flex: 1 1 180px;
    border-radius: 18px;
    background: #f8f9fb;
    border: 1px solid #edf0f4;
    padding: 18px;
    text-align: center;
  }

  .cbn-rating-box h4 {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 800;
    color: #111827;
  }

  .cbn-rating-box p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-deals-section,
  .cbn-gallery-section,
  .cbn-reviews-section {
    margin-top: 26px;
  }

  .cbn-deal-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
    transition: all 0.3s ease;
  }

  .cbn-deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  }

  .cbn-deal-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .cbn-deal-card-body {
    padding: 18px;
  }

  .cbn-deal-card-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    color: #111827;
  }

  .cbn-deal-card-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
  }

  .cbn-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
  }

  .cbn-price-new {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
  }

  .cbn-price-old {
    font-size: 15px;
    color: #9ca3af;
    text-decoration: line-through;
  }

  .cbn-save-badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: #19c43b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .cbn-deal-btn {
    min-width: 140px;
    height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cbn-color-primary) 0%, var(--cbn-color-primary-dark) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .cbn-deal-btn:hover {
    color: #fff;
  }

  .cbn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .cbn-gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
  }

  .cbn-review-card {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
  }

  .cbn-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
  }

  .cbn-review-name {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
  }

  .cbn-review-stars {
    color: #f59e0b;
    font-size: 14px;
  }

  .cbn-review-text {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-side-action-card {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  }

  .cbn-side-action-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
  }

  .cbn-side-action-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 18px;
  }

  .cbn-side-list {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
  }

  .cbn-side-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
  }

  .cbn-side-list i {
    color: var(--cbn-color-primary-dark);
  }

  .cbn-side-btn {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cbn-color-primary) 0%, var(--cbn-color-primary-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
  }

  @media (max-width: 991.98px) {
    .cbn-gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .cbn-side-sticky {
      position: static;
    }
  }

  @media (max-width: 767.98px) {
    .cbn-restaurant-cover-img,
    .cbn-restaurant-cover-wrap {
      min-height: 290px;
      height: 290px;
    }

    .cbn-restaurant-cover-content {
      padding: 20px;
    }

    .cbn-section-title-sm {
      font-size: 21px;
    }

    .cbn-gallery-grid {
      grid-template-columns: 1fr;
    }

    .cbn-gallery-grid img {
      height: 200px;
    }

    .cbn-deal-card-img {
      height: 200px;
    }
  }
.cbn-restaurant-main-section {
  position: relative;
  z-index: 1;
}

.cbn-site-footer {
  position: relative;
  z-index: 2;
  clear: both;
  width: 100%;
  display: block;
  margin-top: 40px;
}

.cbn-site-footer .container {
  clear: both;
}

.cbn-restaurant-main-section .row {
  align-items: flex-start;
}

.cbn-restaurant-gallery-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 38px;
}

.cbn-restaurant-gallery-slider .swiper-slide {
  height: auto;
}

.cbn-restaurant-gallery-slider .swiper-slide img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.cbn-restaurant-gallery-pagination {
  position: static;
  margin-top: 18px;
  text-align: center;
}

.cbn-restaurant-gallery-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 6px;
  border-radius: 0;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 4px !important;
}

.cbn-restaurant-gallery-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #38d85a;
}

.cbn-restaurant-gallery-prev,
.cbn-restaurant-gallery-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
  color: #111827;
}

.cbn-restaurant-gallery-prev::after,
.cbn-restaurant-gallery-next::after {
  font-size: 16px;
  font-weight: 700;
}

.cbn-restaurant-gallery-prev:hover,
.cbn-restaurant-gallery-next:hover {
  color: #38d85a;
}

@media (max-width: 991.98px) {
  .cbn-restaurant-gallery-slider .swiper-slide img {
    height: 230px;
  }
}

@media (max-width: 767.98px) {
  .cbn-restaurant-gallery-slider .swiper-slide img {
    height: 200px;
  }

  .cbn-restaurant-gallery-prev,
  .cbn-restaurant-gallery-next {
    display: none;
  }
}
.cbn-image-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.cbn-image-popup.active {
  display: flex;
}

.cbn-popup-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.cbn-popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.cbn-popup-close:hover {
  color: #5ced73;
  transform: scale(1.1);
}

  .cbn-city-hero-section {
    padding: 34px 0 28px;
    background: linear-gradient(180deg, #f3f4f6 0%, #eefaf0 100%);
  }

  .cbn-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
  }

  .cbn-breadcrumb a:hover {
    color: var(--cbn-color-primary);
  }

  .cbn-city-title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #111827;
  }

  .cbn-city-desc {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 16px;
    color: #6b7280;
  }

  .cbn-city-stats {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cbn-city-stat-card {
    min-width: 180px;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  }

  .cbn-city-stat-card h4 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800;
    color: #111827;
  }

  .cbn-city-stat-card p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-city-filter-section {
    padding: 0 0 20px;
    background: #f3f4f6;
  }

  .cbn-city-filter-wrap {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  }

  .cbn-filter-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
  }

  .cbn-filter-control.form-control,
  .cbn-filter-control.form-select {
    height: 48px;
    border-radius: 999px;
    border: 1px solid #d9dce1;
    box-shadow: none;
  }

  .cbn-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cbn-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
    border: 1px solid #d9dce1;
    border-radius: 999px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .cbn-chip:hover,
  .cbn-chip.active {
    background: var(--cbn-color-primary);
    border-color: var(--cbn-color-primary);
    color: #fff;
  }

  .cbn-city-listing-section {
    padding: 10px 0 56px;
    background: #f3f4f6;
  }

  .cbn-section-head {
    margin-bottom: 24px;
  }

  .cbn-section-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
  }

  .cbn-section-subtitle {
    margin: 8px 0 0;
    font-size: 15px;
    color: #6b7280;
  }

  .cbn-restaurant-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
    transition: all 0.3s ease;
  }

  .cbn-restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
  }

  .cbn-restaurant-card-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .cbn-restaurant-card-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
  }

  .cbn-restaurant-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 7px 11px;
    border-radius: 999px;
    background: #38d85a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }

  .cbn-restaurant-card-body {
    padding: 18px;
  }

  .cbn-restaurant-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #6b7280;
  }

  .cbn-restaurant-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .cbn-restaurant-name {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
  }

  .cbn-restaurant-cuisine {
    margin-bottom: 15px;
    font-size: 15px;
    color: #6b7280;
  }

  .cbn-restaurant-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }

  .cbn-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #f7faf7;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
  }

  .cbn-rating-pill i {
    color: #f59e0b;
  }

  .cbn-view-btn {
    min-width: 135px;
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--cbn-color-primary) 0%, var(--cbn-color-primary-dark) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
  }

  .cbn-view-btn:hover {
    color: #fff;
  }

  .cbn-featured-city-section {
    padding: 0 0 56px;
    background: #f3f4f6;
  }

  .cbn-featured-city-slider {
    overflow: hidden;
    padding-bottom: 28px;
  }

  .cbn-featured-city-slider .swiper-slide {
    height: auto;
  }

  .cbn-city-slider-pagination {
    position: static;
    margin-top: 14px;
    text-align: center;
  }

  .cbn-city-slider-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 6px;
    border-radius: 0;
    background: #d9d9d9;
    opacity: 1;
    margin: 0 4px !important;
  }

  .cbn-city-slider-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #38d85a;
  }

  @media (max-width: 991.98px) {
    .cbn-restaurant-card-img {
      height: 210px;
    }
  }

  @media (max-width: 767.98px) {
    .cbn-city-hero-section {
      padding: 28px 0 24px;
    }

    .cbn-city-stat-card {
      min-width: 100%;
    }

    .cbn-section-title {
      font-size: 24px;
    }

    .cbn-restaurant-name {
      font-size: 19px;
    }

    .cbn-restaurant-card-img {
      height: 200px;
    }

    .cbn-city-cta-title {
      font-size: 24px;
    }
  }
.cbn-category-hero-section {
    padding: 34px 0 24px;
    background: linear-gradient(180deg, #f3f4f6 0%, #eefaf0 100%);
  }

  .cbn-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
  }

  .cbn-breadcrumb a:hover {
    color: var(--cbn-color-primary);
  }

  .cbn-category-hero-box {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  }

  .cbn-category-title {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #111827;
  }

  .cbn-category-desc {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 16px;
    color: #6b7280;
  }

  .cbn-category-filter-section {
    padding: 0 0 18px;
    background: #f3f4f6;
  }

  .cbn-category-filter-wrap {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  }

  .cbn-filter-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
  }

  .cbn-filter-control.form-control,
  .cbn-filter-control.form-select {
    height: 48px;
    border-radius: 999px;
    border: 1px solid #d9dce1;
    box-shadow: none;
  }

  .cbn-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cbn-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 16px;
    border: 1px solid #d9dce1;
    border-radius: 999px;
    background: #fff;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .cbn-chip:hover,
  .cbn-chip.active {
    background: var(--cbn-color-primary);
    border-color: var(--cbn-color-primary);
    color: #fff;
  }

  .cbn-category-products-section {
    padding: 12px 0 60px;
    background: #f3f4f6;
  }

  .cbn-section-head {
    margin-bottom: 24px;
  }

  .cbn-section-title {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
  }

  .cbn-section-subtitle {
    margin: 8px 0 0;
    font-size: 15px;
    color: #6b7280;
  }

  .cbn-category-count {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
  }

  .cbn-best-card-body {
    padding: 14px 2px 2px;
  }
.cbn-category-products-section .cbn-best-card {
  height: 100%;
}

.cbn-category-products-section .cbn-best-card-img {
  height: 196px;
}

.cbn-category-products-section .cbn-best-card-title {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
}

.cbn-category-products-section .cbn-best-card-title a {
  color: #33383f;
}

.cbn-category-products-section .cbn-best-card-title a:hover {
  color: #38d85a;
}
  .cbn-best-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .cbn-best-card-title a {
    color: #111827;
  }

  .cbn-best-card-title a:hover {
    color: var(--cbn-color-primary-dark);
  }

  .cbn-best-card-meta {
    font-size: 13px;
    color: #6b7280;
  }

  .cbn-category-pagination {
    margin-top: 30px;
  }

  .pagination .page-link {
    border: none;
    min-width: 42px;
    height: 42px;
    border-radius: 999px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    box-shadow: none;
    margin: 0 4px;
  }

  .pagination .page-item.active .page-link {
    background: #38d85a;
    color: #fff;
  }

  .pagination .page-link:hover {
    background: #eaf8ed;
    color: #38d85a;
  }
.cbn-category-pagination {
  margin-top: 34px;
}

.cbn-category-pagination .pagination {
  gap: 8px;
}

.cbn-category-pagination .page-link {
  min-width: 44px;
  height: 44px;
  border: 1px solid #d9dce1;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #374151;
  font-weight: 600;
  box-shadow: none;
}

.cbn-category-pagination .page-link:hover {
  background: #eaf8ed;
  border-color: #38d85a;
  color: #38d85a;
}

.cbn-category-pagination .page-item.active .page-link {
  background: linear-gradient(180deg, #5ced73 0%, #38d85a 100%);
  border-color: #38d85a;
  color: #fff;
}

.cbn-category-pagination .page-item.disabled .page-link {
  opacity: 0.55;
  background: #fff;
  color: #9ca3af;
  border-color: #e5e7eb;
}
 .cbn-deal-hero-section {
    padding: 34px 0 26px;
    background: linear-gradient(180deg, #f3f4f6 0%, #eefaf0 100%);
  }

  .cbn-breadcrumb {
    margin-bottom: 14px;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-breadcrumb a {
    color: #6b7280;
    text-decoration: none;
  }

  .cbn-breadcrumb a:hover {
    color: var(--cbn-color-primary);
  }

  .cbn-deal-main-section {
    padding: 8px 0 60px;
    background: #f3f4f6;
  }

  .cbn-deal-media-card,
  .cbn-deal-info-card,
  .cbn-deal-content-card {
    background: #fff;
    border: 1px solid #e7e9ee;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
  }

  .cbn-deal-media-card {
    padding: 18px;
    overflow: hidden;
  }

  .cbn-deal-main-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
  }

  .cbn-deal-thumb-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .cbn-deal-thumb-row img {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .cbn-deal-thumb-row img:hover,
  .cbn-deal-thumb-row img.active {
    border-color: var(--cbn-color-primary);
  }

  .cbn-deal-info-card {
    padding: 26px;
    height: 100%;
  }

  .cbn-deal-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }

  .cbn-deal-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #38d85a;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  .cbn-deal-title {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
  }

  .cbn-deal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-deal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .cbn-deal-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }

  .cbn-deal-price {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
  }

  .cbn-deal-old-price {
    font-size: 20px;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: line-through;
  }

  .cbn-deal-save {
    padding: 6px 12px;
    border-radius: 999px;
    background: #19c43b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
  }

  .cbn-deal-short-desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
  }

  .cbn-deal-feature-list {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
  }

  .cbn-deal-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 15px;
  }

  .cbn-deal-feature-list i {
    color: var(--cbn-color-primary-dark);
  }

  .cbn-deal-action-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .cbn-qty-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d9dce1;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
  }

  .cbn-qty-btn {
    width: 42px;
    height: 42px;
    border: 0;
    background: #fff;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
  }

  .cbn-qty-input {
    width: 52px;
    height: 42px;
    border: 0;
    text-align: center;
    font-weight: 600;
    color: #111827;
    background: #fff;
  }

  .cbn-add-cart-btn {
    min-width: 180px;
    height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--cbn-color-primary) 0%, var(--cbn-color-primary-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
  }

  .cbn-add-cart-btn:hover {
    color: #fff;
  }

  .cbn-wishlist-btn {
    min-width: 48px;
    height: 48px;
    border: 1px solid #d9dce1;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111827;
    font-size: 18px;
    text-decoration: none;
  }

  .cbn-wishlist-btn:hover {
    color: var(--cbn-color-primary-dark);
    border-color: var(--cbn-color-primary);
  }

  .cbn-restaurant-mini {
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8f9fb;
    border: 1px solid #edf0f4;
  }

  .cbn-restaurant-mini h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
  }

  .cbn-restaurant-mini p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
  }

  .cbn-deal-content-wrap {
    display: grid;
    gap: 24px;
    margin-top: 26px;
  }

  .cbn-deal-content-card {
    padding: 24px;
  }

  .cbn-section-title-sm {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
  }

  .cbn-deal-content-card p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 0;
  }

  .cbn-terms-list {
    display: grid;
    gap: 12px;
  }

  .cbn-terms-list li {
    display: flex;
    gap: 10px;
    font-size: 15px;
    color: #374151;
  }

  .cbn-terms-list i {
    color: var(--cbn-color-primary-dark);
    margin-top: 3px;
  }

  .cbn-related-section {
    margin-top: 26px;
  }

  .cbn-related-section .cbn-best-card {
    height: 100%;
  }

  .cbn-related-section .cbn-best-card-img {
    height: 196px;
  }

  .cbn-related-section .cbn-best-card-title {
    font-size: 19px;
    line-height: 1.35;
    font-weight: 500;
  }

  @media (max-width: 991.98px) {
    .cbn-deal-main-img {
      height: 360px;
    }
  }

  @media (max-width: 767.98px) {
    .cbn-deal-hero-section {
      padding: 28px 0 20px;
    }

    .cbn-deal-main-img {
      height: 260px;
    }

    .cbn-deal-thumb-row {
      grid-template-columns: repeat(2, 1fr);
    }

    .cbn-deal-title {
      font-size: 2rem;
    }

    .cbn-deal-price {
      font-size: 28px;
    }

    .cbn-section-title-sm {
      font-size: 21px;
    }

    .cbn-related-section .cbn-best-card-img {
      height: 180px;
    }
  }
  @media (max-width: 767.98px) {
    .cbn-category-hero-section {
      padding: 28px 0 20px;
    }

    .cbn-section-title {
      font-size: 24px;
    }

    .cbn-best-card-img {
      height: 200px;
    }

    .cbn-best-card-title {
      font-size: 18px;
    }
    .cbn-category-products-section .cbn-best-card {
  height: 100%;
}

.cbn-category-products-section .cbn-best-card-img {
  height: 196px;
}

.cbn-category-products-section .cbn-best-card-title {
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
}

.cbn-category-products-section .cbn-best-card-title a {
  color: #33383f;
}

.cbn-category-products-section .cbn-best-card-title a:hover {
  color: #38d85a;
}
  }
.cbn-deal-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cbn-restaurant-detail-card {
  padding: 18px 20px;
}

.cbn-restaurant-detail-card h4 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.cbn-restaurant-detail-list {
  display: grid;
  gap: 14px;
}

.cbn-restaurant-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cbn-restaurant-detail-item i {
  font-size: 18px;
  color: var(--cbn-color-primary-dark);
  margin-top: 3px;
}

.cbn-restaurant-detail-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.cbn-restaurant-detail-item span {
  display: block;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}