/** Shopify CDN: Minification failed

Line 12:11 Expected identifier but found whitespace
Line 12:18 Unexpected ";"
Line 472:3 Unexpected "/"

**/
/* Limited Time Offer Section Styles
.limited-time-offer {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  overflow: hidden;
  position: relative;
}



.limited-offer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.limited-offer-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Left Side - Content */
.limited-offer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  text-align: center;
  position: relative;
  align-items: center;
}
.limited-offer-right{
    flex: 1;
}

.limited-offer-text {
  text-align: left;
}

.limited-offer-title {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: #111111;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
}

.limited-offer-subtitle {
  font-family: var(--font-hanken-grotesk);
  font-size: 18px;
  font-weight: 400;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Product Image with Sale Banner */
.limited-offer-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.offer-product-img {
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.6s ease-out;
}

.countdown-item:nth-child(1) { animation-delay: 0.1s; }
.countdown-item:nth-child(2) { animation-delay: 0.2s; }
.countdown-item:nth-child(3) { animation-delay: 0.3s; }
.countdown-item:nth-child(4) { animation-delay: 0.4s; }

.countdown-number {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-h1);
  font-weight: 300;
  color: #111111;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

}


.countdown-label {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-p-1);
  font-weight: 300;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-item:hover .countdown-label {
  color: #f05a23;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Sale Banner Animation */
.sale-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #f05a23 0%, #ff6b35 100%);
  padding: 12px 0;
  text-align: center;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sale-text {
  font-family: var(--font-kumbh-sans);
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: pulse 2s infinite;
}

/* Running Sale Marquee Overlay */
.image-marquee-about .marquee-overlay {
  position: static;
  transform: none;
  pointer-events: auto;
  overflow: hidden;
  width: 100%;
  
}
.image-marquee-about .marquee-container{width: 100%;max-width: 100%;background-color: var(--brand-black-color);padding: 60px 0;}
.promo-image-container .marquee-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.promo-image-container .marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #F16036;
  padding: 5px;
  max-width: 528px;
  margin: auto;
}

 .marquee-track {
  display: flex;
  justify-content: center;
  align-items: center;
}
.promo-image-container .marquee-track{
  animation: marqueeLoop 2s linear infinite;

}
.image-marquee-about .marquee-track{
  animation: marqueeLoop 3s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  padding-left: 20px;
}

.marquee-text {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-p-1);
  font-weight: 300;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.image-marquee-about .marquee-text{
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 400;
  font-size: 31px;
}
.image-marquee-about .marquee-text img{
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-marquee-about .marquee-content{gap: 50px;}



/* Fast Continuous Loop Animation - No Pauses */
@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-60px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(60px);
  }
  100% {
    transform: translateX(0);
  }
}


/* Text Glow Animation */
@keyframes textGlow {
  from {
    filter: brightness(1) drop-shadow(0 0 5px rgba(240, 90, 35, 0.5));
  }
  to {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(240, 90, 35, 0.7));
  }
}

/* Explore Now Button */
.explore-now-btn {
  display: inline-block;
  background: #111111;
  color: white;
  text-decoration: none;
  padding: 15px 23px;
  border: 1px solid #f05a23;
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-p-1);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 150px;
}

.explore-now-btn:hover {
  background: #f05a23;
  border-color: #f05a23;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(240, 90, 35, 0.3);
}

/* Right Side - Lifestyle Image */
.limited-offer-right {

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.offer-lifestyle-img {
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nxt-print-rules-section .marquee-overlay{
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  transform: none;
  transform: rotate(90deg);
  transform-origin: 97% 50%;
}
.nxt-print-rules-section .marquee-overlay .marquee-container{max-width: 100%;}
.nxt-print-rules-section .marquee-text{
  font-size: 24px;
  transform: rotate(180deg);
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
  .limited-time-offer {
    padding: 60px 0;
  }
  .nxt-print-rules-section .marquee-text{
    font-size: 14px;
    transform:none;
  }
  .nxt-print-rules-section .marquee-overlay{transform: none;transform-origin: auto;}
  .image-marquee-about .marquee-container{
    padding: 30px 0;
  }
  
  
  .limited-offer-content {
    gap: 40px;
    flex-direction: column-reverse;
  }
  
  .limited-offer-title{
    font-size: 39px;
  }
  .marquee-text, .countdown-label{font-size: 16px;}
  .countdown-number{font-size: 61px;}
  .limited-offer-left{width: 100%;}
}


@media screen and (max-width: 600px) {
  .limited-offer-title{font-size: var(--fs-h5);}
  /* Mobile marquee adjustments */
  .marquee-text {
    font-size: 11px;
    padding: 4px 8px;
    letter-spacing: 0.05em;
    font-family: var(--font-kumbh-sans);
  }
  .countdown-label{font-size: 12px;text-transform: capitalize;}
  
  .marquee-content {
    gap: 12px;
  }
  .countdown-number{
    font-size: 37px;
  }
  .countdown-timer {
gap: 35px;
  }
  
  .marquee-overlay {
    width: 90%;
  }
  .limited-time-offer{padding: 30px 0;}
  .nxt-print-rules-section .marquee-overlay {
    transform: none;
    transform-origin: initial;
    max-width: 100%;
    width: 100%;
}

  /* Adjust loop movement for mobile */
  @keyframes marqueeLoop {
    0% { transform: translateX(0); }
    25% { transform: translateX(-20px); }
    50% { transform: translateX(0); }
    75% { transform: translateX(20px); }
    100% { transform: translateX(0); }
  }
  
 
  .image-marquee-about .marquee-track{
    animation: marqueeLoop-ab 4.2s linear infinite;
  }
  .image-marquee-about .marquee-content {
    gap: 10px;
}
  @keyframes marqueeLoop-ab {
    0% { transform: translateX(0); }
    25% { transform: translateX(-60px); }
    50% { transform: translateX(0); }
    75% { transform: translateX(60px); }
    100% { transform: translateX(0); }
  }
  
    .promo-image-container .marquee-track{
      animation: marqueeLoop 1.2s linear infinite;
    }
    .image-marquee-about .marquee-text img{width: 38px;height: 38px;}
    .image-marquee-about .marquee-text{font-size: 8px;}
  .explore-now-btn{padding: 10px 20px;}
}

@media screen and (max-width: 480px) {
  
}



/* Print styles */
@media print {
  .limited-time-offer {
    background: white !important;
    box-shadow: none !important;
  }
  
  .countdown-timer {
    border: 1px solid #ccc;
  }
  
  .explore-now-btn {
    border: 1px solid #000 !important;
    background: white !important;
    color: #000 !important;
  }
} */


/* Limited Time Offer Section Styles */
.limited-time-offer {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  overflow: hidden;
  position: relative;
}



.limited-offer-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.limited-offer-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Left Side - Content */
.limited-offer-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  text-align: center;
  position: relative;
  align-items: center;
}
.limited-offer-right{
    flex: 1;
}

.limited-offer-text {
  text-align: left;
}

.limited-offer-title {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-h3);
  font-weight: 300;
  color: #111111;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
}

.limited-offer-subtitle {
  font-family: var(--font-hanken-grotesk);
  font-size: 18px;
  font-weight: 400;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
}

/* Product Image with Sale Banner */
.limited-offer-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

.offer-product-img {
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  gap: 25px;
  justify-content: flex-start;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.6s ease-out;
}

.countdown-item:nth-child(1) { animation-delay: 0.1s; }
.countdown-item:nth-child(2) { animation-delay: 0.2s; }
.countdown-item:nth-child(3) { animation-delay: 0.3s; }
.countdown-item:nth-child(4) { animation-delay: 0.4s; }

.countdown-number {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-h1);
  font-weight: 300;
  color: #111111;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

}


.countdown-label {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-p-1);
  font-weight: 300;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-item:hover .countdown-label {
  color: #f05a23;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Sale Banner Animation */
.sale-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #f05a23 0%, #ff6b35 100%);
  padding: 12px 0;
  text-align: center;
  animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sale-text {
  font-family: var(--font-kumbh-sans);
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: pulse 2s infinite;
}

/* Running Sale Marquee Overlay */
.marquee-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #F16036;
  padding: 5px;
  max-width: 528px;
  margin: auto;
}

.marquee-track {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: marqueeLoop 2s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  padding-left: 20px;
}

.marquee-text {
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-p-1);
  font-weight: 300;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}



/* Fast Continuous Loop Animation - No Pauses */
@keyframes marqueeLoop {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-60px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(60px);
  }
  100% {
    transform: translateX(0);
  }
}


/* Text Glow Animation */
@keyframes textGlow {
  from {
    filter: brightness(1) drop-shadow(0 0 5px rgba(240, 90, 35, 0.5));
  }
  to {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(240, 90, 35, 0.7));
  }
}

/* Explore Now Button */
.explore-now-btn {
  display: inline-block;
  background: #111111;
  color: white;
  text-decoration: none;
  padding: 15px 23px;
  border: 1px solid #f05a23;
  font-family: var(--font-kumbh-sans);
  font-size: var(--fs-p-1);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 150px;
}

.explore-now-btn:hover {
  background: #f05a23;
  border-color: #f05a23;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(240, 90, 35, 0.3);
}

/* Right Side - Lifestyle Image */
.limited-offer-right {

  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;

}

.offer-lifestyle-img {
  width: auto;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.nxt-print-rules-section .marquee-overlay{
  bottom: 0;
  top: auto;
  left: 0;
  right: 0;
  transform: none;
  transform: rotate(90deg);
  transform-origin: 97% 50%;
}
.nxt-print-rules-section .marquee-overlay .marquee-container{max-width: 100%;}
.nxt-print-rules-section .marquee-text{
  font-size: 24px;
  transform: rotate(180deg);
}


/* Responsive Design */
@media screen and (max-width: 1024px) {
  .limited-time-offer {
    padding: 60px 0;
  }
  .nxt-print-rules-section .marquee-text{
    font-size: 14px;
    transform:none;
  }
  .nxt-print-rules-section .marquee-overlay{transform: none;transform-origin: auto;}
  
  
  .limited-offer-content {
    gap: 40px;
    flex-direction: column-reverse;
  }
  
  .limited-offer-title{
    font-size: 39px;
  }
  .marquee-text, .countdown-label{font-size: 16px;}
  .countdown-number{font-size: 61px;}
  .limited-offer-left{width: 100%;}
}


@media screen and (max-width: 600px) {
  .limited-offer-title{font-size: var(--fs-h5);}
  /* Mobile marquee adjustments */
  .marquee-text {
    font-size: 11px;
    padding: 4px 8px;
    letter-spacing: 0.05em;
    font-family: var(--font-kumbh-sans);
  }
  .countdown-label{font-size: 12px;text-transform: capitalize;}
  
  .marquee-content {
    gap: 12px;
  }
  .countdown-number{
    font-size: 37px;
  }
  .countdown-timer {
gap: 35px;
  }
  
  .marquee-overlay {
    width: 90%;
  }
  .limited-time-offer{padding: 30px 0;}
  .nxt-print-rules-section .marquee-overlay {
    transform: none;
    transform-origin: initial;
    max-width: 100%;
    width: 100%;
}
  
  /* Adjust loop movement for mobile */
  @keyframes marqueeLoop {
    0% { transform: translateX(0); }
    25% { transform: translateX(-20px); }
    50% { transform: translateX(0); }
    75% { transform: translateX(20px); }
    100% { transform: translateX(0); }
  }
  
  .marquee-track {
    animation: marqueeLoop 1.2s linear infinite;
  }
  .explore-now-btn{padding: 10px 20px;}
}

@media screen and (max-width: 480px) {
  
}



/* Print styles */
@media print {
  .limited-time-offer {
    background: white !important;
    box-shadow: none !important;
  }
  
  .countdown-timer {
    border: 1px solid #ccc;
  }
  
  .explore-now-btn {
    border: 1px solid #000 !important;
    background: white !important;
    color: #000 !important;
  }
}
