* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0077ff;
  --primary-dark: #005fe0;
  --primary-light: #edf5ff;
  --secondary-bg: #f7fbff;
  --text-dark: #172033;
  --text-light: #6b7a90;
  --border-color: #d7e6ff;
  --white: #ffffff;
  --danger: #ff3d57;
  --footer-bg: #0f172a;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px !important;
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}
.logo {
  max-width: 170px;
  width: 100%;
}

/* =========================
   ALL HEADINGS
========================= */

.section-heading {
  margin-bottom: 42px;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 1px;
  color: #111827;
  text-transform: uppercase;
}

.section-line {
  width: 120px;
  height: 7px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #b9d8ff);
}

@media (max-width: 1024px) {
  .section-heading {
    margin-bottom: 34px;
  }
}

@media (max-width: 768px) {
  .section-heading {
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-line {
    width: 100px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 22px;
  }

  .section-line {
    width: 90px;
    height: 6px;
  }
}

/* =========================
   COVERSPOT HEADER - PREMIUM FIXED
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 35px rgba(0, 119, 255, 0.06);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(320px, 1fr) auto;
  align-items: center;
  gap: 34px;
}
/* SEARCH */
.header-search {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 58px;
  justify-self: center;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  padding: 5px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #cfe1ff;
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.09);
  transition: 0.28s ease;
}

.header-search:hover {
  border-color: rgba(0, 119, 255, 0.45);
  box-shadow: 0 16px 34px rgba(0, 119, 255, 0.13);
}

.header-search:focus-within {
  background: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow:
    0 18px 40px rgba(0, 119, 255, 0.18),
    0 0 0 5px rgba(0, 119, 255, 0.1);
}

.search-icon {
  width: 52px;
  height: 48px;
  display: grid;
  place-items: center;
  border-right: 1px solid #e4efff;
}

.search-icon svg {
  width: 23px;
  height: 23px;
  fill: var(--primary);
  opacity: 0.8;
  transition: 0.25s ease;
}

.header-search:focus-within .search-icon svg {
  opacity: 1;
  transform: scale(1.08);
}

.header-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 16px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 650;
}

.header-search input::placeholder {
  color: #8aa0bd;
}

.header-search button {
  height: 48px;
  min-width: 126px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 119, 255, 0.26);
  transition: 0.28s ease;
}

.header-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 119, 255, 0.36);
}

.header-search button:active {
  transform: scale(0.96);
}

/* ICONS */
.header-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  flex-shrink: 0;
}

.header-icon {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid #cfe1ff;
  box-shadow: 0 10px 24px rgba(0, 119, 255, 0.08);
  overflow: visible;
  transition: 0.28s ease;
}

.header-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transform: scale(0.88);
  transition: 0.28s ease;
}

.header-icon svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
  fill: none !important;
  stroke: var(--primary) !important;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.28s ease;
}

.header-icon:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(0, 119, 255, 0.24);
}

.header-icon:hover::before {
  opacity: 1;
  transform: scale(1);
}

.header-icon:hover svg {
  stroke: #ffffff !important;
}

/* cart icon better size */
#openCartSidebar svg {
  width: 27px;
  height: 27px;
}

.icon-count {
  position: absolute;
  top: -8px;
  right: -7px;
  z-index: 3;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--danger);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  border: 2px solid #ffffff;
  box-shadow: 0 8px 18px rgba(255, 61, 87, 0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .header-inner {
    min-height: auto;
    padding: 15px 0;
    grid-template-columns: auto auto;
    gap: 14px;
  }

  .header-icons {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .header-icons {
    gap: 8px;
  }

  .header-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .header-icon svg {
    width: 20px;
    height: 20px;
  }

  #openCartSidebar svg {
    width: 22px;
    height: 22px;
  }

  .header-search {
    height: 50px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 5px;
    border-radius: 16px;
  }

  .search-icon {
    width: 38px;
    height: 40px;
  }

  .header-search input {
    font-size: 14px;
    padding: 0 8px;
  }

  .header-search button {
    min-width: 82px;
    height: 40px;
    border-radius: 12px;
    font-size: 14px;
  }
}

/* =========================
   LIVE SEARCH DROPDOWN
========================= */

.live-search-box {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  z-index: 99999;
  max-height: 430px;
  overflow-y: auto;
  padding: 12px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.live-search-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.live-search-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 16px;
  transition: 0.25s ease;
}

.live-search-item:hover {
  background: #f3f8ff;
}

.live-search-item img {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  object-fit: cover;
  background: #f1f7ff;
}

.live-search-content {
  min-width: 0;
}

.live-search-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.live-search-item h4 {
  min-width: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  color: #071327;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.live-stock {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none !important;
}

.live-stock.in-stock {
  background: #e8f8ee;
  color: #15803d;
}

.live-stock.out-stock {
  background: #ffe8ec;
  color: #dc2626;
}

.live-search-item p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
}

.live-search-item p span {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 800;
}

.live-search-item strong {
  color: #071327;
  font-size: 17px;
  font-weight: 950;
}

.live-search-item em {
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f7e8;
  color: #15803d;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
}

.live-search-empty {
  padding: 22px;
  text-align: center;
  color: #64748b;
  font-weight: 850;
}

/* =========================
   PREMIUM CART SIDEBAR
========================= */

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.cart-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -460px;
  width: 430px;
  max-width: 94%;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  box-shadow: -28px 0 60px rgba(15, 23, 42, 0.2);
  transition: 0.35s ease;
}

.cart-sidebar.active {
  right: 0;
}

.cart-side-header {
  padding: 24px;
  border-bottom: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-side-header h3 {
  font-size: 24px;
  font-weight: 950;
  color: #071327;
}

.cart-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #eef6ff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.cart-close:hover {
  background: var(--primary);
}

.cart-close svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.3;
  stroke-linecap: round;
}

.cart-close:hover svg {
  stroke: #ffffff;
}

.cart-side-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 82px 1fr 38px;
  gap: 14px;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 119, 255, 0.07);
}

.cart-item img {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  object-fit: cover;
  background: #eef6ff;
}

.cart-item-info h4 {
  font-size: 15px;
  line-height: 1.35;
  color: #071327;
  margin-bottom: 7px;
  font-weight: 850;
}

.cart-item-info p {
  font-size: 18px;
  font-weight: 950;
  color: var(--primary);
  margin-bottom: 10px;
}

.cart-qty-row {
  display: inline-flex;
  height: 34px;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fbff;
}

.qty-btn {
  width: 34px;
  border: 0;
  background: #ffffff;
  color: var(--primary);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.cart-qty-row input {
  width: 42px;
  border: 0;
  outline: 0;
  text-align: center;
  font-weight: 850;
  color: #071327;
  background: #f8fbff;
}

.cart-delete {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: #fff0f3;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s ease;
}

.cart-delete:hover {
  background: var(--danger);
}

.cart-delete svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--danger);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-delete:hover svg {
  stroke: #ffffff;
}

.cart-side-footer {
  padding: 18px 20px 22px;
  border-top: 1px solid #dbeafe;
  background: #ffffff;
}

.cart-summary {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid #dbeafe;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: #64748b;
  font-weight: 750;
}

.summary-row strong {
  color: #071327;
  font-size: 16px;
}

.full-total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed #c8ddff;
  color: #071327;
  font-size: 17px;
  font-weight: 950;
}

.full-total strong {
  color: var(--primary);
  font-size: 23px;
}

.checkout-btn,
.cart-empty-btn {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 119, 255, 0.24);
}

/* EMPTY CART */
.cart-empty-state {
  min-height: 100%;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-empty-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 48px rgba(0, 119, 255, 0.26);
}

.cart-empty-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-empty-state h4 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 950;
  color: #071327;
}

.cart-empty-state p {
  max-width: 300px;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
}

body.cart-open {
  overflow: hidden;
}

/* =========================
   PREMIUM LOGIN POPUP
========================= */

.login-popup {
  position: fixed;
  inset: 0;
  z-index: 999999;
  padding: 20px;
  background: rgba(15, 23, 42, 0.58);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.login-popup.active {
  opacity: 1;
  visibility: visible;
}

.login-popup-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 46px 32px 34px;
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 119, 255, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  box-shadow: 0 35px 90px rgba(15, 23, 42, 0.28);
  transform: translateY(22px) scale(0.94);
  transition: 0.32s ease;
}

.login-popup.active .login-popup-box {
  transform: translateY(0) scale(1);
}

.login-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: #eef6ff;
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.login-popup-close:hover {
  background: var(--primary);
  color: #ffffff;
}

.login-popup-icon {
  width: 118px;
  height: 118px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 24px 45px rgba(0, 119, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.login-popup-icon svg {
  width: 56px;
  height: 56px;
  fill: #ffffff;
}

.login-popup-box h3 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 950;
  color: #071327;
  letter-spacing: -0.8px;
}

.login-popup-box p {
  max-width: 330px;
  margin: 0 auto 30px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.login-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.login-now-btn,
.login-back-btn {
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: 0.28s ease;
}

.login-now-btn {
  border: 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(0, 119, 255, 0.25);
}

.login-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 119, 255, 0.32);
}

.login-back-btn {
  border: 1px solid #dbeafe;
  background: #ffffff;
  color: #071327;
}

.login-back-btn:hover {
  background: #f1f7ff;
  border-color: #bcd8ff;
}

/* =========================
   COVERSPOT FOOTER - PREMIUM
========================= */

.site-footer {
  position: relative;
  overflow: hidden;
  color: #a9bdd8;
  background:
    radial-gradient(
      circle at 12% 10%,
      rgba(0, 119, 255, 0.18),
      transparent 30%
    ),
    radial-gradient(circle at 88% 0%, rgba(0, 95, 224, 0.14), transparent 34%),
    linear-gradient(135deg, #080d14 0%, #10151c 55%, #0b111a 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    transparent 28%
  );
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  padding: 58px 0 70px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1.35fr;
  gap: 76px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -1px;
}

.footer-logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 119, 255, 0.28);
}

.footer-brand p,
.footer-about-text {
  max-width: 310px;
  font-size: 17px;
  line-height: 1.75;
  color: #8aa3c7;
  margin-top: -40px;
}

.footer-social {
  margin-top: 30px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #8aa3c7;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(215, 230, 255, 0.12);
  transition: 0.28s ease;
}
.footer-links h3,
.footer-contact h3,
.footer-title {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #8bc7ff);
}

.footer-links a {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 17px;
  color: #86a0c5;
  font-size: 17px;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  margin-bottom: 28px;
  align-items: start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(0, 119, 255, 0.22),
    rgba(0, 95, 224, 0.12)
  );
  color: #8bc7ff;
  border: 1px solid rgba(0, 119, 255, 0.18);
  transition: 0.28s ease;
}
.footer-social svg,
.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.25s ease;
}

.footer-social a:hover svg,
.footer-contact-row:hover .contact-icon svg {
  transform: scale(1.08);
}
.contact-icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 119, 255, 0.22);
}

.footer-contact strong {
  display: block;
  margin-bottom: 8px;
  color: #8aa3c7;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 1.4px;
}

.footer-contact p,
.footer-contact a,
.footer-contact span {
  color: #c8dcff;
  font-size: 17px;
  line-height: 1.5;
  transition: 0.25s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 26px 0;
  border-top: 1px solid rgba(215, 230, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.footer-bottom p {
  color: #6f89ad;
  font-size: 16px;
  font-weight: 600;
}

.payment-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6f89ad;
  font-size: 15px;
  font-weight: 600;
}

.payment-tags b {
  min-width: 58px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(215, 230, 255, 0.14);
  color: #9fb9df;
  text-align: center;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: 0.25s ease;
}

.payment-tags b:hover {
  color: #ffffff;
  border-color: var(--primary);
  background: rgba(0, 119, 255, 0.16);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .header-inner {
    gap: 24px;
  }

  .header-search {
    max-width: 620px;
  }
}

@media (max-width: 992px) {
  .header-inner {
    min-height: auto;
    padding: 15px 0;
    grid-template-columns: auto auto;
    gap: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .live-search-box {
    top: calc(100% + 10px);
    max-height: 360px;
    border-radius: 18px;
    padding: 10px;
  }

  .live-search-item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .live-search-item img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }

  .live-search-item h4 {
    font-size: 14px;
  }

  .live-search-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .live-search-item strong {
    font-size: 15px;
  }

  .live-stock {
    font-size: 10px;
    padding: 4px 9px;
  }
}

@media (max-width: 576px) {
  .search-icon {
    width: 38px;
    height: 40px;
  }
  .cart-sidebar {
    width: 100%;
    max-width: 100%;
  }

  .cart-side-header {
    padding: 20px;
  }

  .cart-empty-icon {
    width: 100px;
    height: 100px;
  }

  .cart-empty-state h4 {
    font-size: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 45px 0 0px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-tags {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .login-popup {
    padding: 14px;
  }

  .login-popup-box {
    padding: 42px 20px 24px;
    border-radius: 26px;
  }

  .login-popup-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 24px;
  }

  .login-popup-icon svg {
    width: 46px;
    height: 46px;
  }

  .login-popup-box h3 {
    font-size: 25px;
  }

  .login-popup-box p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .login-popup-actions {
    grid-template-columns: 1fr;
  }

  .login-now-btn,
  .login-back-btn {
    height: 50px;
  }

  .live-search-box {
    left: -14px;
    right: -14px;
    max-height: 340px;
    border-radius: 16px;
  }

  .live-search-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .live-search-item img {
    width: 58px;
    height: 58px;
  }

  .live-search-item p {
    gap: 7px;
  }

  .live-search-item em {
    font-size: 11px;
    padding: 4px 8px;
  }
  .footer-brand p,
  .footer-about-text {
    font-size: 15px;
  }
  .footer-social {
    margin-top: 10px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-social svg,
  .contact-icon svg {
    width: 18px;
    height: 18px;
  }
  .footer-social a {
    width: 40px;
    height: 40px;
  }
  .footer-links h3,
  .footer-title {
    margin-bottom: 10px;
  }
  .footer-contact h3 {
    margin-bottom: 15px;
  }
  .footer-links a {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  .footer-contact strong {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .footer-contact p,
  .footer-contact a,
  .footer-contact span {
    font-size: 14px;
  }
  .footer-bottom p,
  .payment-tags {
    font-size: 14px;
  }
  .payment-tags b {
    min-width: 40px;
    padding: 6px 12px;
  }
  .cart-close {
    height: 40px;
    width: 40px;
  }
  .cart-close svg {
    width: 20px;
    height: 20px;
  }
}
