:root {
  --accent: #1D4ED8;
  --bg-dark: #0F172A;
  --text-main: #0F172A;
  --text-dim: #64748B;
  --radius-hero-img: 80px 0px 80px 0px;
  --radius-card-img: 200px 200px 90px 90px;
  --radius-staff-img: 200px 200px 0px 0px;
  --bg-section-alt: #fef8ec;
}

/* RESET BASICS */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background-color: #fff;
  color: var(--text-main);
  line-height: 1.5;
}

/* ===== GENERIC SECTION WRAPPER ===== */

section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

/* ===== HERO SECTIONS (home + about) ===== */

.hero-section,
.hero-about {
  background-color: #0F172A;
  background-image: url('https://cs.cdn-upm.com/themes/98dfb947-4a04-11ed-8bca-525400080621/assets-6/wave2.png?v=0');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero-left {
  flex: 1 1 320px;
  min-width: 260px;
}

.hero-left h1 {
  margin: 0 0 16px;
  font-size: clamp(26px, 2vw + 20px, 36px);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}

.hero-left h1 span {
  color: var(--accent);
}

.hero-left h4 {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 500;
  color: #cbd5e1;
  line-height: 1.4;
  max-width: 520px;
}

.hero-left p {
  font-size: 15px;
  line-height: 1.5;
  color: #cbd5e1;
  max-width: 520px;
  margin: 0 0 20px;
}

.hero-right {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 320px;
  max-width: 100%;
  border-radius: var(--radius-hero-img);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  display: block;
  object-fit: cover;
}

.hero-cta {
  display: inline-block;
  background-color: var(--accent);
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 600;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(29,78,216,0.4);
}
.hero-cta:hover {
  filter: brightness(.92);
  box-shadow: 0 12px 24px rgba(29,78,216,0.5);
}

/* ===== ABOUT / STORY SECTIONS WITH IMAGE BG ===== */

.about-section,
.story-section {
  background-image: url('https://cs.cdn-upm.com/themes/98dfb947-4a04-11ed-8bca-525400080621/assets-6/bg2.jpg?v=0');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ffffff;
  color: #fff;
}

.about-img-col,
.about-text-col,
.story-left,
.story-right {
  flex: 1 1 320px;
  min-width: 260px;
}

.about-img-wrap img,
.story-left img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-card-img);
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.about-text-col h4 {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
}

.about-text-col h2,
.story-right h3 {
  color: #fff;
  font-size: clamp(20px,1vw+18px,28px);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.25;
  max-width: 480px;
}

.about-text-col p,
.story-right p {
  color: #fff;
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.5;
  max-width: 520px;
}

.about-cta {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 8px;
  display: inline-block;
  font-weight: 600;
  padding: 10px 14px;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.2;
}
.about-cta:hover {
  background-color: var(--accent);
  color: #ffffff;
}

.story-right h2 {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

.emphasis-line {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin-top: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  line-height: 1.4;
  max-width: 480px;
}

/* ===== FEATURES / HIGHLIGHTS CARDS ===== */

.features-section {
  background-color: var(--bg-section-alt);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
  gap: 24px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  padding: 24px 16px;
}

.feature-icon {
  font-size: 40px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 12px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.4;
  max-width: 260px;
  margin: 0 auto;
}

/* ===== MIDDLE SPLIT ===== */

.middle-split-section,
.quality-section {
  background-color: #0F172A;
  color: #fff;
}

.middle-split-inner,
.quality-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.col-split,
.quality-col {
  flex: 1 1 260px;
  min-width: 240px;
}

.split-title,
.quality-block h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin-bottom: 8px;
}

.split-text-block,
.quality-block {
  text-align: center;
}

.split-text-block p,
.quality-block p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

.middle-img-wrap,
.quality-img-wrap {
  text-align: center;
}

.middle-img-wrap img,
.quality-img-wrap img {
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* ===== CTA / CATERING ===== */

.cta-section {
  background-color: var(--bg-section-alt);
}

.cta-block,
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.cta-img-col,
.cta-text-col,
.cta-left,
.cta-right {
  flex: 1 1 320px;
  min-width: 260px;
  text-align: center;
}

.cta-img-grid,
.cta-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.cta-img-card img,
.cta-photo-card img {
  width: 220px;
  max-width: 100%;
  border-radius: 150px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: block;
}

.cta-text-col h2,
.cta-right h2 {
  font-size: clamp(20px,1vw+18px,28px);
  font-weight: 600;
  color: #0F172A;
  margin: 0 0 16px;
  line-height: 1.2;
  text-align: center;
}

.cta-text-col h4,
.cta-right p {
  font-size: 15px;
  font-weight: 500;
  color: #64748B;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 20px auto;
  text-align: center;
}

.cta-center-btn {
  text-align: center;
}

.cta-btn {
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(29,78,216,0.4);
  display: inline-block;
}
.cta-btn:hover {
  filter: brightness(.92);
  box-shadow: 0 12px 24px rgba(29,78,216,0.5);
}

/* ===== FOOTER ===== */

.site-footer {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  color: #64748B;
  font-size: 13px;
  line-height: 1.4;
  border-top: 1px solid #e9ecef;
}

.footer-nav {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
}

.footer-nav a {
  color: #1E293B;
  text-decoration: none;
  font-weight: 500;
}
.footer-nav a:hover,
.footer-nav a.active {
  color: var(--accent);
}

.footer-contact {
  font-size: 13px;
  color: #495057;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer-contact i {
  color: #1E293B;
  margin-right: 4px;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 768px) {
  .section-inner,
  .middle-split-inner,
  .quality-inner,
  .cta-block,
  .cta-inner {
    padding: 60px 20px;
  }
}

/* ===== GALLERY PAGE ===== */

.gallery-section {
  background-color: #fff;
}

.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.gallery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.gallery-header h1 {
  margin: 0 0 12px;
  font-size: clamp(24px,1vw+20px,32px);
  font-weight: 600;
  line-height: 1.2;
  color: #0F172A;
}

.gallery-header p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #64748B;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%,320px),1fr));
  gap: 24px;
  justify-items: center;
}

.gallery-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.gallery-card-imgwrap {
  width: 100%;
  background: #000;
}

.gallery-card-imgwrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

.gallery-card-body {
  padding: 16px 18px 20px;
  text-align: center;
}

.gallery-card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.3;
}

.gallery-card-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #64748B;
}

.gallery-cta-block {
  text-align: center;
  margin-top: 48px;
  background-color: var(--bg-section-alt);
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.gallery-cta-block h2 {
  margin: 0 0 10px;
  font-size: clamp(20px,1vw+18px,26px);
  font-weight: 600;
  line-height: 1.25;
  color: #0F172A;
}

.gallery-cta-block p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #64748B;
  max-width: 480px;
  display: inline-block;
}

.gallery-cta-btn {
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 10px 20px rgba(29,78,216,0.4);
  display: inline-block;
}
.gallery-cta-btn:hover {
  filter: brightness(.92);
}

/* ===== CONTACT PAGE ===== */

.contact-section {
  background-color: #fff;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-left {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 480px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  padding: 20px 20px 18px;
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  color: #0F172A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-card h2 i {
  font-size: 16px;
  color: var(--accent);
}

.contact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #64748B;
}

.contact-card p strong {
  color: #0F172A;
  font-weight: 600;
}

.hours-list {
  font-size: 14px;
  line-height: 1.5;
  color: #64748B;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e9ecef;
  padding: 6px 0;
  font-size: 14px;
  color: #0F172A;
}
.hours-day {
  font-weight: 500;
  color: #0F172A;
}
.hours-time {
  color: #64748B;
  font-weight: 400;
}

.contact-right {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 520px;
  background-color: var(--bg-section-alt);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  padding: 24px 20px 20px;
}

.contact-right h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.3;
  text-align: left;
}

.contact-right p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #64748B;
  max-width: 460px;
}

.contact-form-group {
  margin-bottom: 16px;
}
.contact-form-label {
  font-size: 13px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 4px;
  display: block;
}
.contact-form-control {
  width: 100%;
  font-size: 14px;
  line-height: 1.4;
  font-family: inherit;
  padding: 10px 12px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  outline: none;
}
.contact-form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.3);
}

.contact-submit-btn {
  background-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(29,78,216,0.4);
}
.contact-submit-btn:hover {
  filter: brightness(.92);
}

.contact-note-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: space-between;
}

.note-left,
.note-right {
  flex: 1 1 320px;
  min-width: 260px;
}

.note-card {
  background: #0F172A;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.6);
  padding: 24px 20px;
  border: 1px solid rgba(255,255,255,0.05);
  height: 100%;
}

.note-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.3;
}

.note-card p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.note-map-box {
  width: 100%;
  border-radius: 16px;
  background: #1E293B;
  color: #adb5bd;
  font-size: 13px;
  line-height: 1.4;
  min-height: 220px;
  border: 1px solid rgba(0,0,0,0.5);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.note-map-box small {
  color: #868e96;
  display: block;
  margin-top: 8px;
}

@media (max-width:768px) {
  .contact-inner {
    padding: 60px 20px;
  }
  .contact-note-area {
    padding: 0 20px 60px;
  }
}

/* --- BOOTSTRAP-FRIENDLY MENU & CART STYLES --- */

.menu-page {
  background-color: #f8f9fa;
}

/* Sticky category list (Desktop) */
.menu-categories {
  position: sticky;
  top: 86px;
  align-self: start;
}

.category-list a {
  color: #495057;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.category-list a:hover {
  background-color: #e9ecef;
  color: #ffffff;
}
.category-list a.active {
  background-color: #fff;
  border-left-color: var(--accent);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

/* Cart Animations */
.cart-line.removing {
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-100%);
  max-height: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  border: 0 !important;
}

.qty-value.changing {
  animation: quantityPop 0.3s ease;
}
@keyframes quantityPop {
  50% { transform: scale(1.3); color: var(--accent); }
}

.cart-summary-row.total.highlight {
  animation: highlightPulse 1s ease;
}
@keyframes highlightPulse {
  50% { background-color: rgba(29, 78, 216, 0.1); }
}

.bs-toast-container {
  z-index: 1080;
}

/* --- IMPROVED CART STYLES (Sidebar) --- */
.cart-sidebar {
  /* Fix: Use 100% height to fill the sticky container */
  height: 100%; 
  display: flex;
  flex-direction: column;
  background: #fff;
  /* Remove old max-height limits */
  max-height: none !important; 
}

.cart-sidebar .card-body {
  display: flex;
  flex-direction: column;
  /* Prevent the body itself from scrolling; we only want the items to scroll */
  overflow: hidden; 
  flex-grow: 1;
}

/* Store Info Section (Top) */
.store-card {
  flex-shrink: 0; 
  flex-grow: 0 !important;
  height: auto;
}

/* Cart Items Area (Middle - Scrollable) */
.cart-items-container {
  flex-grow: 1;           /* Expand to fill empty space */
  overflow-y: auto;       /* Enable vertical scrolling */
  overflow-x: hidden;
  min-height: 0;          /* Vital for flexbox scrolling */
  max-height: none !important; /* Override any previous fixed limits */
  padding-right: 5px;
  margin-bottom: 1rem;
}

/* Custom Scrollbar for Items */
.cart-items-container::-webkit-scrollbar {
  width: 6px;
}
.cart-items-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.cart-items-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
.cart-items-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Cart Footer/Summary (Bottom - Fixed) */
.cart-summary-block {
  flex-shrink: 0;
  background: #fff; /* Ensure background covers scrolling items if they overlap */
  z-index: 2;
}

/* Override any potential media query limits from earlier versions */
@media (max-height: 700px) {
  .cart-sidebar { max-height: none !important; }
  .cart-items-container { max-height: none !important; }
}

/* ===== MY ORDERS PAGE ENHANCEMENTS ===== */
.page-my-orders {
  background-color: #f8f9fa;
}

.page-my-orders .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease-in-out;
}
.page-my-orders .accordion-item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.page-my-orders .accordion-header {
  border-bottom: 0; 
}

.page-my-orders .accordion-button {
  background-color: #ffffff;
  color: #0F172A;
  font-weight: 500;
  padding: 1rem 1.25rem;
}

.page-my-orders .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(29, 78, 216, 0.25);
  border-color: rgba(0,0,0,0.05);
}

.page-my-orders .accordion-button:not(.collapsed) {
  background-color: #fcfcfc;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08);
  color: #0F172A;
}

.page-my-orders .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: scale(0.9) translateY(0);
  transition: transform 0.2s ease-in-out;
}
.page-my-orders .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e");
  transform: translateY(0);
}

.page-my-orders .accordion-button .badge {
  font-size: 0.8rem;
  padding: 0.4em 0.7em;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.card-empty-state {
  border-radius: 12px;
  border: 2px dashed #dee2e6;
  background-color: #fff;
}
.card-empty-state .btn-accent {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
}
.card-empty-state .btn-accent:hover {
    background-color: var(--accent);
    filter: brightness(0.9);
}

/* --- MOBILE UI ENHANCEMENTS --- */

/* 1. Glassmorphic Sticky Category Nav */
.mobile-category-nav {
  position: -webkit-sticky;
  position: sticky;
  top: 62px; 
  z-index: 1020;
  
  background-color: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  
  border-bottom: 1px solid rgba(0,0,0,0.05); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.02); 
  transition: top 0.2s ease;
}

@media (max-width: 480px) {
  .mobile-category-nav {
    top: 56px; 
  }
}

/* 2. Clean Category Pills */
.category-link-mobile {
  border: none;
  background-color: #f1f3f5; 
  color: #495057;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 100px; 
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
}

.category-link-mobile:hover {
  background-color: #e9ecef;
  color: #0F172A;
}

.category-link-mobile.active {
  background-color: #0F172A !important; 
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(33, 37, 41, 0.25);
  transform: translateY(-1px); 
}

/* 3. Floating Cart Island (White Theme) */
.mobile-cart-floating {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1025;
  
  width: calc(100% - 32px);
  max-width: 500px;
  
  background-color: #ffffff;
  color: #0F172A;
  
  border-radius: 16px;
  padding: 12px 20px;
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
  
  animation: floatUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes floatUp {
  from { transform: translate(-50%, 20px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}

.cart-floating-count {
  font-size: 0.75rem;
  color: #64748B; 
  font-weight: 500;
  line-height: 1.2;
}

.cart-floating-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0F172A; 
  line-height: 1.2;
}

.btn-accent-floating {
  background-color: var(--accent);
  color: #ffffff;
  font-size: 0.9rem;
  height: 40px;
  border: none;
  transition: filter 0.2s;
}
.btn-accent-floating:active {
  filter: brightness(0.9);
}

/* Misc Tweaks */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Offcanvas Tweaks */
@media (max-width: 991px) {
  #mobileCartOffcanvas {
    height: 85vh !important;
  }
  
  #mobileCartOffcanvas .cart-sidebar {
    height: 100% !important;
    max-height: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
}

.sticky-top { overflow-y: auto; scrollbar-width: thin; }