/* Luxury, Ultra-Premium & Vector-Enhanced CartFlows Landing Page Styling */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800;900&family=Hind+Siliguri:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --primary-red: #ff0054;
  --primary-orange: #ff5400;
  --gold-accent: #ffbd00;
  --dark-slate: #090d16;
  --surface-white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.92);
}

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

.zf-scope {
  font-family: 'Hind Siliguri', 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  background-color: #f8fafc;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}/* =======================================================
   BACKGROUND VECTORS & CLIPPING PATHS
   ======================================================= */


.zf-scope .bg-ambient-vectors {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.zf-scope .vector-shape-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 84, 0.12) 0%, rgba(255, 84, 0, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
}

.zf-scope .vector-shape-2 {
  position: absolute;
  top: 30%;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 187, 249, 0.1) 0%, rgba(114, 9, 183, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.zf-scope .vector-shape-3 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 189, 0, 0.1) 0%, rgba(255, 0, 84, 0.05) 60%, transparent 80%);
  border-radius: 50%;
  filter: blur(60px);
}/* Geometric Clip Paths */


.zf-scope .clip-diagonal {
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.zf-scope .clip-curve-top {
  position: relative;
}

.zf-scope .clip-curve-top::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
}/* Background Luxury Dot Grid */


.zf-scope .bg-grid-pattern {
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}/* =======================================================
   ANIMATIONS & KEYFRAMES
   ======================================================= */


@keyframes flame-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 84, 0.7), 0 8px 25px rgba(255, 0, 84, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(255, 84, 0, 0), 0 14px 30px rgba(255, 84, 0, 0.6);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 84, 0.7), 0 8px 25px rgba(255, 0, 84, 0.4);
    transform: scale(1);
  }
}

@keyframes cta-shake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  2% { transform: rotate(-2.5deg) scale(1.02); }
  4% { transform: rotate(2.5deg) scale(1.02); }
  6% { transform: rotate(-2.5deg) scale(1.02); }
  8% { transform: rotate(2.5deg) scale(1.02); }
  10% { transform: rotate(0deg) scale(1); }
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1.5deg); }
}

@keyframes light-sweep {
  0% { transform: translateX(-150%) skewX(-25deg); }
  100% { transform: translateX(250%) skewX(-25deg); }
}

.zf-scope .anim-flame-pulse {
  animation: flame-pulse 2.2s infinite ease-in-out;
}

.zf-scope .anim-shake {
  animation: cta-shake 5s infinite ease-in-out;
}

.zf-scope .anim-float {
  animation: float-badge 3s infinite ease-in-out;
}

.zf-scope .shine-container {
  position: relative;
  overflow: hidden;
}

.zf-scope .shine-container::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: translateX(-150%) skewX(-25deg);
  animation: light-sweep 4.5s infinite;
  pointer-events: none;
}/* =======================================================
   CONTAINER & LAYOUT
   ======================================================= */


.zf-scope .zf-container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.zf-scope .text-center { text-align: center; }
.zf-scope .my-4 { margin-top: 20px; margin-bottom: 20px; }
.zf-scope .my-6 { margin-top: 30px; margin-bottom: 30px; }
.zf-scope .py-6 { padding-top: 40px; padding-bottom: 40px; }
.zf-scope .py-8 { padding-top: 55px; padding-bottom: 55px; }
.zf-scope .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.zf-scope .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

@media (max-width: 768px) {
  .zf-scope .grid-2, .zf-scope .grid-4 { grid-template-columns: 1fr; }
}/* =======================================================
   VIBRANT BUTTONS & CTA
   ======================================================= */


.zf-scope .btn-elementor-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff0054 0%, #ff5400 50%, #d90429 100%);
  color: #ffffff !important;
  font-weight: 900;
  font-size: 19px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #ffe5ec;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 0, 84, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 0.4px;
}

.zf-scope .btn-elementor-red:hover {
  background: linear-gradient(135deg, #d90429 0%, #990024 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 0, 84, 0.6);
}

.zf-scope .btn-elementor-red:active {
  transform: translateY(0);
}

/* Slider Navigation Arrow Buttons */
.zf-scope .slider-nav-btn,
.zf-scope #hero-slide-prev,
.zf-scope #hero-slide-next,
.zf-scope #quality-slide-prev,
.zf-scope #quality-slide-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  min-height: 46px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid #f1f5f9 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  color: #ff0054 !important;
  font-size: 18px !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
  z-index: 25 !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.zf-scope #hero-slide-prev,
.zf-scope #quality-slide-prev,
.zf-scope .slider-nav-btn.prev-btn {
  left: 14px !important;
  right: auto !important;
}

.zf-scope #hero-slide-next,
.zf-scope #quality-slide-next,
.zf-scope .slider-nav-btn.next-btn {
  right: 14px !important;
  left: auto !important;
}

.zf-scope .slider-nav-btn:hover,
.zf-scope #hero-slide-prev:hover,
.zf-scope #hero-slide-next:hover,
.zf-scope #quality-slide-prev:hover,
.zf-scope #quality-slide-next:hover {
  background: #ff0054 !important;
  color: #ffffff !important;
  border-color: #ff0054 !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(255, 0, 84, 0.45) !important;
}

.zf-scope .slider-nav-btn:active,
.zf-scope #hero-slide-prev:active,
.zf-scope #hero-slide-next:active,
.zf-scope #quality-slide-prev:active,
.zf-scope #quality-slide-next:active {
  transform: translateY(-50%) scale(0.95) !important;
}

.zf-scope .slider-nav-btn i,
.zf-scope #hero-slide-prev i,
.zf-scope #hero-slide-next i,
.zf-scope #quality-slide-prev i,
.zf-scope #quality-slide-next i {
  font-size: 18px !important;
  line-height: 1 !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  width: auto !important;
  height: auto !important;
}

/* Headings */
.zf-scope .zf-heading {
  font-family: 'Baloo Da 2', 'Hind Siliguri', sans-serif;
  font-weight: 900;
  color: #0f172a;
}/* Section Title Pill Badge */


.zf-scope .section-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 900;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}/* 4 Model Cards with Floating Vectors */


.zf-scope .model-box {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.zf-scope .model-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(255, 0, 84, 0.22);
  border-color: #ff0054;
}

.zf-scope .model-box .model-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 900;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.4);
}

.zf-scope .model-box h3 {
  font-size: 18.5px;
  font-weight: 900;
  padding: 16px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #0f172a;
  border-top: 2px solid #f1f5f9;
}

.zf-scope .model-box img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zf-scope .model-box:hover img {
  transform: scale(1.06);
}/* Feature List (Glass & Vector Glow) */


.zf-scope .colorful-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 2px solid #f1f5f9;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  margin-bottom: 12px;
  font-weight: 700;
  color: #0f172a;
  font-size: 15.5px;
  transition: all 0.25s ease;
}

.zf-scope .colorful-feature-item:hover {
  transform: translateX(6px);
  border-color: #ff0054;
  box-shadow: 0 8px 20px rgba(255, 0, 84, 0.12);
}

.zf-scope .colorful-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}/* Perks Cards with Fiery Backgrounds */


.zf-scope .perk-card-vibrant {
  border-radius: 20px;
  padding: 26px 18px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.zf-scope .perk-card-vibrant:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.zf-scope .perk-card-1 {
  background: linear-gradient(135deg, #fffbeb 0%, #fed7aa 100%);
  border: 2px solid #fb923c;
}
.zf-scope .perk-card-1 .perk-icon {
  background: linear-gradient(135deg, #ff5400, #ea580c);
  color: #fff;
}

.zf-scope .perk-card-2 {
  background: linear-gradient(135deg, #eff6ff 0%, #bfdbfe 100%);
  border: 2px solid #60a5fa;
}
.zf-scope .perk-card-2 .perk-icon {
  background: linear-gradient(135deg, #00bbf9, #0284c7);
  color: #fff;
}

.zf-scope .perk-card-3 {
  background: linear-gradient(135deg, #ecfdf5 0%, #a7f3d0 100%);
  border: 2px solid #34d399;
}
.zf-scope .perk-card-3 .perk-icon {
  background: linear-gradient(135deg, #00f5d4, #059669);
  color: #0f172a;
}

.zf-scope .perk-card-4 {
  background: linear-gradient(135deg, #fdf2f8 0%, #fbcfe8 100%);
  border: 2px solid #f472b6;
}
.zf-scope .perk-card-4 .perk-icon {
  background: linear-gradient(135deg, #ff0054, #db2777);
  color: #fff;
}

.zf-scope .perk-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.zf-scope .perk-card-vibrant h4 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #0f172a;
}

.zf-scope .perk-card-vibrant p {
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
  font-weight: 600;
}/* FAQ Accordion */


.zf-scope .accordion-wrapper .accordion-item {
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s;
}

.zf-scope .accordion-wrapper .accordion-item.active {
  border-color: #ff0054;
  box-shadow: 0 6px 20px rgba(255, 0, 84, 0.15);
}

.zf-scope .accordion-header {
  padding: 18px 22px;
  background: #ffffff;
  font-weight: 800;
  font-size: 17.5px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: #0f172a;
}

.zf-scope .accordion-header:hover {
  background: #fff5f5;
}

.zf-scope .accordion-body {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease-out;
  background: #fffafa;
  color: #334155;
  font-size: 15.5px;
  line-height: 1.7;
}

.zf-scope .accordion-item.active .accordion-body {
  padding: 18px 22px;
  max-height: 300px;
  border-top: 2px solid #ffe4e6;
}

.zf-scope .accordion-item.active .accordion-header i {
  transform: rotate(180deg);
  color: #ff0054;
}/* =======================================================
   CARTFLOWS NATIVE EMBEDDED CHECKOUT STYLING
   ======================================================= */


.zf-scope .wcf-embed-checkout-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 15px 50px rgba(255, 0, 84, 0.12);
  border: 3px solid #ffbd00;
  position: relative;
}

.zf-scope .wcf-product-option-wrap h3#your_products_heading {
  font-size: 23px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.zf-scope .wcf-qty-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zf-scope .wcf-qty-options.wcf-grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.zf-scope .wcf-qty-options.wcf-grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 767px) {
  .zf-scope .wcf-qty-options.wcf-grid-2-col,
  .zf-scope .wcf-qty-options.wcf-grid-3-col {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.zf-scope .wcf-qty-row {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.zf-scope .wcf-qty-row:hover {
  border-color: #ff5400;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.zf-scope .wcf-qty-row.wcf-selected-product {
  border-color: #ff0054;
  background: linear-gradient(135deg, #fff5f7 0%, #ffffff 100%);
  box-shadow: 0 4px 16px rgba(255, 0, 84, 0.12);
}

.zf-scope .wcf-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.zf-scope .wcf-item-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.zf-scope .wcf-item-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zf-scope .wcf-item-selector input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #ff0054;
  cursor: pointer;
  margin: 0;
}

.zf-scope .wcf-item-image {
  flex-shrink: 0;
}

.zf-scope .wcf-item-image img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: block;
  background: #f8fafc;
}

.zf-scope .wcf-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.zf-scope .wcf-display-title {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  word-break: break-word;
}

.zf-scope .wcf-price-inline {
  margin-top: 1px;
}

.zf-scope .wcf-display-price {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.zf-scope .wcf-display-price del {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.zf-scope .wcf-display-price ins {
  text-decoration: none;
  color: #ff0054;
  font-size: 16px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
}

.zf-scope .wcf-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.zf-scope .wcf-qty-selection-wrap {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.zf-scope .wcf-qty-selection-btn {
  padding: 4px 10px;
  background: #f1f5f9;
  cursor: pointer;
  user-select: none;
  font-weight: 900;
  font-size: 15px;
  color: #0f172a;
  transition: all 0.2s;
}

.zf-scope .wcf-qty-selection-btn:hover {
  background: #ff0054;
  color: #ffffff;
}

.zf-scope .wcf-qty-selection {
  width: 36px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 14.5px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
}/* 2 Column Form */


.zf-scope .wcf-col2-set {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 26px;
}

@media (max-width: 768px) {
  .zf-scope .wcf-col2-set {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.zf-scope .wcf-col-1 h3, .zf-scope .wcf-shipping-methods-title, .zf-scope #order_review_heading {
  font-size: 21px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 3px solid #ffbd00;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zf-scope .form-row {
  margin-bottom: 18px;
}

.zf-scope .form-row label {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 6px;
}

.zf-scope .form-row label .required {
  color: #ff0054;
  font-weight: 900;
}

.zf-scope .form-row input[type="text"], .zf-scope .form-row input[type="tel"], .zf-scope .form-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  font-size: 15.5px;
  font-family: inherit;
  outline: none;
  transition: all 0.25s;
  background: #ffffff;
}

.zf-scope .form-row input[type="text"]:focus, .zf-scope .form-row input[type="tel"]:focus, .zf-scope .form-row textarea:focus {
  border-color: #ff0054;
  box-shadow: 0 0 0 4px rgba(255, 0, 84, 0.2);
}/* Size Radios / Buttons */
.zf-scope .wcf-size-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.zf-scope .wcf-size-radios label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 8px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  background: #ffffff;
  color: #1e293b;
  margin: 0;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.zf-scope .wcf-size-radios label:hover {
  border-color: #ff0054;
  color: #ff0054;
  background: #fff5f7;
  transform: translateY(-1px);
}

.zf-scope .wcf-size-radios label.checked,
.zf-scope .wcf-size-radios label:has(input:checked) {
  border-color: #ff0054;
  background: #ff0054;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(255, 0, 84, 0.3);
  transform: translateY(-1px);
}

.zf-scope .wcf-size-radios input[type="radio"] {
  display: none;
}

/* Color Swatches Attribute */
.zf-scope .wcf-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.zf-scope .wcf-color-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1.5px solid #cbd5e1;
  border-radius: 50px;
  cursor: pointer;
  background: #ffffff;
  color: #1e293b;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s ease;
  user-select: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.zf-scope .wcf-color-item:hover {
  border-color: #ff0054;
  background: #fff5f7;
  color: #ff0054;
  transform: translateY(-1px);
}

.zf-scope .wcf-color-item.checked,
.zf-scope .wcf-color-item:has(input:checked) {
  border-color: #ff0054;
  background: #fff5f7;
  color: #ff0054;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(255, 0, 84, 0.15);
  transform: translateY(-1px);
}

.zf-scope .wcf-color-item input[type="radio"] {
  display: none;
}

.zf-scope .wcf-color-swatch-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  box-shadow: 0 0 0 1px #cbd5e1;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.zf-scope .wcf-color-item.checked .wcf-color-swatch-circle,
.zf-scope .wcf-color-item:has(input:checked) .wcf-color-swatch-circle {
  box-shadow: 0 0 0 2px #ff0054;
}

.zf-scope .wcf-color-name {
  font-size: 13.5px;
  color: inherit;
}

/* Custom Package / Option Radios */
.zf-scope .wcf-custom-attr-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.zf-scope .wcf-custom-opt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 700;
  font-size: 14.5px;
  transition: all 0.2s;
}

.zf-scope .wcf-custom-opt-item:hover {
  border-color: #059669;
  background: #f0fdf4;
}

.zf-scope .wcf-custom-opt-item.checked, .zf-scope .wcf-custom-opt-item:has(input:checked) {
  border-color: #059669;
  background: #ecfdf5;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.18);
}

.zf-scope .wcf-custom-opt-item input[type="radio"] {
  accent-color: #059669;
  width: 18px;
  height: 18px;
}

/* Custom Dropdown Selects */
.zf-scope .zf-select-wrapper {
  position: relative;
  width: 100%;
  margin-top: 6px;
}

.zf-scope select.zf-custom-select,
.zf-scope .wcf-attr-field select {
  width: 100%;
  display: block;
  padding: 13px 18px;
  padding-right: 44px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.zf-scope select.zf-custom-select:hover,
.zf-scope .wcf-attr-field select:hover {
  border-color: #ff0054;
  background-color: #fff5f7;
  transform: translateY(-1px);
}

.zf-scope select.zf-custom-select:focus,
.zf-scope .wcf-attr-field select:focus {
  border-color: #ff0054;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 0, 84, 0.15);
  transform: translateY(-1px);
}

.zf-scope select.zf-custom-select option {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
}

/* Shipping Methods */
.zf-scope .woocommerce-shipping-methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.zf-scope .woocommerce-shipping-methods li {
  padding: 12px 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.zf-scope .woocommerce-shipping-methods li:hover {
  border-color: #0284c7;
  background: #f8fafc;
}

.zf-scope .woocommerce-shipping-methods li:has(input:checked) {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.14);
}

.zf-scope .woocommerce-shipping-methods input[type="radio"] {
  accent-color: #0284c7;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.zf-scope .woocommerce-shipping-methods label {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #0f172a;
}

/* Order Table */
.zf-scope .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.zf-scope .shop_table th, .zf-scope .shop_table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  font-size: 14.5px;
}

.zf-scope .shop_table thead th {
  background: #0f172a;
  font-weight: 800;
  color: #ffbd00;
}

.zf-scope .shop_table tfoot th {
  font-weight: 800;
  color: #0f172a;
}

.zf-scope .shop_table tfoot tr.order-total th, .zf-scope .shop_table tfoot tr.order-total td {
  font-size: 15px !important;
  font-weight: 900;
  color: #ff0054;
  background: #fff0f3;
  border-bottom: none;
}

/* Payment Box */
.zf-scope .woocommerce-checkout-payment {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.zf-scope .woocommerce-checkout-payment ul,
.zf-scope .woocommerce-checkout-payment ul.wc_payment_methods,
.zf-scope .woocommerce-checkout-payment ul.payment_methods,
.zf-scope ul.wc_payment_methods,
.zf-scope ul.payment_methods {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.zf-scope .wc_payment_methods li,
.zf-scope .wc_payment_method,
.zf-scope .woocommerce-checkout-payment li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.zf-scope .wc_payment_method::before,
.zf-scope .wc_payment_methods li::before,
.zf-scope .woocommerce-checkout-payment li::before {
  display: none !important;
  content: none !important;
}

.zf-scope .wc_payment_method input[type="radio"] {
  accent-color: #10b981;
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0 8px 0 0;
}

.zf-scope .wc_payment_method label {
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.zf-scope .payment_box {
  margin-top: 8px;
  padding: 10px 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  font-size: 13.5px;
  color: #065f46;
  font-weight: 600;
  line-height: 1.5;
}

/* Fiery Place Order Button */
.zf-scope #place_order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #ff0054 0%, #ff5400 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  padding: 16px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 0, 84, 0.4);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.zf-scope #place_order:hover {
  background: linear-gradient(135deg, #e00049 0%, #e64a00 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 0, 84, 0.5);
}

.zf-scope #place_order:active {
  transform: translateY(1px);
}

.zf-scope .woocommerce-privacy-policy-text {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 16px;
  line-height: 1.5;
}/* =======================================================
   STICKY BOTTOM FLOATING BAR (PRICE & ORDER BUTTON)
   ======================================================= */


.zf-scope .sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 2px solid rgba(255, 0, 84, 0.25);
  padding: 12px 18px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.4s ease;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.zf-scope .sticky-bottom-bar.hide-on-checkout,
.zf-scope .sticky-bottom-bar.zf-hidden {
  transform: translateY(130%) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.zf-scope .sticky-bar-container {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.zf-scope .sticky-price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zf-scope .sticky-prod-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #ff0054;
}

.zf-scope .sticky-price-text {
  display: flex;
  flex-direction: column;
}

.zf-scope .sticky-price-text .offer-label {
  font-size: 12px;
  font-weight: 800;
  color: #ea580c;
  line-height: 1;
}

.zf-scope .sticky-price-text .main-price {
  font-size: 22px;
  font-weight: 900;
  color: #ff0054;
  font-family: 'Inter', sans-serif;
  line-height: 1.1;
}

.zf-scope .sticky-price-text .regular-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
  font-family: 'Inter', sans-serif;
  margin-left: 6px;
}

.zf-scope .sticky-actions-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zf-scope .sticky-wa-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f5d4 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.zf-scope .sticky-wa-btn:hover {
  transform: scale(1.1);
}

.zf-scope .sticky-order-btn {
  background: linear-gradient(135deg, #ff0054 0%, #ff5400 50%, #d90429 100%);
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 900;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(255, 0, 84, 0.45);
  transition: all 0.25s;
  white-space: nowrap;
}

.zf-scope .sticky-order-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 25px rgba(255, 0, 84, 0.6);
}

@media (max-width: 580px) {
  .zf-scope .sticky-prod-thumb {
    display: none;
  }
  .zf-scope .sticky-order-btn {
    padding: 10px 20px;
    font-size: 15px;
  }
  .zf-scope .sticky-price-text .main-price {
    font-size: 19px;
  }
}/* Modal Popup */


.zf-scope .order-modal {
  position: fixed;
  inset: 0;
  background: rgba(9, 13, 22, 0.82);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.zf-scope .order-modal.active {
  opacity: 1;
  visibility: visible;
}

.zf-scope .order-modal-content {
  background: #ffffff;
  border-radius: 24px;
  max-width: 490px;
  width: 100%;
  padding: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(25px);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 4px solid #10b981;
}

.zf-scope .order-modal.active .order-modal-content {
  transform: translateY(0);
}/* ============================================================
   Funnel Order Bump (fke-order-bump)
   A one-click checkbox offer shown near the checkout.
   ============================================================ */


.zf-scope .fke-order-bump {
  --fke-bump-accent: #ff0054;
  border: 2px dashed var(--fke-bump-accent);
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8fa 0%, #ffffff 100%);
  padding: 16px 18px;
  margin: 22px 0;
  position: relative;
  transition: box-shadow .25s ease, transform .25s ease;
}

.zf-scope .fke-order-bump.fke-bump-active {
  box-shadow: 0 8px 26px rgba(255, 0, 84, 0.18);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #fff0f4 0%, #ffffff 100%);
}

.zf-scope .fke-order-bump-head {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  color: var(--fke-bump-accent);
  font-size: 16px;
  line-height: 1.4;
}

.zf-scope .fke-order-bump-checkbox {
  width: 22px;
  height: 22px;
  accent-color: var(--fke-bump-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.zf-scope .fke-order-bump-body {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f2d5de;
}

.zf-scope .fke-order-bump-img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid #f0e0e5;
}

.zf-scope .fke-order-bump-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.zf-scope .fke-order-bump-title {
  font-size: 15px;
  font-weight: 800;
  color: #1f2937;
}

.zf-scope .fke-order-bump-desc {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.zf-scope .fke-order-bump-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--fke-bump-accent);
  font-family: 'Inter', sans-serif;
}

@media (max-width: 480px) {
  .zf-scope .fke-order-bump-body { flex-direction: column; align-items: flex-start; }
  .zf-scope .fke-order-bump-img { width: 100%; height: auto; max-height: 160px; }
}/* ============================================================
   Funnel Upsell / Downsell (fke-upsell)
   ============================================================ */


.zf-scope .fke-upsell {
  --fke-upsell-accent: #ff0054;
  max-width: 560px;
  margin: 32px auto;
  padding: 0 16px;
}

.zf-scope .fke-upsell-card {
  background: #ffffff;
  border: 2px solid var(--fke-upsell-accent);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(255, 0, 84, 0.12);
}

.zf-scope .fke-upsell-title {
  font-size: 24px;
  font-weight: 900;
  color: #1f2937;
  line-height: 1.35;
  margin: 0 0 16px;
}

.zf-scope .fke-upsell-img {
  width: 200px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 14px;
  display: block;
  border: 1px solid #f0e0e5;
}

.zf-scope .fke-upsell-product-name {
  font-size: 16px;
  font-weight: 800;
  color: #374151;
  margin: 0 0 6px;
}

.zf-scope .fke-upsell-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 14px;
}

.zf-scope .fke-upsell-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--fke-upsell-accent);
  font-family: 'Inter', sans-serif;
  margin-bottom: 20px;
}

.zf-scope .fke-upsell-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zf-scope .fke-upsell-accept {
  background: linear-gradient(135deg, var(--fke-upsell-accent) 0%, #ff5400 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 22px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 18px rgba(255, 0, 84, 0.28);
}

.zf-scope .fke-upsell-accept:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 0, 84, 0.36);
}

.zf-scope .fke-upsell-reject {
  background: transparent;
  color: #9ca3af;
  border: none;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.zf-scope .fke-upsell-accept:disabled, .zf-scope .fke-upsell-reject:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.zf-scope .fke-upsell-status {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #059669;
}

.zf-scope .fke-upsell-notice {
  max-width: 560px;
  margin: 24px auto;
  padding: 16px;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}/* ============================================================
   Funnel Thank You / Order Details (fke-thankyou)
   ============================================================ */


.zf-scope .fke-thankyou {
  --fke-ty-accent: #10b981;
  max-width: 600px;
  margin: 40px auto;
  padding: 0 16px;
}

.zf-scope .fke-ty-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  padding: 34px 28px;
  text-align: center;
}

.zf-scope .fke-ty-check {
  font-size: 60px;
  color: var(--fke-ty-accent);
  line-height: 1;
  margin-bottom: 14px;
}

.zf-scope .fke-ty-heading {
  font-size: 26px;
  font-weight: 900;
  color: #1f2937;
  margin: 0 0 10px;
  line-height: 1.35;
}

.zf-scope .fke-ty-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 22px;
}

.zf-scope .fke-ty-order {
  text-align: left;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  overflow: hidden;
}

.zf-scope .fke-ty-order-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9fafb;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #eef0f2;
}

.zf-scope .fke-ty-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.zf-scope .fke-ty-table td, .zf-scope .fke-ty-table th {
  padding: 12px 16px;
  text-align: left;
}

.zf-scope .fke-ty-table td.fke-ty-item-total, .zf-scope .fke-ty-table tfoot td {
  text-align: right;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.zf-scope .fke-ty-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
}

.zf-scope .fke-ty-item-qty {
  color: var(--fke-ty-accent);
  font-weight: 700;
  margin-left: 4px;
}

.zf-scope .fke-ty-table tfoot th {
  text-align: left;
  font-weight: 700;
  color: #6b7280;
}

.zf-scope .fke-ty-grand th, .zf-scope .fke-ty-grand td {
  font-size: 17px;
  color: #1f2937;
  font-weight: 900;
  border-top: 2px solid #eef0f2;
}

.zf-scope .fke-ty-customer {
  padding: 16px;
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  background: #f9fafb;
  border-top: 1px solid #eef0f2;
}

.zf-scope .fke-ty-noorder {
  color: #9ca3af;
  font-size: 14px;
}

/* =======================================================
   MIGRATED FROM index.html inline <style> (were never in
   style.css, so these widgets rendered unstyled once the
   page was rebuilt in Elementor). Scoped under .zf-scope.
   ======================================================= */
@keyframes rainbow-sweep {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes zf-heartbeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

.zf-scope .rainbow-banner {
  background: linear-gradient(90deg, #ff0054, #ff5400, #ffbd00, #00f5d4, #00bbf9, #7209b7, #ff0054);
  background-size: 400% 400%;
  animation: rainbow-sweep 8s ease infinite;
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(255, 0, 84, 0.35);
  position: sticky;
  top: 0;
  z-index: 50;
}

.zf-scope .fiery-price-box {
  background: linear-gradient(135deg, #ff0054 0%, #ff5400 50%, #990024 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 16px;
  display: inline-block;
  box-shadow: 0 12px 35px rgba(255, 0, 84, 0.45);
  border: 3px solid #ffccd5;
  position: relative;
}

.zf-scope .bg-icon-vector {
  position: absolute;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.zf-scope .anim-heartbeat {
  animation: zf-heartbeat 1.4s ease-in-out infinite;
}

.zf-scope .text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

/* =======================================================
   COMPREHENSIVE MOBILE RESPONSIVE OPTIMIZATIONS
   ======================================================= */
@media (max-width: 768px) {
  .zf-scope .zf-checkout-container {
    padding: 0 10px;
  }

  .zf-scope .wcf-embed-checkout-form {
    padding: 20px 14px;
    border-radius: 16px;
  }

  .zf-scope .wcf-col2-set {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 18px;
  }

  .zf-scope .zf-checkout-main-title {
    font-size: 26px !important;
  }

  .zf-scope .zf-checkout-subtitle {
    font-size: 14px !important;
  }

  .zf-scope .wcf-qty-options.wcf-grid-2-col,
  .zf-scope .wcf-qty-options.wcf-grid-3-col {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .zf-scope .wcf-qty-row {
    padding: 12px 14px;
  }

  .zf-scope .wcf-item-left {
    gap: 10px;
  }

  .zf-scope .wcf-item-image img {
    width: 50px;
    height: 50px;
  }

  .zf-scope .wcf-display-title {
    font-size: 14.5px;
  }

  .zf-scope .wcf-display-price {
    font-size: 14.5px;
  }

  .zf-scope .form-row input[type="text"],
  .zf-scope .form-row input[type="tel"],
  .zf-scope .form-row input[type="email"],
  .zf-scope .form-row textarea,
  .zf-scope select.zf-custom-select {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: 10px;
  }

  .zf-scope .wcf-col-1 h3,
  .zf-scope .wcf-shipping-methods-title,
  .zf-scope #order_review_heading {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .zf-scope .shop_table th,
  .zf-scope .shop_table td {
    padding: 10px 12px;
    font-size: 13.5px;
  }

  .zf-scope .shop_table tfoot tr.order-total th,
  .zf-scope .shop_table tfoot tr.order-total td {
    font-size: 15px !important;
  }

  .zf-scope #place_order {
    padding: 15px 22px;
    font-size: 18px;
  }

  .zf-scope .fiery-price-box {
    padding: 12px 20px;
    font-size: 16px;
    display: block;
    width: 100%;
  }

  .zf-scope .rainbow-banner {
    font-size: 13px;
    padding: 8px 12px;
  }

  .zf-scope .sticky-bottom-bar {
    padding: 8px 12px;
  }

  .zf-scope .sticky-bar-container {
    gap: 8px;
  }

  .zf-scope .sticky-bar-btn {
    padding: 10px 18px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 480px) {
  .zf-scope .wcf-embed-checkout-form {
    padding: 16px 10px;
  }

  .zf-scope .wcf-size-radios {
    gap: 7px;
  }

  .zf-scope .wcf-size-radios label {
    min-width: 42px;
    padding: 6px 10px;
    font-size: 13.5px;
  }

  .zf-scope .wcf-color-swatches {
    gap: 7px;
  }

  .zf-scope .wcf-color-item {
    padding: 5px 12px;
    font-size: 13px;
  }

  .zf-scope .wcf-color-swatch-circle {
    width: 18px;
    height: 18px;
  }

  .zf-scope .woocommerce-shipping-methods li {
    padding: 10px 12px;
    font-size: 13.5px;
  }

  .zf-scope .woocommerce-shipping-methods label {
    font-size: 13.5px;
  }

  .zf-scope #place_order {
    padding: 14px 18px;
    font-size: 17px;
  }
}
