* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  line-height: 1.2;
  color: #222
}

a {
  color: inherit;
  text-decoration: none
}

ul {
  list-style: none
}

/* ===== Header wrapper ===== */
.myn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  z-index: 1200;
}

.myn-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 28px;
  justify-content: space-between;
}

/* left: logo */
.myn-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 160px
}

.myn-logo {
  height: 82px;
  display: block;
  object-fit: contain
}

/* center: search */
.myn-search {
  flex: 1;
  max-width: 500px;
  display: flex;
  align-items: center;
  background: #f6f7fb;
  border-radius: 999px;
  padding: 6px;
  border: 1px solid rgba(128, 144, 176, 0.12);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02) inset;
  transition: box-shadow .15s, transform .12s;
}

.myn-search:focus-within {
  box-shadow: 0 6px 20px rgba(39, 76, 235, 0.06)
}

.myn-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 16px;
  font-size: 15px;
  outline: none;
  color: #111;
}

.myn-search .search-btn {
  color: green;
  border-radius: 999px;
  border: none;
  padding: 10px 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  margin-right: 4px;
}

/* right: icons */
.myn-right {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 150px;
  justify-content: flex-end
}

.myn-ic {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  color: #222;
  font-weight: 600;
  font-size: 14px
}

.myn-ic i {
  font-size: 25px;
  color: #333
}

.myn-ic span {
  display: inline-block
}

/* nav (categories) */
.myn-nav {
  margin-top: 0px;
  background: #f6f7fb;
  display: flex;
  justify-content: center;
  border-top: 0;
  padding: 8px 18px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.myn-nav ul {
  display: flex;
  gap: 60px;
  align-items: center;
}

.myn-nav a {
  font-size: 15px;
  color: #333;
  padding: 6px 4px;
  font-weight: 600;
  border-radius: 4px
}

.myn-nav a:hover {
  color: #076207;
}

/* dropdown style (myntra-like) */
.nav-item {
  position: relative
}

.mega {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 520px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(5, 10, 30, 0.12);
  padding: 30px;
  display: flex;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.18s ease;
  z-index: 1300;
}

/* .mega .col { min-width:0px !important; } */
.mega h4 {
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 700
}

.mega a {
  display: block;
  padding: 6px 6px;
  color: #444;
  font-weight: 500;
  font-size: 13px;
  border-radius: 4px
}

.mega a:hover {
  background: #f7f7fb;
  color: #0b7928
}

/* show on hover */
.nav-item:hover .mega,
.nav-item:focus-within .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* 🔥 now mouse can enter properly */
}

/* small screens */
@media (max-width:1000px) {
  .myn-search {
    display: none
  }

  .myn-nav {
    display: none
  }

  .myn-top {
    padding: 10px 18px
  }

  .myn-left {
    min-width: 120px
  }

  .myn-right {
    gap: 12px
  }

  .myn-ic span {
    display: none
  }

  .mobile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer
  }
}

.sebtn {
  color: green !important;
}

/* mobile slide menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  z-index: 1400;
  box-shadow: -12px 0 40px rgba(20, 20, 60, 0.12);
  transition: right .28s ease;
  overflow: auto;
}

.mobile-drawer.open {
  right: 0
}

.drawer-head {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0f0f0
}

.drawer-list {
  padding: 12px 18px
}

.drawer-list a {
  display: block;
  padding: 12px 8px;
  color: #222;
  font-weight: 600
}

/* small tweaks */
@media (max-width:480px) {
  .myn-logo {
    height: 38px
  }

  .myn-right {
    min-width: 90px
  }
}

/* Location */
.logo-info .info-location {
  font-size: 17px;
  font-weight: 600;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-location i {
  color: #2e7d32;
}


/* Quick Links */
.quick-links {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 25px;
}

.quick-links a {
  font-size: 14px;
  color: #2e7d32;
  font-weight: 600;
  text-decoration: none;
}

.quick-links a:hover {
  color: #1b5e20;
}


/* Language Box */
.lang-box select {
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
  border: 1px solid #66bb6a;
  border-radius: 6px;
  background: #eaffea;
  cursor: pointer;
  outline: none;
}

.lang-box select:hover {
  border-color: #388e3c;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  /* hidden by default */
  width: 350px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sidebar.open {
  right: 0;
}

.sidebar-header {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  cursor: pointer;
  font-size: 24px;
}

.sidebar-body {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
}

.sidebar-footer {
  padding: 15px;
  border-top: 1px solid #ddd;
}

.action-btn {
  width: 100%;
  background-color: #1e7333;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

/* Empty messages */
.empty-msg {
  text-align: center;
  color: #777;
  margin-top: 50px;
}

/* Trigger buttons */
.sidebar-icons {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10000;
}

.icon-btn {
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  background-color: #ff6f61;
  color: #fff;
  border-radius: 5px;
}

/* Example item */
.item {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* ===== Mobile View <=768px ===== */
@media (max-width:768px) {
  /* Hide everything else */

  .myn-nav,
  /* .myn-right a:not(#openMenu):not(#userIcon), */
  .quick-links,
  .logo-info {
    display: none !important;
  }

  #openMenu,
  #userIcon,
  #openWishlist,
  #openCart .myn-search {
    display: flex !important;
    align-items: center;
  }


  /* Header top: adjust padding */
  .myn-top {
    padding: 30px 20px;
    justify-content: space-between;
  }

  .modern-slider .btn-shop {
    display: none;
  }

  /* Logo */
  .myn-logo {
    height: 55px;
  }

  /* Only show toggle button */
  .mobile-btn#openMenu {
    display: flex !important;
    align-items: center;
    cursor: pointer;
  }

  /* Position toggle to right */
  .mobile-btn#openMenu {
    margin-left: -40px;
  }

  .myn-search {
    width: 100%;
    margin-top: 10px;
  }

  .myn-search input {
    flex: 1;
  }
}

/* Sidebar CSS Fix */
.sidebar-header {
  background-color: #1a7c49;
  /* Aapka Theme Green Color */
  color: #fff;
  /* White Text */
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar-header h3 {
  margin: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

/* Close Button Styling */
.close-btn {
  background: transparent;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #ffcccc;
  /* Hover par halka red/pink */
  transform: rotate(90deg);
  /* Thoda animation */
}

/* Body ko thoda niche push karein taaki header cover na ho */
.sidebar-body {
  padding: 15px;
  height: calc(100% - 130px);
  /* Header aur Footer ki height minus karke */
  overflow-y: auto;
}

.c-cart-footer {
  padding: 20px;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
  /* Upar ki taraf halki shadow */
  position: absolute;
  /* Bottom me fix karne ke liye */
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

/* Total Amount Row */
.c-cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.c-cart-label {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

.c-cart-total-price {
  font-size: 20px;
  font-weight: 800;
  color: #1a7c49;
  /* Aapka Theme Green */
}

/* Small Note Text */
.c-cart-note {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 15px;
}

/* Checkout Button Styling */
.c-cart-checkout-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 14px;
  background-color: #1a7c49;
  /* Theme Green */
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(26, 124, 73, 0.2);
  border: none;
}

.c-cart-checkout-btn:hover {
  background-color: #145f38;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(26, 124, 73, 0.3);
}

#cart-body-content {
  padding-bottom: 160px !important;
}

@media(max-width: 480px) {
  .sidebar {
    width: 100%;
    right: -100%;
  }
}

/* FIX: Notiflix Popup sabse upar dikhega */
#NotiflixConfirmWrap,
#NotiflixNotifyWrap,
[id^=Notiflix] {
  z-index: 99999999 !important;
}

:root {
  --cv-green: #1a7c49;
  --cv-dark: #333;
  --cv-gray: #777;
  --cv-border: #e0e0e0;
  --cv-bg: #fdfdfd;
  --primary-green: #1d7331;
  --bg-gray: #f8f9fa;
  --card-radius: 12px;
}

.cv-section {
  padding: 50px 0;
  background-color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.cv-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eee;
}

.cv-back-link {
  color: var(--cv-dark);
  font-weight: 600;
  text-decoration: none;
}

.cv-back-link:hover {
  color: var(--cv-green);
}

.cv-item-count {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Layout Wrapper */
.cv-wrapper {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT SIDE: PRODUCT LIST */
.cv-items-col {
  flex: 1;
}

.cv-product-row {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--cv-border);
  position: relative;
  background: #fff;
  transition: opacity 0.3s;
}

/* Product Info (Left) */
.cv-left-info {
  display: flex;
  align-items: center;
  flex: 1;
}

.cv-img-box {
  width: 100px;
  height: 100px;
  border: 1px solid #f0f0f0;
  padding: 5px;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
}

.cv-img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cv-prod-details h4 {
  font-size: 16px;
  margin: 0 0 5px;
  color: var(--cv-dark);
  font-weight: 700;
}

.cv-sku {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 5px;
}

.cv-stock {
  font-size: 11px;
  color: var(--cv-green);
  background: #e8f5e9;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

/* Right Section: Price, Qty, Total */
.cv-right-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}

.cv-col-group {
  text-align: center;
  min-width: 80px;
}

.cv-lbl {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

/* Price */
.cv-mrp {
  text-decoration: line-through;
  color: #786e6e;
  font-size: 14px;
  margin-right: 5px;
}

.cv-price {
  font-weight: 700;
  color: var(--cv-dark);
  font-size: 16px;
}

/* Qty Box */
.cv-qty-wrapper {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.cv-qty-btn {
  width: 30px;
  height: 32px;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  font-weight: bold;
  color: #555;
  transition: 0.2s;
}

.cv-qty-btn:hover {
  background: #eee;
}

.cv-qty-input {
  width: 40px;
  height: 32px;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

/* Total */
.cv-row-total {
  font-size: 17px;
  font-weight: 800;
  color: var(--cv-green);
}

/* Remove Btn */
.cv-remove-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ccc;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
}

.cv-remove-btn:hover {
  color: #d32f2f;
}

/* RIGHT SIDE: SUMMARY */
.cv-summary-col {
  width: 350px;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.cv-summary-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.cv-sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}

.cv-divider {
  height: 1px;
  background: #ddd;
  margin: 15px 0;
}

.cv-grand-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 800;
  color: var(--cv-dark);
  margin-bottom: 20px;
}

.cv-checkout-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #e3c08d 0%, #d4b07c 100%);
  color: #000;
  text-align: center;
  padding: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cv-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .cv-wrapper {
    flex-direction: column;
  }

  .cv-summary-col {
    width: 100%;
  }

  .cv-product-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-right-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 15px;
    padding-right: 0;
  }

  .cv-remove-btn {
    top: 15px;
    transform: none;
    right: 0;
  }
}

.cv-coupon-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: 0.2s;
}

.cv-coupon-trigger:hover {
  background: #f9f9f9;
  border-color: #ccc;
}

.cv-coupon-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--cv-dark);
}

.cv-coupon-icon {
  color: var(--cv-dark);
  font-size: 16px;
}

.cv-coupon-arrow {
  color: #999;
  font-size: 14px;
}

/* 2. Modal Overlay */
.cv-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  display: none;
  /* Hidden by default */
  justify-content: center;
  align-items: center;
}

/* 3. Modal Content Box */
.cv-modal-box {
  background: #fff;
  width: 450px;
  max-width: 90%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}

/* Modal Header */
.cv-modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.cv-close-modal {
  cursor: pointer;
  font-size: 24px;
  color: #666;
  background: none;
  border: none;
}

/* Modal Body */
.cv-modal-body {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Input Section inside Modal */
.cv-modal-input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.cv-modal-input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.cv-modal-apply-btn {
  padding: 0 25px;
  background: #ddd;
  color: #777;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.cv-modal-apply-btn.active {
  background: var(--cv-green);
  /* Active Color */
  color: #fff;
}

/* Coupon List Items */
.cv-coupon-item {
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  position: relative;
  background: #fff;
}

.cv-coupon-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}

.cv-c-logo {
  width: 60px;
  margin-bottom: 8px;
}

.cv-c-code {
  font-weight: 700;
  color: var(--cv-dark);
  font-size: 15px;
  margin-bottom: 5px;
}

.cv-c-desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 5px;
}

.cv-c-link {
  font-size: 12px;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
}

.cv-apply-text-btn {
  color: #ff6f61;
  /* Orange/Red color like screenshot */
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  border: none;
  background: none;
}

.cv-apply-text-btn:hover {
  text-decoration: underline;
}

/* Applied State */
.cv-coupon-applied-msg {
  color: var(--cv-green);
  font-size: 12px;
  font-weight: 600;
  display: none;
  margin-top: 5px;
  text-align: right;
}

/* --- COUPON REMOVE STYLES --- */

/* Applied State Container */
.cv-coupon-trigger.applied {
  border: 1px solid var(--cv-green);
  background: #f0fff4;
  /* Light Green Bg */
}

/* Coupon Code Text (Green) */
.cv-applied-code {
  color: var(--cv-green);
  font-weight: 800;
  font-size: 15px;
}

/* Remove Button (Cross or Text) */
.cv-remove-coupon-btn {
  font-size: 12px;
  font-weight: 700;
  color: #d32f2f;
  /* Red */
  cursor: pointer;
  background: none;
  border: none;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  transition: 0.2s;
  margin-left: auto;
  /* Push to right */
}

.cv-remove-coupon-btn:hover {
  background: rgba(211, 47, 47, 0.1);
}

/* Hide the arrow when coupon is applied */
.cv-coupon-trigger.applied .cv-coupon-arrow {
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-top {
  margin-top: 70px !important;
}

.desc-4-line {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Floating Cart Bar Modern Design --- */
#floating-cart-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 420px;
  z-index: 10000;
  /* Stylish Gradient Background */
  background: linear-gradient(135deg, #088048 0%, #1b7331 100%);
  /* Glassy look border */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  /* Pill Shape */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 8px;
  /* Entry Animation */
  animation: slideUpFade 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: none;
  /* Initially hidden */
}

/* Jab Cart Update ho, ye class JS se add karenge */
.cart-bump-anim {
  animation: bumpEffect 0.3s ease-in-out;
}

.f-cart-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
}

.f-info-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon Box Design */
.f-icon-circle {
  position: relative;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* Cart Icon Swing Animation */
.swing-anim {
  display: inline-block;
  animation: swing 2s infinite ease-in-out;
}

/* Small Badge on Icon */
#f-cart-count-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #ef4444;
  /* Red color */
  color: white;
  font-size: 10px;
  font-weight: bold;
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid white;
}

.f-text-group {
  display: flex;
  flex-direction: column;
  color: white;
}

.f-total-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

#f-cart-total-amount {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

/* Button Design */
.f-checkout-btn {
  background: #ffffff;
  color: #1b7331;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.f-checkout-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.2);
  color: #0f172a;
}

/* --- Keyframe Animations --- */

@keyframes slideUpFade {
  from {
    bottom: -100px;
    opacity: 0;
  }

  to {
    bottom: 20px;
    opacity: 1;
  }
}

@keyframes bumpEffect {
  0% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.05);
  }

  100% {
    transform: translateX(-50%) scale(1);
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Mobile Specific Adjustments */
@media (max-width: 480px) {
  #floating-cart-bar {
    bottom: 15px;
    width: 94%;
    padding: 6px;
  }

  .f-checkout-btn {
    padding: 10px 18px;
  }
}

/* --- MOBILE BOTTOM NAVIGATION BAR --- */
.mobile-bottom-nav {
  display: none;
  /* Desktop par hidden rahega */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid #eee;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #777;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  width: 25%;
  /* 4 items hain to 25% each */
}

.mobile-nav-item i {
  font-size: 18px;
  margin-bottom: 4px;
  transition: color 0.3s;
}

.mobile-nav-item.active {
  color: #1b7331;
  /* Theme Green Color */
}

.mobile-nav-item.active i {
  color: #1b7331;
}

/* Mobile screen par dikhana hai */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  /* Sidebar mobile pe chupa dein agar wo already upar aa raha hai to avoid duplicate */
  .profile-sidebar {
    display: none;
  }
}
.icon-customer-outline-icon{
  color: #018d1f;      
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #018d1f;  
}