:root {
  --primary: #38b6ff;
  --primary-dark: #1e90d2;
  --primary-light: #fffbf4;
  --text-dark: #2c3e50;
}

body, html {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}
body {
  padding-top: 80px;
}

/* NAVBAR */
.custom-navbar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.navbar-container {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-size: 26px;
  font-weight: bold;
  color: var(--primary);
  cursor: pointer;
}

/* Right */
.nav-right {
  display: flex;
  align-items: center;
}

/* Location */
.location-box {
  display: flex;
  align-items: center;
  background: var(--primary-light);
  padding: 7px 14px;
  border-radius: 10px;
  cursor: pointer;
  margin-right: 15px;
}

.location-box i {
  margin-right: 6px;
  color: var(--primary);
}

.location-box:hover {
  background: var(--primary);
  color: #fff;
}

.location-box:hover i {
  color: #fff;
}

/* Account */
.account-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
}

.account-icon:hover {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* Modals */
.booking-icon {
  font-size: 60px;
  color: var(--primary);
}

/* Auth Modal Styles */
.auth-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.auth-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 30px 20px;
  position: relative;
}

.auth-header .close {
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.8;
  font-size: 28px;
}

.auth-header .close:hover {
  opacity: 1;
}

.auth-body .input-group-text {
  background: #f8f9fa;
  border-right: none;
  color: var(--primary);
}

.auth-body .form-control {
  background: #f8f9fa;
  border-left: none;
  border-color: #ced4da;
}

.auth-body .form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
  background: #fff;
}

.auth-body .input-group-prepend .input-group-text {
  border-color: #ced4da;
}
.auth-body .form-control:focus + .input-group-text,
.auth-body .input-group:focus-within .input-group-text,
.auth-body .input-group:focus-within .form-control {
  border-color: var(--primary);
  background: #fff;
}

.google-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s;
}

.google-btn:hover {
  background: #f8f9fa;
  color: #333;
}

.auth-submit-btn {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s;
}

.auth-submit-btn:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
}

.divider {
  position: relative;
  z-index: 1;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #eee;
  z-index: -1;
}

.divider span {
  background: #fff;
  padding: 0 15px;
  font-size: 14px;
}

#toggleAuthMode {
  color: var(--primary);
  text-decoration: none;
}
#toggleAuthMode:hover {
  color: var(--primary-dark);
}


/* Services */
.services-section {
  padding: 40px 0;
  background: var(--primary-light);
}

.services-container {
  width: 60%;
  margin: auto;
  display: flex;
  gap: 25px;
}

/* LEFT MAIN CARD WRAPPER */
.services-main-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 25px;
  width: 55%;
}

.services-main-header {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

/* LEFT */
.services-left {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 20px;
  justify-content: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FLIP CARD STYLES */
.service-card-wrapper {
  perspective: 1000px;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  margin-bottom: 15px;
}

.service-card-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.service-card-wrapper.flipped .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}

.service-card-front {
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.service-card-front img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.service-card-back {
  transform: rotateY(180deg);
  padding: 12px;
  overflow-y: auto;
  font-size: 0.75rem;
}
.service-card-back h6 {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 0.8rem;
}
.service-card-back ul {
  padding-left: 15px;
  margin-bottom: 8px;
}
.service-card-back ul li {
  margin-bottom: 2px;
  color: #444;
}

/* NEW COUNTER/ADD BTN OVERLAP UI */
.add-btn-container {
  position: absolute;
  bottom: -15px; 
  right: -5px;
  z-index: 10;
}

.add-btn {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid #eaeaea;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.2s;
  padding-bottom: 2px; /* Center the + vertically */
}
.add-btn:hover {
  border-color: var(--primary);
}

.counter-pill {
  background: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  height: 36px;
}

.counter-pill button {
  background: none;
  color: var(--primary);
  border: none;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 5px;
}

.counter-pill span {
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 8px;
  font-size: 1rem;
}

.service-title {
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.service-price {
  font-weight: bold;
  color: #666;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0;
}

/* RIGHT CART */
.services-right {
  width: 45%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.cart-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 0;
}
.cart-items-pill {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
}

/* EMPTY */
.cart-empty {
  text-align: center;
  color: #aaa;
  padding: 30px 0;
}
.cart-empty i {
  font-size: 50px;
  margin-bottom: 15px;
  color: #ddd;
}

/* FILLED CART ITEM ROW */
.cart-item-row {
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  margin-bottom: 15px;
  background: #fff;
}
.cart-item-img {
  width: 48px;
  height: 48px;
  background: #f4f5f9;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}
.cart-item-img img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.cart-item-details {
  flex-grow: 1;
}
.cart-item-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.cart-item-sub {
  font-size: 0.8rem;
  color: #aaa;
  margin: 0;
}
.cart-item-price-col {
  text-align: right;
  margin-right: 12px;
}
.cart-item-price {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.95rem;
  margin: 0;
}
.cart-item-old-price {
  font-size: 0.75rem;
  color: #bbb;
  text-decoration: line-through;
  margin: 0;
}

.cart-counter-pill {
  border: 1.5px solid var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  padding: 0 4px;
  position: relative;
  min-width: 75px;
}
.cart-counter-pill button {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary);
  cursor: pointer;
  padding: 0 4px;
}
.cart-counter-pill span.cart-count-text {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-dark);
}
.cart-counter-label {
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  font-size: 0.55rem;
  font-weight: bold;
  color: #777;
  padding: 0 4px;
}

.cart-total {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px dashed #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total h5 {
  margin: 0;
  font-weight: 700;
  color: var(--text-dark);
}

.checkout-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.3s;
}


/* WHY CHOOSE US */
.why-section {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}

.slider-container {
  width: 60%;
  margin: auto;
  overflow: hidden;
  padding: 30px 10px; /* Padding allows the drop shadow to not clip on hover */
}

.why-choose-slider {
  display: flex;
  gap: 30px;
  width: calc((280px + 30px) * 12);
  animation: slideMarquee 25s linear infinite;
}

.why-choose-slider:hover {
  animation-play-state: paused;
}

@keyframes slideMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-310px * 6)); }
}

.why-card {
  width: 280px;
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  flex-shrink: 0;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.why-card i {
  font-size: 2.8rem;
  color: #38b6ff;
  margin-bottom: 20px;
}

.why-card h6 {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* TESTIMONIALS SECTION */
.testimonial-section {
  padding: 80px 0;
  background: #fffbf4;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  width: calc((320px + 30px) * 12);
  animation: slideMarqueeTestimonial 35s linear infinite;
}

.testimonial-slider:hover {
  animation-play-state: paused;
}

@keyframes slideMarqueeTestimonial {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-350px * 6)); }
}

.testimonial-card {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  flex-shrink: 0;
  text-align: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.test-user-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.test-user-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
}

.test-user-info h6 {
  margin: 0;
  font-weight: 800;
  color: var(--text-dark);
  font-size: 1.05rem;
}

.test-user-date {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.test-stars {
  color: #FFD700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.test-review-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 15px;
  font-style: italic;
}

.test-service-tube {
  display: inline-block;
  background: #f0f8ff;
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(56, 182, 255, 0.2);
  width: fit-content;
}

/* CHECKOUT SECTION */
#checkoutSection {
  display: none;
  padding: 100px 0 60px;
  background: var(--primary-light);
  min-height: 80vh;
}
.checkout-container {
  width: 70%;
  margin: auto;
  display: flex;
  gap: 30px;
  position: relative;
}
.checkout-left, .checkout-right {
  width: 50%;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.back-btn {
  position: absolute;
  top: -65px;
  left: 0px;
  background: #fff;
  color: var(--primary);
  border: 1px solid #ddd;
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
}
.back-btn:hover {
  background: #f8f9fa;
  color: var(--primary);
}

/* HOW IT WORKS SECTION */
.how-works-section {
  padding: 80px 0;
  background: #fff;
}

.how-works-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
  gap: 25px;
}

.how-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  flex: 1;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-color: rgba(56, 182, 255, 0.4);
}

.how-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.how-step-badge {
  color: #bbb;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.how-icon-tube {
  width: 55px;
  height: 55px;
  background: #f0f8ff;
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(56, 182, 255, 0.2);
}

.how-card h5 {
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.how-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.how-arrow {
  color: #ddd;
  font-size: 2rem;
}

/* SUCCESS MODAL & RECEIPT UI */
@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes floatMaid {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseSparkle {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 1; }
}

.receipt-card {
  border: none;
  background: #fff;
}

.receipt-body {
  font-size: 0.95rem;
}

#receiptItemsList .receipt-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #555;
}

/* SLOT BOOKING MODAL */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 15px;
}
.slot-item {
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  color: #495057;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  background: #fff;
}
.slot-item:hover {
  border-color: var(--primary);
  background: #f0f8ff;
}
.slot-item.selected {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 8px rgba(56, 182, 255, 0.3);
}

/* FOOTER SECTION */
.footer-section {
  background: #f8f9fa;
  padding: 60px 0 20px 0;
  border-top: 1px solid #eaeaea;
}

.footer-container {
  width: 60%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
}

.footer-col .footer-brand {
  color: var(--primary-dark);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-col .footer-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 50%;
  border: 1px solid #eaeaea;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(56, 182, 255, 0.3);
}

.footer-heading {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer-contact li i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  margin-right: 15px;
  width: 15px;
  text-align: center;
}

.footer-contact li a {
  color: #6c757d;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #eaeaea;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom p {
  color: #6c757d;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links a {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  margin-left: 15px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .footer-container, .footer-bottom {
    width: 80%;
  }
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .services-container {
    width: 90%;
  }
  .slider-container {
    width: 90%;
  }
  .services-main-card {
    width: 60%;
  }
  .services-right {
    width: 40%;
  }
  .services-left {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-container {
    width: 95%;
  }
  #locationText {
    display: none;
  }
  .location-box {
    padding: 7px 10px;
    margin-right: 10px;
  }
  .logo-text {
    font-size: 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    width: 90%;
  }
  .footer-bottom {
    width: 90%;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-contact li {
    justify-content: center;
  }
  .footer-contact li i {
    text-align: right;
  }

  .how-works-container {
    flex-direction: column;
    width: 90%;
    gap: 15px;
  }
  
  .how-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }

  .services-container, .checkout-container {
    flex-direction: column;
    width: 95%;
  }

  .services-main-card, .services-right, .checkout-left, .checkout-right, .slider-container {
    width: 100%;
  }

  .services-left {
    grid-template-columns: repeat(2, 1fr); /* Two columns stack for mobile as requested */
    gap: 10px;
  }

  .filter-tabs-container {
    justify-content: flex-start;
    padding: 5px !important;
    border-radius: 20px !important;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tab {
    flex: 0 0 auto;
    font-size: 0.85rem !important;
    padding: 8px 15px !important;
  }
}
/* Hide scrollbars for tabs */
.filter-tabs-container::-webkit-scrollbar {
  display: none;
}
.filter-tabs-container {
  scrollbar-width: none; 
}

/* Premium Duration Selector Styling */
.beautiful-select {
    width: 90%;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a73e8;
    background-color: #f0f4f8;
    border: 1px solid #d1e3f8;
    border-radius: 8px;
    padding: 4px 8px;
    margin: 4px auto 6px auto;
    display: block;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.beautiful-select:hover {
    background-color: #e2ebf4;
    border-color: #1a73e8;
}
.beautiful-select:focus {
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.2);
}

/* BOTTOM NAVIGATION */
.bottom-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #004aad;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
}

.bottom-nav-item i {
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.bottom-nav-item.active {
  background: #fff;
  color: #004aad;
  font-weight: bold;
}
.bottom-nav-item.active i {
  color: #004aad;
}

.add-btn-small {
    position: absolute;
    bottom: -10px;
    right: -5px;
    background: white;
    border: 1px solid #004aad;
    color: #004aad;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: all 0.2s;
}
.add-btn-small:hover {
    background: #004aad;
    color: white;
}
.quick-card {
    flex-shrink: 0;
}


.center-60 { width: 60%; margin: 0 auto; }
@media (max-width: 768px) {
    .center-60 { width: 95%; }
    .checkout-container { flex-direction: column-reverse; }
}
#floatingCartBtn {
    transition: opacity 0.3s ease;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
