/* FILE: css/global.css (Vibe 4.2 - Final Fixes + PERSISTENT CART STYLES) */

:root {
  --bg: #000000;
  --panel-dark: #070707;
  --panel-light: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #ccc;
  --text-muted: #9b9b9b;
  --neon-cyan: #00f5ff;
  --neon-magenta: #f0f;
  --neon-purple: #7f00ff;
  --gold: #FFD700;
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --max-width: 1200px;
  --transition: all 0.35s cubic-bezier(.25,.8,.25,1);
  --glow-shadow-primary: 0 0 18px rgba(0, 255, 255, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg); color: var(--text-primary);
  font-family: var(--font-body); line-height: 1.6;
  overflow-x: hidden; position: relative;
}

body::-webkit-scrollbar { width: 8px; }
body::-webkit-scrollbar-track { background: #0a0a0a; }
body::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--neon-purple), var(--neon-cyan)); border-radius: 4px; }

#vibeCanvas { position: fixed; inset: 0; z-index: -1; display: block; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }
.dark-block { background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 1; /* Lower z-index for backgrounds */ }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; margin: 0 0 15px; color: var(--text-primary); }
h1 { font-weight: 900; font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-weight: 700; font-size: 1.5rem; }
p { margin: 0 0 1rem; color: var(--text-secondary); max-width: 65ch; }
.muted { color: var(--text-muted); }
a { color: var(--neon-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--text-primary); text-shadow: 0 0 8px var(--neon-cyan); }
.highlight { color: var(--neon-cyan); font-weight: 600; }

#main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 15px 0; transition: background-color 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease; background-color: transparent; backdrop-filter: none; border-bottom: 1px solid transparent; }
#main-header.scrolled { background-color: rgba(10, 10, 10, 0.7); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
/* FILE: css/global.css (Add Cart Button Styles) */

/* --- Header Cart Button --- */

/* ===============================
   FORCE CART COUNT ABOVE ALL
   =============================== */

   .cart-toggle-btn {
    position: relative;
    z-index: 10001;
  }
  
  .cart-toggle-btn .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
  
    z-index: 10002; /* 🔥 higher than any page content */
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
  
    background: var(--neon-cyan);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
  
    pointer-events: none;
  }
  
.cart-toggle-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem; /* Icon size */
  cursor: pointer;
  position: relative; /* For the count badge */
  padding: 5px;
  margin-left: 15px; /* Space from nav or hamburger */
  opacity: 0.9;
  transition: var(--transition);
}
.cart-toggle-btn:hover {
  opacity: 1;
  color: var(--neon-cyan);
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: var(--neon-cyan);
  color: var(--bg);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-body);
  transform: scale(0.9); /* Start slightly small */
  transition: transform 0.2s ease;
}
.cart-toggle-btn .cart-count.updated { /* Pop effect when updated */
  transform: scale(1.1);
}
.cart-toggle-btn .cart-count[data-count="0"] { /* Hide badge when count is 0 */
  opacity: 0;
  transform: scale(0.5);
  visibility: hidden;
}


/* Adjust hamburger margin if needed */
.hamburger {
  margin-left: 5px; /* Reduce margin if cart button is present */
}

/* Ensure mobile nav shows cart button too */
@media (max-width: 900px) {
  .cart-toggle-btn {
      display: inline-block; /* Ensure visible */
  }
}

/* --- Keep other global styles --- */
/* ** Logo Size Fix ** */
#main-header .logo img { height: 80px; display: block; } /* Increased size */

.nav-links { display: flex; list-style: none; padding: 0; gap: 25px; }
.nav-link { color: var(--text-primary); text-decoration: none; font-weight: 500; opacity: 0.9; padding: 5px 0; position: relative; font-size: 0.95rem; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--neon-cyan); transition: width 0.3s ease; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--neon-cyan); opacity: 1; text-shadow: 0 0 5px var(--neon-cyan); }
.hamburger { display: none; background: transparent; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* Button System */
.btn { position: relative; display: inline-block; padding: 12px 32px; border-radius: 8px; font-weight: 600; letter-spacing: 0.5px; font-family: var(--font-body); cursor: pointer; border: none; transition: all 0.35s ease; overflow: hidden; text-transform: uppercase; text-decoration: none; text-align: center; z-index: 1; }
.btn::before { content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%; background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0)); transform: skewX(-25deg); transition: left 0.5s; z-index: -1; }
.btn:hover::before { left: 125%; }
.btn-primary { background: linear-gradient(135deg, var(--neon-cyan), #00b7ff); color: #000; box-shadow: var(--glow-shadow-primary); }
.btn-primary:hover { background: linear-gradient(135deg, #00d5ff, var(--neon-cyan)); transform: translateY(-3px) scale(1.03); box-shadow: 0 0 30px rgba(0, 255, 255, 0.5); }
.btn-outline, .btn-secondary { border: 2px solid rgba(255, 255, 255, 0.7); color: var(--text-primary); background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(6px); box-shadow: 0 0 10px rgba(255,255,255,0.1); }
.btn-outline:hover, .btn-secondary:hover { background: rgba(0, 245, 255, 0.1); color: var(--neon-cyan); border-color: var(--neon-cyan); transform: translateY(-3px); box-shadow: 0 0 25px rgba(0, 255, 255, 0.4); }
.btn:active { transform: scale(0.97); box-shadow: none; }

/* FILE: css/global.css (Replace Footer Styles) */

/* --- FOOTER SECTION [Vibe 4.3 - Logo & Centered Copyright] --- */
#main-footer {
  background-color: rgba(10, 10, 10, 0.7); backdrop-filter: blur(14px);
  padding: 30px 0 15px; color: #999;
  position: relative; z-index: 10; font-size: 0.9rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-bottom: 25px; align-items: start;
}

/* Styles for the NEW footer logo */
.footer-logo-img {
  width: 150px; /* Adjust size as needed */
  height: auto;
  margin-bottom: 3px; /* Space below logo */
  opacity: 0.8;
  transition: var(--transition);
}
.footer-logo-img:hover {
  opacity: 1;
}
/* Center logo and text in first column if needed */
.footer-col:first-child {
  /* text-align: center; */ /* Uncomment to center logo/text */
}


.footer-col h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--secondary-color); margin-bottom: 10px; letter-spacing: 0.5px; }
.footer-col p, .footer-col ul { color: #999; margin: 0 0 6px 0; font-size: 0.85rem; line-height: 1.5; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col a { color: #bbb; position: relative; padding-bottom: 2px; text-decoration: none; transition: color 0.3s ease; }
.footer-col a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background-color: var(--neon-cyan); transition: width 0.3s ease; }
.footer-col a:hover { color: var(--neon-cyan); text-shadow: none; }
.footer-col a:hover::after { width: 100%; }
.footer-col .icon { margin-right: 8px; color: var(--neon-cyan); opacity: 0.7; width: 1.2em; text-align: center; }
.footer-col p a:hover .icon { opacity: 1; }
.footer-col:first-child h4 { margin-top: 0; } /* Adjust if logo makes heading too low */
.footer-col:first-child p { font-style: italic; opacity: 0.7; font-size: 0.85rem; margin-bottom: 0; }

.copyright {
  text-align: center; /* *** ENSURE COPYRIGHT IS CENTERED *** */
  padding-top: 15px; margin-top: 25px;
  color: #666; font-size: 0.8rem; position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.copyright::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 50px; height: 1px; background: var(--neon-cyan); opacity: 0.5; box-shadow: 0 0 8px var(--neon-cyan); animation: pulseLine 2.5s ease-in-out infinite; }
@keyframes pulseLine { 0%, 100% { opacity: 0.4; box-shadow: 0 0 6px var(--neon-cyan); } 50% { opacity: 0.8; box-shadow: 0 0 12px var(--neon-cyan); } }

.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background-color: #25D366; color: white; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); z-index: 999; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1) rotate(10deg); color: white; }
/* --- End of Footer Correction --- */
/* Modals */
#protection-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(10px); z-index: 10001; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
#protection-modal.visible { opacity: 1; pointer-events: all; }
.modal-content { background: var(--panel-dark); border: 1px solid var(--border-color); padding: 30px 40px; border-radius: var(--radius); text-align: center; }
.modal-content h3 { color: var(--neon-cyan); margin-bottom: 15px; }
.modal-content p { color: var(--text-secondary); margin-bottom: 25px; }

#mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 5, 5, 0.9); backdrop-filter: blur(15px); z-index: 10002; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
#mobile-nav.active { opacity: 1; pointer-events: all; }
#mobile-nav .close-btn { position: absolute; top: 20px; right: 20px; background: transparent; border: none; color: var(--text-primary); font-size: 2.5rem; cursor: pointer; }
#mobile-nav ul { list-style: none; text-align: center; padding: 0; }
#mobile-nav ul li { margin: 20px 0; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
#mobile-nav.active ul li { opacity: 1; transform: translateY(0); }
#mobile-nav.active ul li:nth-child(1) { transition-delay: 0.2s; }
#mobile-nav.active ul li:nth-child(2) { transition-delay: 0.3s; }
#mobile-nav.active ul li:nth-child(3) { transition-delay: 0.4s; }
#mobile-nav.active ul li:nth-child(4) { transition-delay: 0.5s; }
#mobile-nav ul li a { color: var(--text-primary); font-family: var(--font-heading); font-size: clamp(1.5rem, 5vw, 2.5rem); text-decoration: none; }
#mobile-nav ul li a:hover { color: var(--neon-cyan); text-shadow: 0 0 15px var(--neon-cyan); }

/* Utilities */
.split-text { overflow: hidden; display: inline-block; }
.split-text .char { display: inline-block; }

/* --- RESPONSIVE STYLES --- */

/* Medium Devices (Tablets, smaller desktops - up to 1024px) */
@media (max-width: 1024px) {
  .container {
      max-width: 90%; /* More fluid width */
  }
  h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
  .section-padding { padding: 80px 0; } /* Slightly less padding */
}


/* Small Devices (Tablets Portrait & Large Phones - up to 768px) */
@media (max-width: 768px) {
  /* Show Hamburger, Hide Desktop Nav */
  .nav-links { display: none; }
  .hamburger { display: block; } /* Show hamburger icon */

  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }

  .section-padding { padding: 60px 0; } /* Further reduce padding */

  /* Make buttons slightly smaller */
  .btn { padding: 10px 24px; font-size: 0.85rem; }

  /* Footer adjustments */
  .footer-grid {
      grid-template-columns: 1fr; /* Stack columns */
      text-align: center; /* Center-align stacked columns */
      gap: 30px;
  }
  .footer-col:first-child p { /* Center tagline */
     margin-left: auto;
     margin-right: auto;
  }
  .footer-col ul {
      padding: 0;
  }
  .footer-col .icon {
      display: inline-block; /* Ensure icons show correctly */
      width: auto; /* Allow natural width */
  }
  .copyright::before { width: 40px; } /* Smaller neon line */
}

/* Extra Small Devices (Phones - up to 480px) */
@media (max-width: 480px) {
  body { line-height: 1.5; } /* Adjust line height for smaller text */
  .container { padding: 0 15px; } /* Less horizontal padding */
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.6rem; }

  .section-padding { padding: 50px 0; }

  .btn { padding: 9px 20px; font-size: 0.8rem; } /* Even smaller buttons */

  /* Further reduce footer size */
  #main-footer { padding: 25px 0 10px; font-size: 0.85rem;}
  .footer-grid { gap: 20px; margin-bottom: 20px; }
  .footer-col h4 { font-size: 0.95rem; margin-bottom: 8px; }
  .footer-col p, .footer-col ul { font-size: 0.8rem; }
  .copyright { font-size: 0.75rem; padding-top: 15px; margin-top: 20px;}

  .whatsapp-float { width: 50px; height: 50px; font-size: 1.6rem; bottom: 15px; right: 15px; }
}

/* --- Vibe Cart Sidebar (Global Styles Added) --- */
.vibe-cart-sidebar { 
    position: fixed; 
    top: 0; 
    right: 0; 
    width: 320px; 
    max-width: 90%; 
    height: 100%; 
    background: rgba(10, 10, 10, 0.85); /* Fixed positioning and dark background */
    backdrop-filter: blur(15px); 
    border-left: 1px solid var(--border-color); 
    z-index: 1050; /* High z-index */
    display: flex; 
    flex-direction: column; 
    box-shadow: -10px 0 30px rgba(0,0,0,0.4); 
    transform: translateX(100%); /* Hides it off-screen */
    visibility: hidden; 
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s; 
}
.vibe-cart-sidebar.open { 
    transform: translateX(0); /* Slides it into view */
    visibility: visible; 
}

/* --- Cart Overlay --- */
.cart-overlay { 
    position: fixed; 
    inset: 0; 
    background: rgba(0,0,0,0.5); 
    z-index: 1040; 
    opacity: 0; 
    visibility: hidden; 
    transition: opacity 0.4s ease, visibility 0.4s ease; 
}
.cart-overlay.open { 
    opacity: 1; 
    visibility: visible; 
}

/* --- Cart Content Styles (Required for basic visual display on all pages) --- */
.cart-close-btn { 
    position: absolute; top: 10px; left: 10px; 
    background: rgba(255,255,255,0.1); border: none; 
    border-radius: 50%; color: var(--text-primary); 
    font-size: 1.2rem; line-height: 1; width: 30px; height: 30px; 
    cursor: pointer; display: flex; align-items: center; justify-content: center; 
    transition: background 0.3s ease; 
}
.cart-close-btn:hover { background: rgba(255,255,255,0.2); }

.vibe-cart-sidebar h3 { 
    font-family: var(--font-heading); font-size: 1.3rem; 
    color: var(--text-primary); text-align: center; 
    padding: 15px; margin: 0; margin-top: 5px; 
    border-bottom: 1px solid var(--border-color); 
}

.cart-items-list { 
    flex-grow: 1; overflow-y: auto; padding: 15px; 
}
.cart-empty-message { 
    color: var(--text-muted); text-align: center; 
    margin-top: 30px; font-style: italic; 
} 
.cart-summary { 
    padding: 20px 15px; 
    border-top: 1px solid var(--border-color); 
    background: rgba(0,0,0,0.3); 
}
.cart-total { 
    display: flex; justify-content: space-between; 
    align-items: center; margin-bottom: 15px; 
    font-size: 1.1rem; font-weight: 600; 
}
.cart-total span:last-child { 
    color: var(--neon-cyan); font-family: var(--font-heading); 
}
.btn-order-cart { 
    width: 100%; padding: 10px 20px; font-size: 0.9rem; 
}
.btn-order-cart i { margin-right: 8px; }


/* ===============================
   BACK TO TOP (MOBILE ONLY)
=============================== */
/* ===============================
   NEXT-GEN BACK TO TOP (MOBILE)
=============================== */

.back-to-top {
  position: fixed;
  right: 17px;
  bottom: 73px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,245,255,0.6);
  z-index: 999;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.9);
  transition: all 0.35s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 0 14px rgba(0,245,255,0.35);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Arrow */
.back-to-top .arrow {
  position: absolute;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0,245,255,0.8);
  transition: transform 0.3s ease;
}

/* Progress ring */
.progress-ring {
  position: absolute;
  transform: rotate(-90deg);
}

.progress-bg {
  fill: none;
  stroke: rgba(255,255,255,0.1);
  stroke-width: 2;
}

.progress-bar {
  fill: none;
  stroke: var(--neon-cyan);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 132;
  stroke-dashoffset: 132;
  transition: stroke-dashoffset 0.2s linear, stroke 0.2s;
  filter: drop-shadow(0 0 6px rgba(0,245,255,0.8));
}

/* ================================
   SHIPPING SECTION – CLEAN & SUBTLE
   Uses --neon-cyan
================================ */

/* Wrapper */
.shipping-box {
  margin: 16px 0;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Label */
.shipping-label {
  font-size: 14px;
  font-weight: 500;
  color: #eaeaea;
  display: flex;
  align-items: center;
  gap: 8px;
}

.shipping-label i {
  font-size: 13px;
  color: var(--neon-cyan);
}

/* Dropdown */
.shipping-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #0f0f0f;
  color: #ffffff;
  font-size: 14px;
}

.shipping-select:focus {
  outline: none;
  border-color: var(--neon-cyan);
}

/* Shipping Badge */
.shipping-badge {
  font-size: 13px;
  font-weight: 500;
  color: var(--neon-cyan);
  background: rgba(77,163,255,0.08);
  border: 1px solid rgba(77,163,255,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  width: fit-content;
}

/* Address & Note */
.address-box,
.note-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.address-box label,
.note-box label {
  font-size: 12px;
  color: #bdbdbd;
}

/* Inputs */
.address-box textarea,
.note-box input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #0f0f0f;
  color: #ffffff;
  font-size: 14px;
}

.address-box textarea {
  resize: none;
  line-height: 1.4;
}

.address-box textarea::placeholder,
.note-box input::placeholder {
  color: rgba(255,255,255,0.4);
}

.address-box textarea:focus,
.note-box input:focus {
  outline: none;
  border-color: var(--neon-cyan);
}

/* Hide helper */
.hidden {
  display: none !important;
}

/* Mobile */
@media (max-width: 640px) {
  .shipping-box {
    padding: 12px;
  }
}


/* ================================
   COMING SOON CORNER STAMP
================================ */

.coming-soon-tile {
  position: relative;
}

.corner-stamp {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 999px;
  color: var(--neon-cyan);
  background: rgba(0,255,255,0.12);
  border: 1px solid rgba(0,255,255,0.4);
  pointer-events: none;
  z-index: 2;
}


/* Subtle pulse when full */
.back-to-top.full {
  animation: pulseGlow 1.4s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 14px rgba(0,245,255,0.4); }
  50% { box-shadow: 0 0 26px rgba(0,245,255,0.9); }
}

/* Tap feedback */
.back-to-top:active .arrow {
  transform: translateY(-4px);
}

/* Desktop hidden */
@media (min-width: 769px) {
  .back-to-top { display: none; }
}

/* Item styles (Needed for cart list) */
.cart-item { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; background: rgba(255, 255, 255, 0.03); border-radius: 6px; padding: 8px; border: 1px solid transparent; }
.cart-item-img { width: 50px; height: 50px; object-fit: contain; background-color: rgba(0,0,0,0.2); border-radius: 4px; flex-shrink: 0; }
.cart-item-name { flex-grow: 1; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-remove { background: none; border: none; color: #ff4d4d; font-size: 1rem; cursor: pointer; padding: 5px; opacity: 0.7; transition: opacity 0.3s ease; margin-left: auto; flex-shrink: 0;}
.cart-item-remove:hover { opacity: 1; }

/* Responsive adjustments for sidebar (important for mobile) */
@media (max-width: 480px) {
    .vibe-cart-sidebar { width: 260px; }
    .vibe-cart-sidebar h3 { font-size: 1.1rem; }
    .cart-item-img { width: 35px; height: 35px; }
    .cart-item-name { font-size: 0.8rem; }
    .cart-total { font-size: 1rem; }
    .btn-order-cart { font-size: 0.8rem; padding: 8px 15px; }
}