 
 @import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;700&display=swap");
 :root{
      /* Core */

      --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
       --font-heading: "Poppins", var(--font-body);

      --primary:#034ab5;              /* Color.fromARGB(255, 3, 74, 181) */
      --lightprimary:#f3f3f3;         /* Color.fromARGB(255, 186, 209, 243) */
      --secondary:#F5B301;            /* 0xFFFF9800 */
      --accent:#248227;               /* Color.fromARGB(255, 36, 130, 39) */
      --lightaccent:#c3f2c5;          /* Color.fromARGB(255, 195, 242, 197) */
      --gttred:#e02c10;               /* Color.fromARGB(255, 224, 44, 16) */
      --gttgrey:#e6e6e6;              /* Color.fromARGB(221, 230, 230, 230) */
      --black:#000000;
      --background:#F7FAFF;
      --textPrimary:rgba(49,49,49,.87);     /* Color.fromARGB(221, 49,49,49) */
      --textSecondary:rgba(36,35,35,.54);   /* Color.fromARGB(137, 36,35,35) */
      --appBarBg: var(--primary);
      --appBarFg: #ffffff;
      /* Bridge to Bootstrap */
      --bs-primary: var(--primary);
      --bs-primary-rgb: 3, 74, 181;  /* RGB of #034ab5 */
      --bs-primary-text-emphasis: #021f4a;
      --bs-primary-bg-subtle: #cce0f5;
      --bs-primary-border-subtle: #99c1eb;
      --bs-warning: var(--secondary);
      --bs-secondary: var(--secondary);
      --bs-body-bg: var(--background);
      --bs-body-color: var(--textPrimary);
      --bs-link-color: var(--primary);
      --bs-link-hover-color: #02396d;
      --bs-card-border-color: transparent;
      --radius: 14px;
      --line:#F7FAFF;
      --shadow: 0 8px 24px rgba(0,0,0,.08);
      --nav-height: 64px;  /* bottom app bar height */
      --rail-bg: linear-gradient(180deg,#f0f5ff 0%,#e3eeff 100%);
       --header-offset: 64px;

    --border:#f0f5ff;
        --alert-radius: 14px;
  --alert-gap: 8px;
  --alert-pad-y: 12px;
  --alert-pad-x: 14px;
  --alert-shadow: 0 6px 18px rgba(0,0,0,.06);

  /* Fallbacks if your tokens aren't set */
  --ink: #0b1320;
  --muted: #6b7280;

  /* Danger palette */
  --danger-bg: color-mix(in oklab, #ffefef 85%, #ff4d4f);
  --danger-bd: #ffb4b4;
  --danger-ink: #7a0f13;

  /* Success/info/warn (optional if you add more types later) */
  --success-bg: color-mix(in oklab, #effaf0 85%, #1ecb72);
  --success-bd: #b6e8c9;
  --success-ink: #0f5132;

  --info-bg: color-mix(in oklab, #eef6ff 85%, #2b7fff);
  --info-bd: #b9d6ff;
  --info-ink: #0b3b82;

  --warn-bg: color-mix(in oklab, #fff8e6 85%, #ffb020);
  --warn-bd: #ffe0a6;
  --warn-ink: #7a4a00;


    }

    html { font-size: 14px; }
    body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "liga" 1, "kern" 1;
    font-variant-numeric: tabular-nums; /* aligns prices */
    font-optical-sizing: auto;    
    max-width: 100%; 
    overflow-x: hidden !important;
    overflow-x: clip;
     /* helps variable fonts render nicely */
    }

    /* Headings */
    h1, h2, h3, .display-1, .display-2 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: .2px;
    }
    /* UI bits */
    .btn, .nav, .badge, .form-control, .appbar-bottom .nav-link { 
    font-family: var(--font-body);
    font-weight: 600; /* snappier UI */
    }


/**==== BOOTSTRAP OVER RIDE =====**/
/* Primary Button */
.btn-primary {
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: #02396d;
  --bs-btn-hover-border-color: #02396d;
  --bs-btn-active-bg: #021f4a;
  --bs-btn-active-border-color: #021f4a;
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #02396d;
  border-color: #02396d;
}

/* Primary Outline Button */
.btn-outline-primary {
  --bs-btn-color: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-bg: var(--primary);
  --bs-btn-hover-border-color: var(--primary);
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Text Primary */
.text-primary {
  color: var(--primary) !important;
}

.text-primary-emphasis {
  color: #021f4a !important;
}

/* Background Primary */
.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-subtle {
  background-color: #cce0f5 !important;
}

/* Border Primary */
.border-primary {
  border-color: var(--primary) !important;
}

.border-primary-subtle {
  border-color: #99c1eb !important;
}

/* Links */
a {
  color: var(--primary);
}

a:hover,
a:focus {
  color: #02396d;
}

/* Form Controls Focus */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(3, 74, 181, 0.25);
}

/* Badges */
.badge.bg-primary {
  background-color: var(--primary) !important;
}

/* Alert Primary */
.alert-primary {
  --bs-alert-color: #021f4a;
  --bs-alert-bg: #cce0f5;
  --bs-alert-border-color: #99c1eb;
}

main { padding-top: var(--header-offset); }
/* Prices */
.price .now { font-weight: 700; }
.price { font-variant-numeric: tabular-nums; }

    body{background:var(--background); color:var(--textPrimary)}
    img{max-width:100%;height:auto}

    /* ===== Top AppBar (mobile) ===== */
    .topbar{background:var(--appBarBg);color:var(--appBarFg);padding-top: env(safe-area-inset-top);}
    .topbar .brand{font-weight:600;letter-spacing:.2px}
    .topbar .search-xs{background:#fff;border-radius:999px;border:1px solid var(--lightprimary);overflow:hidden;}
    .topbar .search-xs input{border:0}
    .topbar .search-xs .btn{background:var(--secondary);border:0}

    /* Desktop header layout */
    @media (min-width:992px){
      .topbar-lg .search-wrap{border-radius:999px;overflow:hidden;border:2px solid var(--lightprimary)}
      .topbar-lg .search-wrap .form-select{border:0;border-right:1px solid #e5e7eb;background:#f3f4f6;font-weight:400}
      .topbar-lg .search-wrap .form-control{border:0}
      .topbar-lg .search-wrap .btn{background:var(--secondary);border:0;font-weight:600}
    }

    /* ===== Category chips ===== */
    .chip{display:inline-flex;align-items:center; gap:.35rem;background:var(--lightprimary); color:#043b8f; border:1px solid #ebedf4; padding:.35rem .6rem; border-radius:999px; font-weight:400}

    /* ===== Carousel ===== */
    .hero .carousel-item{height:220px}
    .hero .carousel-item>img{object-fit:none;height:100%}
    @media (min-width:768px){.hero .carousel-item{height:320px}}
    @media (min-width:1200px){.hero .carousel-item{height:360px}}

    /* ===== Product Card ===== */
    .product-card{border:1px solid var(--line);border-radius:var(--radius);transition:.15s ease;overflow:hidden;background:#fff}
    .product-card:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
    .product-media img{height:160px;object-fit:contain}
    @media (min-width:768px){.product-media img{height:180px}}
    .rating-badge{background:#22c55e;color:#fff;font-weight:700;border-radius:.5rem;padding:.15rem .45rem;font-size:.75rem}
    .price .old{text-decoration:line-through;color:#94a3b8}

    /* ===== Deal Strip ===== */
    .deal-strip{background:#fff;border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)}

    /* ===== Bottom App Bar (mobile nav) ===== */
    .appbar-bottom{position:fixed;left:0;right:0;bottom:0;height:var(--nav-height);background:#fff;border-top:1px solid var(--line);z-index:1040}
    .appbar-bottom .nav-link{color:var(--textSecondary);font-size:.78rem}
    .appbar-bottom .nav-link .bi{font-size:1.25rem;display:block;margin-bottom:.1rem}
    .appbar-bottom .nav-link.active{color:var(--primary)}
    .appbar-bottom .nav-link .badge{position:absolute;top:2px;right:22%; transform:translateX(50%)}
    @media (min-width:992px){.appbar-bottom{display:none}}

    /* Add bottom padding so content isn't hidden behind bottom bar */
    main{padding-bottom:calc(var(--nav-height) + 16px)}

    /* ===== Floating CTA (example) ===== */
    .fab{position:fixed;right:16px;bottom:calc(var(--nav-height) + 16px);z-index:1039}
    .btn-fab{border-radius:999px;background:var(--accent);color:#fff}
.gtt-rail{background:#fff;border:1px solid var(--line);border-radius:16px;padding:12px;overflow:hidden}
  .gtt-rail-head{background:var(--rail-bg);border-radius:12px;padding:12px;display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
  .gtt-rail-head .btn{border-radius:999px}

  /* brands */
  .gtt-brands-wrap{position:relative}
  .gtt-brands{display:flex;gap:22px;overflow:auto;scroll-snap-type:x mandatory;padding:14px 12px;margin:0;list-style:none;scrollbar-width:none}
  .gtt-brands::-webkit-scrollbar{display:none}
  .gtt-brands li{scroll-snap-align:start;min-width:88px;text-align:center}
  .gtt-brands a{display:block;color:var(--textPrimary);text-decoration:none}
  .gtt-brands .avatar{display:inline-grid;place-items:center;width:72px;height:72px;border-radius:999px;background:#fff;border:1px solid var(--line);box-shadow:0 4px 10px rgba(0,0,0,.06);margin:auto}
  .gtt-brands .avatar img{width:72px;height:72px;border-radius:999px;object-fit:cover}
  .gtt-brands .brand-name{display:block;margin-top:6px;font-size:.85rem;color:#4a5b42}

  /* products rail */
  .gtt-cards-wrap{position:relative;margin-top:8px}
  .gtt-cards{display:flex;gap:12px;overflow:auto;scroll-snap-type:x proximity;padding:10px 6px 6px;scrollbar-width:none}
  .gtt-cards::-webkit-scrollbar{display:none}
  .gtt-card{position:relative; /* needed for absolute badges */ scroll-snap-align:start;flex:0 0 78vw;max-width:78vw;background:#fff;border:1px solid var(--line);border-radius:12px;padding:10px}
  @media (min-width:576px){.gtt-card{flex-basis:46vw;max-width:46vw}}
  @media (min-width:992px){.gtt-card{flex-basis:240px;max-width:240px}}
  .gtt-card .media{display:grid;place-items:center;background:#fff;border-radius:10px;margin-bottom:8px}
  .gtt-card .media img{width:100%;height:150px;object-fit:contain}
  .gtt-card .title{font-size:.95rem;line-height:1.25;margin:4px 0 6px;color:var(--textPrimary)}
  .gtt-card .meta{font-size:.82rem;color:var(--textSecondary)}
  .chip-rate{background:#22c55e;color:#fff;font-weight:700;border-radius:6px;padding:0 .4rem}
  .gtt-card .price{display:flex;align-items:baseline;gap:8px}
  .gtt-card .now{font-weight:800}
  .gtt-card .old{text-decoration:line-through;color:#9aa0a6;font-size:.85rem}
  .gtt-card .off{color:var(--accent);font-weight:700;font-size:.85rem}
  .badge-top,.badge-info{position:absolute;top:8px;left:8px;border-radius:8px;padding:.15rem .5rem;font-size:.75rem}
  .badge-top{background:var(--primary);color:#fff}
  .badge-info{background:var(--lightprimary);color:#013a98}

  /* arrows (visible on all screens; change to @media if you want desktop-only) */
  .gtt-nav{position:absolute;top:50%;transform:translateY(-50%);background:#fff;border:1px solid var(--line);width:36px;height:36px;border-radius:999px;display:grid;place-items:center;box-shadow:0 6px 16px rgba(0,0,0,.12);z-index:2}
  .gtt-brands-wrap .gtt-prev{left:6px} .gtt-brands-wrap .gtt-next{right:6px}
  .gtt-cards-wrap .gtt-prev{left:6px}  .gtt-cards-wrap .gtt-next{right:6px}

/* ===== Enhanced Carousel Animations ===== */

/* Hero Carousel Section */
.hero-carousel-section {
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  border-radius: 20px;
  overflow: hidden;
  
  position: relative;
}

.hero-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(3, 74, 181, 0.1) 50%, transparent 70%);
  animation: carousel-shimmer 8s infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes carousel-shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Carousel Image Container - Dynamic Height */
.carousel-image-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dynamic height based on actual image dimensions */
.carousel-image-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain; /* Show full image without cropping */
}

/* Fallback minimum heights for very small images */
.carousel-image-container {
  min-height: 200px;
}

@media (min-width: 768px) {
  .carousel-image-container {
    min-height: 300px;
  }
}

@media (min-width: 1200px) {
  .carousel-image-container {
    min-height: 400px;
  }
}

/* Clean Image Display - No Overlapping */
.carousel-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: none; /* Remove transitions to prevent overlapping */
}

.carousel-item.active .carousel-image {
  opacity: 1;
}

.carousel-item:not(.active) .carousel-image {
  opacity: 0;
}

/* Simple Clean Slide Transitions */
.carousel-item {
  transition: transform 0.5s ease-in-out;
  position: relative;
}

.carousel-item.active {
  transform: translateX(0);
  z-index: 2;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
  z-index: 1;
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
  z-index: 1;
}

/* Carousel Indicators - Small & Grey */
.carousel-indicators {
  bottom: 15px;
  z-index: 4;
}

.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999999; /* Grey color for inactive */
  border: 2px solid #ffffff; /* White border */
  transition: all 0.3s ease;
  margin: 0 4px;
  opacity: 0.8;
}

.carousel-indicators [data-bs-target].active {
  background: var(--primary);
  border-color: #ffffff; /* White border for active too */
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(3, 74, 181, 0.5);
  opacity: 1;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background: none;
  color: white;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Simple Fade Effect - No Complex Animations */
.carousel-item {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
}

/* Clean Performance - No Parallax */
.carousel-image {
  will-change: auto;
}

/* ===== Ads Section Styles ===== */

/* Ads Section - Perfect Blend with Carousel */
.ads-section {
 /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
  background: var(--background);
  margin-top: -20px; /* Overlap with carousel */
 
  overflow: hidden; /* Match carousel overflow */
 
  position: relative; /* Match carousel positioning */
  padding-top: 2rem; /* Extra padding to compensate for overlap */
}

/* Ad Card */
.ad-card {
  transition: all 0.3s ease;
}
.ad-card img{
  object-fit: cover;
}

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

.ad-card .card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 20px; /* Exact same as carousel */
  overflow: hidden;
}

.ad-card:hover .card {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(3, 74, 181, 0.15);
}

/* Ad Image Container */
.ad-image-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px 20px 0 0; /* Match carousel radius */
}

.ad-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ad-card:hover .ad-image {
  transform: scale(1.05);
}

/* Mobile Responsiveness for Ads */
@media (max-width: 767px) {
  .ad-image-container {
    height: 150px;
  }
  
  .ads-section {
    margin-top: -15px; /* Smaller overlap on mobile */
    padding-top: 1.5rem;
    border-radius: 12px; /* Exact same as mobile carousel */
    overflow: hidden; /* Match carousel */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); /* Match carousel shadow */
  }
  
  .ad-card .card {
    border-radius: 12px; /* Exact same as mobile carousel */
  }
  
  .ad-image-container {
    border-radius: 12px 12px 0 0; /* Exact same as mobile carousel */
  }
  
  .ad-card .card-body {
    padding: 1rem !important;
  }
}

/* ===== Round Categories Section Styles ===== */

/* Round Categories Section */
.round-categories-section {
  background: var(--background);
  position: relative;
}

/* Desktop Round Categories */
.round-categories-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.round-categories-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.round-categories-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.round-categories-scroll::-webkit-scrollbar {
  display: none;
}

.round-category-item {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
}

.round-category-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.round-category-link:hover {
  transform: translateY(-5px);
}

.round-category-image {
  width: 100px;
  height: 100px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 0.5px solid var(--gttgrey);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-category-link:hover .round-category-image {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(3, 74, 181, 0.3);
  border-color: var(--secondary);
}

.round-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.round-category-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--textPrimary);
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

/* Round Navigation Buttons */
.round-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(3, 74, 181, 0.3);
}

.round-nav:hover {
  background: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(245, 179, 1, 0.4);
}

.round-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Round Categories - Horizontal Sliding */
.round-categories-wrapper-mobile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 10px;
}

.round-categories-container-mobile {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.round-categories-scroll-mobile {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
  scroll-snap-type: x mandatory; /* Snap to items */
}

.round-categories-scroll-mobile::-webkit-scrollbar {
  display: none;
}

.round-category-item-mobile {
  flex: 0 0 auto;
  width: 90px;
  text-align: center;
  scroll-snap-align: start; /* Snap to start of each item */
}

.round-category-link-mobile {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
}

.round-category-link-mobile:hover {
  transform: translateY(-3px);
}

.round-category-image-mobile {
  width: 70px;
  height: 70px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 0.5px solid var(--gttgrey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.round-category-link-mobile:hover .round-category-image-mobile {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(3, 74, 181, 0.2);
  border-color: var(--primary);
}

.round-image-mobile {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.round-category-name-mobile {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--textPrimary);
  text-align: center;
  line-height: 1.2;
  margin-top: 3px;
}

/* Mobile Navigation Buttons */
.round-nav-mobile {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(3, 74, 181, 0.3);
  font-size: 0.9rem;
  flex-shrink: 0; /* Prevent shrinking */
  z-index: 10; /* Ensure buttons are above content */
}

.round-nav-mobile:hover:not(:disabled) {
  background: var(--secondary);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(245, 179, 1, 0.4);
}

.round-nav-mobile:active:not(:disabled) {
  transform: scale(0.95);
}

.round-nav-mobile:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
  background: #ccc;
  box-shadow: none;
}

/* Ensure mobile wrapper has proper layout */
.round-categories-wrapper-mobile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 5px;
  min-height: 120px; /* Ensure enough height for content */
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .carousel-image-container {
    min-height: 200px; /* Better mobile height */
  }
  
  /* Smaller mobile controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .carousel-control-prev {
    left: 8px;
  }
  
  .carousel-control-next {
    right: 8px;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    font-size: 1rem;
    width: 20px;
    height: 20px;
  }
  
  /* Better mobile indicators - Even smaller */
  .carousel-indicators {
    bottom: 8px;
  }
  
  .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    margin: 0 3px;
    background: #999999;
    border: 2px solid #ffffff; /* White border for mobile too */
  }
  
  .carousel-indicators [data-bs-target].active {
    background: var(--primary);
    border-color: #ffffff; /* White border for active */
    transform: scale(1.4);
  }
  
  /* Mobile carousel spacing */
  .hero-carousel-section {
    margin: 1rem 0;
  }
  
  .hero-carousel {
    border-radius: 12px;
  }
  
  /* Touch-friendly mobile experience */
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    transform: translateY(-50%) scale(1.05);
  }
  
  /* Better mobile spacing */
  .carousel-image-container {
    padding: 0;
  }
  
  /* Mobile-optimized carousel height */
  .carousel-image-container img {
    min-height: 200px;
    max-height: 300px;
    object-fit: contain;
  }
}





/**************************************************/
/* Product Card Component Styles */
/**************************************************/

/* Card Link Wrapper */
.product-card-link {
  display: block;
  height: 100%;
  min-height: 420px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Card Container */
.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;

  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #f9fafb;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
  border-color: #d1d5db;
}

/* Image Container */
.pc-img {
  position: relative;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

/* Card Body - Perfect Flex Layout */
.product-card .card-body {
  flex: 1 1 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #f9fafb;
}

/* Text Truncation for Product Names */
.text-truncate-2-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: 2.8em;
  max-height: 2.8em;
}

/* Product Title Styling */
.pc-title {
  color: #374151;
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* Badges Container */
.pc-flags .badge {
  font-weight: 500;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
}

/* Price Section */
.pc-price {
  padding-top: 0.5rem;
  margin-top: auto;
  border-top: 1px solid #f3f4f6;
}

.pc-price .h5 {
  font-size: 1.25rem;
  color: var( --textPrimary) !important;
}

.pc-price s {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* Buttons Container */
.product-card .btn {
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.product-card .btn-primary {
  background: linear-gradient(135deg, var(--bs-primary, #0d6efd), #1e40af);
  border: none;
}

.product-card .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.product-card .btn-outline-secondary:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

/* ====================
   Responsive Design
==================== */
@media (max-width: 768px) {
  .product-card-link {
    min-height: 380px;
  }
  
  .product-card {
    min-height: 380px;
  }
  
  .pc-img {
    padding: 0.75rem;
  }
  
  .product-card .card-body {
    padding: 0.875rem;
  }
  
  .pc-title {
    font-size: 0.8125rem;
  }
  
  .pc-price .h5 {
    font-size: 1.125rem;
    
  }
  
  .pc-flags .badge {
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {
  .product-card-link {
    min-height: 360px;
  }
  
  .product-card {
    min-height: 360px;
  }
  
  .product-card .btn-sm {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

/* Loading State */
.product-card.loading {
  pointer-events: none;
  opacity: 0.6;
}

.product-card.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  100% {
    left: 100%;
  }
}




/* ==========================================
   SUBCATEGORIES CAROUSEL STYLES - COMPACT 150PX
========================================== */

.subcategories-section {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.subcategories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #3B82F6, #60A5FA, #2563EB);
  background-size: 100% 100%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.subcategories-header h4 {
  color: #111827;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Carousel Navigation */
.carousel-nav-buttons { gap: 0.5rem; }

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #E5E7EB;
  background: white;
  color: #6B7280;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
  background: #2563EB;
  border-color: #2563EB;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Carousel Container */
.subcategories-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -0.5rem;
}

.subcategories-carousel {
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
}

.subcategories-carousel::-webkit-scrollbar { display: none; }

/* Compact Card - 150px Height */
.subcategory-card {
  flex: 0 0 auto;
  min-width: 200px;
  max-width: 280px;
  scroll-snap-align: start;
  text-decoration: none;
  transition: all 0.3s ease;
}

.subcategory-card-inner {
  background: white;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1.5px solid #E5E7EB;
  transition: all 0.3s ease;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.subcategory-card:hover .subcategory-card-inner {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  border-color: #2563EB;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F9FF 100%);
}

/* Icon - Rounded Square */
.subcategory-icon-wrapper {
  width: 65px;
  height: 65px;
  min-width: 65px;
  border-radius: 10px;
  background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.subcategory-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subcategory-card:hover .subcategory-icon-wrapper::after {
  opacity: 1;
}

.subcategory-icon-wrapper i {
  font-size: 1.875rem;
  color: #2563EB;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.subcategory-card:hover .subcategory-icon-wrapper i {
  color: white;
  transform: scale(1.1);
}

.subcategory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

/* Text Content */
.subcategory-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subcategory-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.subcategory-card:hover .subcategory-title {
  color: #2563EB;
}

.subcategory-count {
  font-size: 0.8125rem;
  color: #6B7280;
  font-weight: 500;
}

.subcategory-card:hover .subcategory-count {
  color: #2563EB;
}

/* Arrow */
.subcategory-arrow {
  margin-left: 0.5rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}

.subcategory-card:hover .subcategory-arrow {
  opacity: 1;
  transform: translateX(0);
}

.subcategory-arrow i {
  font-size: 1.125rem;
  color: #2563EB;
}

/* ==========================================
   HORIZONTAL SCROLLING SUBCATEGORIES - 75px HEIGHT
========================================== */

.subcategories-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.subcategories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #3B82F6, #60A5FA);
}

.subcategories-header {
  margin-bottom: 1rem;
}

.subcategories-header h4 {
  font-size: 1.125rem;
  color: #111827;
}

.subcategories-header p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Horizontal Scrolling Grid */
.subcategories-grid {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar but keep functionality */
.subcategories-grid::-webkit-scrollbar {
  height: 4px;
}

.subcategories-grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.subcategories-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.subcategories-grid::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Navigation Arrows */
.subcat-nav-arrows {
  gap: 0.5rem;
}

.subcat-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e5e7eb;
  color: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0;
}

.subcat-arrow-btn:hover:not(:disabled) {
  background: #2563EB;
  color: white;
  border-color: #2563EB;
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.subcat-arrow-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: #e5e7eb;
  color: #9ca3af;
}

.subcat-arrow-btn i {
  font-size: 1.125rem;
  line-height: 1;
}

/* Compact 75px Card */
.subcategory-card {
  flex: 0 0 auto;
  min-width: 200px;
  height: 75px;
  scroll-snap-align: start;
  text-decoration: none;
  background: white;
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  border: 1.5px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.subcategory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
  transition: left 0.5s ease;
}

.subcategory-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
  border-color: #3B82F6;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.subcategory-card:hover::before {
  left: 100%;
}

/* Icon Wrapper - Compact */
.subcategory-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #EBF4FF 0%, #DBEAFE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.subcategory-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subcategory-card:hover .subcategory-icon-wrapper {
  transform: scale(1.05);
}

.subcategory-card:hover .subcategory-icon-wrapper::after {
  opacity: 1;
}

.subcategory-icon-wrapper i {
  font-size: 1.375rem;
  color: #2563EB;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.subcategory-card:hover .subcategory-icon-wrapper i {
  color: white;
  transform: scale(1.1);
}

.subcategory-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.subcategory-card:hover .subcategory-image {
  transform: scale(1.08);
}

/* Category Info - Compact */
.subcategory-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  gap: 0.125rem;
}

.subcategory-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subcategory-card:hover .subcategory-title {
  color: #2563EB;
}

.subcategory-count {
  font-size: 0.75rem;
  color: #6B7280;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.subcategory-card:hover .subcategory-count {
  color: #3B82F6;
}

/* Arrow - Compact */
.subcategory-arrow {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.subcategory-card:hover .subcategory-arrow {
  opacity: 1;
  transform: translateX(0);
}

.subcategory-arrow i {
  font-size: 1rem;
  color: #2563EB;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .subcategories-section {
    padding: 1.25rem;
  }
  
  .subcategories-header h4 {
    font-size: 1rem;
  }
  
  .subcategories-header p {
    font-size: 0.8125rem;
  }
  
  .subcategory-card {
    min-width: 180px;
    height: 70px;
    padding: 0.625rem 0.875rem;
  }
  
  .subcategory-icon-wrapper {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
  
  .subcategory-icon-wrapper i {
    font-size: 1.25rem;
  }
  
  .subcategory-title {
    font-size: 0.8125rem;
  }
  
  .subcategory-count {
    font-size: 0.6875rem;
  }
}

@media (max-width: 480px) {
  .subcategories-section {
    padding: 1rem;
  }
  
  .subcategory-card {
    min-width: 160px;
    height: 68px;
    padding: 0.5rem 0.75rem;
  }
  
  .subcategory-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .subcategory-icon-wrapper i {
    font-size: 1.125rem;
  }
  
  .subcategory-title {
    font-size: 0.75rem;
  }
  
  .subcategory-count {
    font-size: 0.625rem;
  }

}

.coupon-banner{
  display:flex; align-items:center; gap:.75rem;
  padding:.75rem 1rem; border-radius:14px;
  background:linear-gradient(135deg, rgba(3,74,181,.08), rgba(250,191,18,.08));
  border:1px dashed rgba(3,74,181,.35);
}
.coupon-banner .icon{
  width:28px; height:28px; border-radius:9px; display:grid; place-items:center;
  background:#fff; border:1px solid var(--gtt-gray-200);
  font-size:14px; line-height:1;
}
.coupon-banner .txt-title{ font-weight:700; }
.coupon-banner .txt-sub{ color:var(--gtt-gray-500); font-size:.9rem; }


@media (max-width: 575.98px){
  body.has-sticky-checkout { padding-bottom: 84px; }


}

/* Desktop/tablet never shows the bar anyway (d-sm-none), but keep this as a guard */
@media (min-width: 576px){
  #stickyCheckoutBar { display: none !important; }
}


/* Base alert */
.alert{
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--alert-radius);
  padding: var(--alert-pad-y) calc(var(--alert-pad-x) + 12px) var(--alert-pad-y) calc(var(--alert-pad-x) + 36px);
  box-shadow: var(--alert-shadow);
  display: block;
  line-height: 1.45;
  font-size: 14px;
  margin: 8px 0;
  overflow: hidden;
  animation: alert-slide-in .18s ease-out;
}

/* Icon bubble */
.alert::before{
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: currentColor;
  mask: var(--alert-icon) no-repeat center / 14px 14px;
}

/* Close button (optional: add .alert [data-close]) */
.alert .btn-close{
  position: absolute;
  right: 10px;
  top: 8px;
  width: 30px; height: 30px;
  border: 0;
  background: none;
  opacity: .55;
  cursor: pointer;
}
.alert .btn-close::before{
  content: "✕";
  display: grid; place-items: center;
  font-size: 14px;
}
.alert .btn-close:hover{ opacity: .9 }

/* Spacing between multiple <p> lines */
.alert p{ margin: 0 0 var(--alert-gap) 0; }
.alert p:last-child{ margin-bottom: 0; }

/* Variants */
.alert-danger{
  background: var(--danger-bg);
  border-color: var(--danger-bd);
  color: var(--danger-ink);
  --alert-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M10 2a8 8 0 100 16 8 8 0 000-16zm1 11H9v-2h2v2zm0-4H9V5h2v4z'/></svg>");
}

.alert-success{
  background: var(--success-bg);
  border-color: var(--success-bd);
  color: var(--success-ink);
  --alert-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M10 2a8 8 0 100 16 8 8 0 000-16zm3.7 6.3l-4 4a1 1 0 01-1.4 0l-2-2 1.4-1.4 1.3 1.3 3.3-3.3 1.4 1.4z'/></svg>");
}

.alert-info{
  background: var(--info-bg);
  border-color: var(--info-bd);
  color: var(--info-ink);
  --alert-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M10 2a8 8 0 100 16 8 8 0 000-16zm1 11H9V9h2v4zm0-6H9V5h2v2z'/></svg>");
}

.alert-warning{
  background: var(--warn-bg);
  border-color: var(--warn-bd);
  color: var(--warn-ink);
  --alert-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M10.9 2.7a1 1 0 00-1.8 0L1.7 16a1 1 0 00.9 1.5h14.8a1 1 0 00.9-1.5L10.9 2.7zM11 14H9v-2h2v2zm0-4H9V7h2v3z'/></svg>");
}

/* Entry animation */
@keyframes alert-slide-in{
  from{ transform: translateY(-6px); opacity: 0 }
  to{ transform: translateY(0); opacity: 1 }
}

/* Optional: container helper for stacking */
.alert-stack{
  display: grid;
  gap: 10px;
}

.category-sidebar{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 18px;
  overflow: hidden;
}
.category-header{
  background: linear-gradient(90deg, rgba(3,74,181,.08), transparent);
  color: var(--ink);
  font-weight: 700;
}
.category-list{ padding: 8px 10px 12px; }
.category-item > a{
  color: var(--ink);
  background: linear-gradient( to right, transparent, transparent );
  border: 1px solid transparent;
  transition: all .18s ease;
}
.category-item > a:hover{
  transform: translateX(2px);
  background: linear-gradient(90deg, rgba(3,74,181,.06), transparent 70%);
  border-color: var(--border);
  box-shadow: inset 0 0 0 1px rgba(3,74,181,.06);
}
.category-item.active > a{
  background: linear-gradient(90deg, rgba(3,74,181,.12), transparent 70%);
  border-left: 3px solid var(--primary);
  box-shadow: inset 0 0 0 1px rgba(3,74,181,.14);
}

/* ========= Right Pane / Product Main Bar ========= */
.product-main-bar{
  background: transparent;
}
.main-bar-header{
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 6px 10px 0;
}
.main-bar-header h5{
  display:flex; align-items:center; gap:10px;
  font-weight: 800; letter-spacing:.2px; margin:0;
  background: linear-gradient(90deg, var(--primary), #6ea8fe);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* Card that wraps list (“Orders list…”) */
.product-main-bar .border.rounded,
.product-main-bar .card,
.product-main-bar .shadow-sm{
  border-color: var(--border) !important;
  border-radius: var(--radius) !important;
  background: var(--card) !important;
  box-shadow: var(--shadow) !important;
}

/* ========= Utilities / Inputs ========= */
.input-group .input-group-text{
  background: linear-gradient(90deg, rgba(3,74,181,.06), transparent);
  border-color: var(--border);
}
.form-control{
  border-color: var(--border);
  border-radius: 5px;
}
.form-control:focus{
  border-color: rgba(3,74,181,.5);
  box-shadow: 0 0 0 3px rgba(3,74,181,.12);
}

/* Buttons */
.btn-gold, .btn.btn-gold{
  background: linear-gradient(90deg, var(--accent), #ffcf4a);
  color: #1f2937;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(250,191,18,.25);
}
.btn-gold:hover{ filter: brightness(1.02); transform: translateY(-1px); }

/* ========= Generic “card list” row spacing ========= */
.row.g-3 > [class*="col-"]{ transition: transform .18s ease; }
.row.g-3 > [class*="col-"]:hover{ transform: translateY(-2px); }

/* ========= Nice empty-state ========= */
.empty-state{
  text-align:center; color: var(--muted); padding: 28px 12px;
}
.empty-state img{ max-width: 220px; opacity:.9; }
.empty-state .title{ font-weight: 800; color: var(--ink); }

/* ========= Subtle separators ========= */
.hr-soft{
  height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 16px 0;
}

/* ========= Responsive tweaks ========= */
@media (max-width: 991.98px){
  .category-sidebar{ position: static; }
  .main-bar-header{ padding-right:0; }
}

/* Keep offcanvas above custom headers/bars/backdrops */
/* =========================
   Callout (accessible + premium)
   ========================= */

.callout {
  --co-bg: #fff8e6;           /* default (warning-ish) background */
  --co-border: #f7d48b;       /* border tint */
  --co-ink: #5b3a00;          /* text color */
  --co-icon: #c97a00;         /* icon color */

  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .75rem;
  align-items: start;

  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--co-border);
  background: linear-gradient(180deg, var(--co-bg), color-mix(in srgb, var(--co-bg) 85%, #fff));
  box-shadow: 0 10px 24px rgba(0,0,0,.07);

}

.callout .icon {
  font-size: 1.25rem;
  line-height: 1;
  color: var(--co-icon);
  margin-top: .15rem;
}

.callout .title {
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--co-ink);
  margin-bottom: .2rem;
}

.callout > div { /* text column */
  color: color-mix(in srgb, var(--co-ink) 85%, #000 15%);
  font-size: .95rem;
}

/* Hover/Focus (if it’s focusable inside a button/link container) */
.callout:focus-within {
  outline: 2px dashed color-mix(in srgb, var(--co-icon) 75%, #000 25%);
  outline-offset: 3px;
}

/* =========================
   Variants (add one of these classes)
   ========================= */

/* Warning (default) */
.callout--warning {
  --co-bg: #fff8e6;
  --co-border: #f7d48b;
  --co-ink: #5b3a00;
  --co-icon: #c97a00;
}

/* Info */
.callout--info {
  --co-bg: #eef6ff;
  --co-border: #b9d8ff;
  --co-ink: #0b2e55;
  --co-icon: #1f6fd6;
}

/* Success */
.callout--success {
  --co-bg: #edfbee;
  --co-border: #b9e8c0;
  --co-ink: #0e4422;
  --co-icon: #1c7d4b;
}

/* Danger */
.callout--danger {
  --co-bg: #fff0f1;
  --co-border: #f5b6bf;
  --co-ink: #5d1117;
  --co-icon: #c22737;
}

/* Neutral */
.callout--neutral {
  --co-bg: #f6f8fb;
  --co-border: #d7dce5;
  --co-ink: #1f2937;
  --co-icon: #4b5563;
}

/* =========================
   Dark mode
   ========================= */


/* =========================
   Reduced motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  .callout { transition: none !important; }
}



.cmp-page{ background: linear-gradient(180deg,#f7faff 0%,#fbfcff 100%); }
.cmp-hero{ position:relative; }
.cmp-hero .lead{ color:#6b7280 !important; }
.cmp-hero-art{
  height: 360px;
  border-radius: 22px;
  background-size: cover; background-position: center;
  box-shadow: 0 12px 28px rgba(20,40,120,.10);
}
.cmp-section{ padding: 36px 0; }
.cmp-section + .cmp-section{ padding-top: 28px; }
.cmp-card{
  border:1px solid rgba(3,74,181,.08);
  border-radius: 18px; background:#fff;
  box-shadow: 0 8px 18px rgba(20,40,120,.06);
}
.cmp-highlight{
  min-height: 200px;
  border:1px solid rgba(3,74,181,.08);
  border-radius: 16px; background:#fff; padding:16px 18px;
  box-shadow: 0 6px 14px rgba(20,40,120,.05);
}
.cmp-dot{ display:inline-block; width:10px; height:10px; border-radius:50%; background:#034ab5; margin-right:8px; vertical-align:middle; }
.cmp-split-blue{ background: linear-gradient(180deg,#f1f6ff 0%, #ffffff 60%); }

.cmp-divider{
  background:#0b1430; color:#e8eefc; padding: 18px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -1px 0 rgba(0,0,0,.1);
  margin: 8px 0 0;
  letter-spacing:.2px;
}

.cmp-leader{
  border-radius: 18px; overflow:hidden;
  min-height: 625px;
}
.cmp-leader img{
  width:100%; height: 300px; object-fit: cover; border-bottom:1px solid rgba(0,0,0,.06);
  background:#eef2ff;
}

/* KPIs */
.cmp-kpi{
  border:1px solid rgba(3,74,181,.08);
  border-radius: 14px; padding:14px 16px; background:#fff;
  box-shadow: 0 6px 14px rgba(20,40,120,.05);
  text-align:center;
}
.cmp-kpi-value{ font-size: 28px; font-weight: 800; color:#0f172a; }
.cmp-kpi-label{ color:#9aa6bd; font-weight: 700; letter-spacing:.2px; }

/* Pills rail */
.cmp-section-nav{
  position: sticky; top: 0; z-index: 3; background: rgba(255,255,255,.75); backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(3,74,181,.06);
}
.cmp-rail{ gap: 8px; flex-wrap: nowrap; overflow: auto; scrollbar-width: thin; }
.cmp-pill{
  background:#fff; border:1px solid rgba(3,74,181,.12); color:#0f172a; border-radius: 999px;
  padding: 8px 14px; text-decoration:none; font-weight:600; white-space:nowrap;
}
.cmp-pill:hover{ color:#034ab5; border-color: rgba(3,74,181,.28); }

/* Reveal animation */
.cmp-reveal{ opacity:0; transform: translateY(12px); transition: all .5s ease; }
.cmp-reveal.in{ opacity:1; transform: none; }

/* ===== Branch List (light/premium) ===== */
.branch-wrap{ background: #f7f9ff; border-radius: 18px; padding: 12px; }
.branch-search .input-group-text{ border-radius: 12px 0 0 12px; }
.branch-search .form-control{ border-radius: 0; }
.branch-search .btn{ border-radius: 0 12px 12px 0; }

.br-pill{
  border:1px solid rgba(3,74,181,.12);
  border-radius: 999px; background:#fff; padding:8px 14px;
  font-weight:600; color:#0f172a;
}
.br-pill:hover{ color:#034ab5; border-color: rgba(3,74,181,.28); }
.br-pill.active{
  background: linear-gradient(180deg,#ffffff 0%, #f1f6ff 100%);
  border-color: rgba(3,74,181,.28); color:#034ab5;
  box-shadow: 0 6px 14px rgba(3,74,181,.08);
}

.br-card{ border-radius: 18px; }
.br-avatar{
  width: 42px; height:42px; border-radius: 12px; flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  background:#eef3ff; border:1px solid rgba(3,74,181,.12);
  color:#5473d8;
}
.br-title{ font-size:1.1rem; font-weight:800; color:#0f172a; }

.br-table{ width:100%; font-size:.95rem; }
.br-value{ position: relative; }
.br-copy{
  border:0; background: transparent; margin-left:8px; cursor:pointer;
  color:#8aa0d8;
}
.br-copy:hover{ color:#466be8; }

.br-btn{
  border:1px solid rgba(3,74,181,.12); background:#fff; color:#0f172a; font-weight:600;
}
.br-btn:hover{ border-color: rgba(3,74,181,.28); color:#034ab5; }
.br-mail .bi{ }
.br-call .bi{ }
.br-loc .bi{ }