
.footerNew {
  background: #0c0c0e;
  color: #d6d0c4;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.footerNew::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 145, 80, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footerNew-marquee-wrap {
  background: #B76F5A;
  overflow: hidden;
  padding: 10px 0;
}

.footerNew-marquee {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.footerNew-marquee span {
  font-family: arno pro, serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fefefe;
  padding: 0 36px;
}

.footerNew-marquee span::before {
  content: '✦';
  margin-right: 36px;
  opacity: 0.6;
}

.footerNew-hero {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2px;
  padding: 20px 15px;
  border-bottom: 1px solid rgba(180, 145, 80, 0.12);
}

.footerNew-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.footerNew-logo-mark {
  position: relative;
  width: 150px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 52px;
  background: #fefefe;
  border-bottom: 2px solid #B76F5A;
}

.footerNew-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footerNew-logo-mark svg {
  width: 100%;
  height: 100%;
}

.footerNew-brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footerNew-brand-name .name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: #f0e8d4;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footerNew-brand-name .sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B76F5A;
}

.footerNew-hero-tagline {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  color: #fefefe;
  padding-top: 7px;
  letter-spacing: 0.02em;
  /* max-width: 340px; */
  justify-self: center;
}

.footerNew-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid #B76F5A;
  color: #B76F5A;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.footerNew-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #B76F5A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.footerNew-cta:hover::before {
  transform: scaleX(1);
}

.footerNew-cta:hover {
  color: #fefefe;
}

.footerNew-cta span,
.footerNew-cta svg {
  position: relative;
  z-index: 1;
}

.footerNew-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  padding: 56px 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footerNew-col {
  padding-right: 48px;
}

.footerNew-col+.footerNew-col {
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 22px;
  padding-right: 22px;
}

.footerNew-col-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footerNew-col-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #B76F5A;
}

.footerNew-col-eyebrow span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #B76F5A;
}

.footerNew-apps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.footerNew-app {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.footerNew-app::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #B76F5A;
  transition: width 0.4s ease;
}

.footerNew-app:hover {
  border-color: rgba(180, 145, 80, 0.3);
}

.footerNew-app:hover::after {
  width: 100%;
}

.footerNew-app-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.footerNew-app-text p {
  line-height: 1.3;
}

.footerNew-app-text .sm {
  font-size: 10px;
  color: rgba(214, 208, 196, 0.35);
  letter-spacing: 0.06em;
}

.footerNew-app-text .lg {
  font-size: 13px;
  color: #f0e8d4;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.footerNew-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footerNew-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 13px;
  color: rgba(235, 232, 227, 0.836);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  letter-spacing: 0.01em;
  transition: color 0.25s, padding-left 0.25s;
}

.footerNew-links li a:hover {
  color: #B76F5A;
  padding-left: 6px;
}

.footerNew-links li a svg {
  opacity: 0;
  transition: opacity 0.25s;
  flex-shrink: 0;
}

.footerNew-links li a:hover svg {
  opacity: 1;
}

.footerNew-services {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footerNew-svc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: gap 0.25s;
}

.footerNew-svc:hover {
  gap: 16px;
}

.footerNew-svc-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 145, 80, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.footerNew-svc:hover .footerNew-svc-icon {
  background: rgba(180, 145, 80, 0.12);
  border-color: rgba(180, 145, 80, 0.5);
}

.footerNew-svc-icon svg {
  width: 12px;
  height: 12px;
}

.footerNew-svc-name {
  font-size: 12.5px;
  color: rgba(228, 225, 220, 0.904);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}

.footerNew-svc:hover .footerNew-svc-name {
  color: #B76F5A;
}

.footerNew-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footerNew-tag {
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.925);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.footerNew-tag:hover {
  border-color: rgba(180, 145, 80, 0.4);
  color: #B76F5A;
}

.footerNew-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  flex-wrap: wrap;
  gap: 16px;
  background: #B76F5A;
}

.footerNew-socials {
  display: flex;
  gap: 4px;
}

.footerNew-social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255, 255, 255);
  color: rgba(255, 255, 255, 0.932);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footerNew-social:hover {
  border-color: #fefefe;
  color: #B76F5A;
  background: #fefefe;
}

.footerNew-social svg {
  width: 14px;
  height: 14px;
}

.footerNew-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.952);
  letter-spacing: 0.04em;
  text-align: center;
  font-weight: 500;
}

.footerNew-legal a {
  color: rgba(255, 255, 255, 0.952);
  text-decoration: none;
  transition: color 0.2s;
}

.footerNew-legal a:hover {
  color: #0c0c0e;
}

.footerNew-credit {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.952);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-align: right;
}

.footerNew-credit span {
  color: rgba(0, 0, 0, 0.938);
  font-weight: 700;
}

@media (max-width: 900px) {
  .footerNew-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px 32px;
  }

  .footerNew-logo {
    justify-content: center;
  }

  .footerNew-hero-tagline {
    max-width: 100%;
  }

  .footerNew-body {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 40px 28px;
  }

  .footerNew-col {
    padding-right: 0;
  }

  .footerNew-col+.footerNew-col {
    border-left: none;
    padding-left: 0;
  }

  .footerNew-tags,
  .footerNew-bottom {
    padding: 24px 28px;
  }
}

@media (max-width: 540px) {
  .footerNew-body {
    grid-template-columns: 1fr;
  }
}

  /* new add to cart */

  .desk-cart-card {
      display: flex; align-items: center; justify-content: space-between;
      background: #fff; border-radius: 16px; padding: 18px; margin-bottom: 18px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.06); transition: 0.2s;
    }
    .desk-cart-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
    .desk-cart-checkbox { accent-color: #0d6efd; cursor: pointer; transform: scale(1.2); margin-right: 12px; }
    .desk-cart-left { display: flex; align-items: center; gap: 14px; }
    .desk-cart-img { width: 70px; height: 70px; border-radius: 12px; object-fit: cover; box-shadow: 0 3px 8px rgba(0,0,0,0.1); }
    .desk-cart-info .desk-cart-title { font-size: 1.05rem; font-weight: 600; }
    .desk-cart-info .desk-cart-service { font-size: 0.9rem; color: #6c757d; }
    .desk-cart-info .desk-cart-time { font-size: 0.85rem; color: #0d6efd; font-weight: 500; }
    /* ===== PRICE ===== */
    .desk-cart-price-box { text-align: right; }
    .desk-cart-price { font-size: 1.1rem; font-weight: 600; }
    .desk-cart-old-price { text-decoration: line-through; font-size: 0.9rem; color: #aaa; margin-left: 6px; }
    .desk-cart-discount-badge { display: inline-block; background: #ff4757; color: #fff; font-size: 0.75rem; padding: 2px 8px; border-radius: 12px; margin-top: 4px; }
    /* ===== QUANTITY CONTROL ===== */
    .desk-cart-quantity { display: flex; align-items: center; gap: 6px; background: #f1f3f5; border-radius: 30px; padding: 4px 12px; }
    .desk-cart-quantity button { border: none; background: transparent; font-size: 1.2rem; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; transition: 0.2s; }
    .desk-cart-quantity button:hover { background: linear-gradient(110deg, #ff4757, #6c757d); color: #fff; }
    .desk-cart-qty-input { width: 30px; border: none; text-align: center; font-weight: 600; background: transparent; }
    /* ===== ACTION BUTTONS ===== */
    .desk-cart-actions .btn { border-radius: 25px; padding: 4px 14px; font-size: 0.85rem; }
    /* ===== CART SUMMARY ===== */
    .desk-cart-summary { background: #fff; padding: 22px; border-radius: 16px; box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
    .desk-cart-summary h5 { font-weight: 600; margin-bottom: 15px; }
    /* ===== FIXED CHECKOUT BAR ===== */
    .desk-cart-checkout-bar {
      position: fixed; bottom: 0; left: 0; width: 100%;
      background: #fff; border-top: 1px solid #e5e5e5;
      padding: 12px 18px; box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
      display: flex; justify-content: space-between; align-items: center; z-index: 1000;
    }
    .desk-cart-checkout-bar .desk-cart-total { font-weight: 700; font-size: 1.1rem; color: #0d6efd; }
    .desk-cart-checkout-bar .btn { border-radius: 30px; font-weight: 600; }
    @media (max-width: 768px) {
      .desk-cart-price-box { text-align: left; }
      .desk-cart-card { flex-direction: column; align-items: flex-start; gap: 12px; }
    }
