
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #124265; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2487ce; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #124265;  /* The default color of the main navmenu links */
  --nav-hover-color: #2487ce; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #124265; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2487ce; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f6fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #469fdf;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

 
/*--------------------------------------------------------------
# Main Header background: linear-gradient(to left, #80b9ff, white);
--------------------------------------------------------------*/
 

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
 background: linear-gradient(to left, #80b9ff, white);
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}

.logo-box img {
  height: 50px;
  max-width: 140px;
  object-fit: contain;
}

.search-box {
  flex: 1;
  padding: 0 20px;
  max-width: 700px;
  position: relative;
    z-index: 1050;
}
 
.search-box input {
  width: 100%;
  padding: 10px 40px 10px 14px; /* space on right for icon */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.search-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
  font-size: 16px;
}
 @media (max-width: 768px) {
  .main-header {
    flex-wrap: nowrap; /* Keep in one line */
    gap: 10px;
  }

  .logo-box {
    order: 1;
    flex: 0 0 auto;
  }

  .search-box {
    order: 2;
    flex: 1;
    padding: 0;
    max-width: 100%;
  }

  .actions {
    display: none;
  }
}



/*==============================================================
# Suggestions Dropdown (Updated)
==============================================================*/
#suggestionsList {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  max-height: 320px;
  overflow-y: auto;
  display: none;
  padding: 8px 0;
}

#suggestionsList li {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #eee;
}

#suggestionsList li:last-child {
  border-bottom: none;
}

#suggestionsList li:hover {
  background-color: #f5f5f5;
}

.suggestion-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.suggestion-content {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.suggestion-title {
  font-weight: 500;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-price {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* Responsive dropdown styling */
@media (max-width: 768px) {
  #suggestionsList li {
    padding: 10px;
  }
  .suggestion-title {
    font-size: 13px;
  }
  .suggestion-price {
    font-size: 12px;
  }
  .suggestion-thumb {
    width: 44px;
    height: 44px;
  }
}


.actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  transition: color 0.3s;
}

.header-icon:hover {
  color: #007BFF;
}

.label {
  display: inline-block;
}

/* Responsive */
 
/*--------------------------------------------------------------
# topbar Header
--------------------------------------------------------------*/
.topbar {
    
  background-color: white;
  color: black;
  font-size: 14px;
  padding: 8px 0;
}

.topbar a {
  color: black;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar .bi {
  margin-right: 6px;
  vertical-align: middle;
  font-size: 16px;
}

.topbar .topbar-left span {
  margin-right: 15px;
}

.topbar-right a {
  font-size: 16px;
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}


/*--------------------------------------------------------------
# Top Header
--------------------------------------------------------------*/
  .banner-top {
  width: 100%;
  overflow: hidden;
}

.banner-top img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .banner-top {
    min-height: 20px;
  }

  .banner-top img {
    height: 80px;
    object-fit: cover;
  }
}




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/ 
/* Header Layout */
 /* Header Styling */
.header {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  padding: 12px 20px;
  z-index: 1000;
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CTA Button */
.btn-getstarted {
  color: white;
  background: #7cc4f7;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-getstarted:hover {
  background: white;
  color: #7cc4f7;
  border-color: #7cc4f7;
}

/* Show/hide text for mobile */
.btn-getstarted .show-mobile {
  display: none;
}
@media (max-width: 767px) {
  .btn-getstarted .hide-mobile {
    display: none;
  }
  .btn-getstarted .show-mobile {
    display: inline;
  }
}

/* All Categories Dropdown */
.navmenu.dropdown {
  position: relative;
  font-size: 14px;
}

.navmenu.dropdown > a {
  background-color: #f8f8f8;
  color: #333;
  padding: 10px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e0e0e0;
  transition: background 0.2s;
}

.navmenu.dropdown > a:hover {
  background-color: #e9f4ff;
}

/* Dropdown menus */
.navmenu.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  border-radius: 6px;
  min-width: 250px;
  padding: 8px 0;
  z-index: 100;
}

.navmenu.dropdown:hover .dropdown-menu {
  display: block;
}

.navmenu.dropdown .dropdown-menu li {
  position: relative;
}

.navmenu.dropdown .dropdown-menu a {
  padding: 10px 18px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.navmenu.dropdown .dropdown-menu li:hover > a {
  background-color: #f3f7fb;
}

/* Sub-dropdown styling */
.navmenu.dropdown .dropdown-menu li .dropdown-menu {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border-radius: 6px;
  padding: 8px 0;
  min-width: 220px;
}

.navmenu.dropdown .dropdown-menu li:hover > .dropdown-menu {
  display: block;
}

/* Main nav menu */
.navmenu ul {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.navmenu li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navmenu li a:hover {
  color: #007bff;
}

/* Mobile toggle icon */
.mobile-nav-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}

.footer .credits a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
 .whatsapp-scroll,
.call-scroll {
  position: fixed;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
  transition: background-color 0.4s ease, opacity 0.4s ease;
  opacity: 1;
  visibility: visible;
  z-index: 99999;
}

/* Desktop/Laptop view (default) - buttons at bottom */
.whatsapp-scroll {
  background-color: #25D366;
  bottom: 65px; /* near bottom */
}

.call-scroll {
  background-color: #007bff;
  bottom: 15px; /* below whatsapp button */
}

.whatsapp-scroll:hover {
  background-color: #1ebe57;
  color: white;
}

.call-scroll:hover {
  background-color: #005bbd;
  color: white;
}

/* Mobile view - buttons placed higher */



.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 113px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 768px) {
  .whatsapp-scroll {
    bottom: 155px; /* higher on mobile */
  }

  .call-scroll {
    bottom: 110px; /* 30px below whatsapp */
  }
  .scroll-top {
  bottom: 60px;
}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
}

 
.mobile-drawer {
  display: none;
}

/*--------------------------------------------------------------
# Mobile Nav Titles
--------------------------------------------------------------*/
 @media (max-width: 991.98px) {
  /* Hide desktop nav and category menu */
  .navmenu ul,
  .navmenu.dropdown {
    display: none !important;
  }

  /* Hamburger toggle button */
  .mobile-nav-toggle {
    display: inline-block !important;
    font-size: 24px; /* slightly smaller */
    cursor: pointer;
    padding: 8px 12px; /* reduced padding */
    color: #333;
    background: transparent;
    border: none;
    user-select: none;
  }
  .mobile-nav-toggle:focus {
    outline: 2px solid #007bff;
  }

  /* Mobile Drawer */
  .mobile-drawer {
  display: block; /* or flex */
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 3000;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: left 0.3s ease, visibility 0s linear 0.3s;
  visibility: hidden;
  pointer-events: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mobile-drawer.open {
  left: 0;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}


  /* Drawer Header */
  .drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px; /* reduced padding */
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
  }
  .drawer-title {
    margin: 0;
    font-size: 1.275rem; /* ~20.4px (2px smaller) */
    font-weight: 700;
    color: #222;
  }
  .drawer-close {
    background: transparent;
    border: none;
    font-size: 28px; /* slightly smaller */
    font-weight: 700;
    color: #555;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
    user-select: none;
  }
  .drawer-close:hover,
  .drawer-close:focus {
    color: #007bff;
    outline: none;
  }

  /* Drawer Navigation Content */
  .drawer-content {
    padding: 14px 18px; /* reduced padding */
  }
  .category-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .category-menu li {
    margin-bottom: 12px; /* reduced spacing */
    border-bottom: 1px solid #eee;
  }
  .category-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  .category-link {
    font-size: 1.025rem; /* ~16.4px, 2px smaller */
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 0; /* reduced vertical padding */
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .category-link:hover,
  .category-link:focus {
    color: #007bff;
    background-color: #e6f0ff;
    outline: none;
  }

  /* Optional scrollbar style */
  .mobile-drawer::-webkit-scrollbar {
    width: 6px; /* thinner scrollbar */
  }
  .mobile-drawer::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }

  /* Mobile footer menu (if applicable) */
  .mobile-footer-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    padding: 6px 0; /* reduced padding */
    z-index: 3500;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  }
  .mobile-footer-menu a {
    flex: 1;
    font-size: 10px; /* smaller font */
    color: #333;
    text-align: center;
    text-decoration: none;
  }
  .mobile-footer-menu a:hover,
  .mobile-footer-menu a:focus {
    color: #007bff;
  }
  .mobile-footer-menu i {
    display: block;
    font-size: 18px; /* slightly smaller */
    margin-bottom: 2px;
  }
}


 .branch-swiper {
      padding: 30px 20px;
      max-width: 1280px;
      margin: auto;
    }

    .swiper-slide.branch-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 12px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
      touch-action: pan-y;
    }

    .branch-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .branch-title {
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 8px;
      color: #333;
    }

    .branch-address {
      font-size: 14px;
      color: #666;
      margin-bottom: 10px;
    }

    .map-frame iframe {
      width: 100%;
      height: 200px;
      border: 0;
      border-radius: 6px;
      margin-bottom: 12px;
      pointer-events: none;
    }

    .branch-buttons {
      margin-top: auto;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .branch-buttons a {
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      color: white;
      cursor: pointer;
      transition: background-color 0.3s ease;
      flex: 1 1 auto;
      text-align: center;
      max-width: 140px;
      user-select: none;
    }

    .btn-view {
      background-color: #1976d2;
    }
    .btn-view:hover {
      background-color: #0d47a1;
    }

    .btn-review {
      background-color: #388e3c;
    }
    .btn-review:hover {
      background-color: #1b5e20;
    }

    @media (max-width: 768px) {
      .swiper-slide.branch-card {
        min-width: 80%;
      }
    }

    @media (max-width: 600px) {
      .branch-buttons {
        flex-direction: column;
        gap: 8px;
      }
      .branch-buttons a {
        max-width: 100%;
      }
    }

 
 