/** Shopify CDN: Minification failed

Line 560:0 Unexpected "}"

**/
/* ================================================
   New Feature Section Styles
   ================================================ */
/* Image Position */
.feature-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Default: image on RIGHT */
.feature-left-content {
  order: 1;
}

.feature-right-image {
  order: 2;
}

/* When image position is LEFT */
.feature-content-wrapper.image-left .feature-right-image {
  order: 1;
}

.feature-content-wrapper.image-left .feature-left-content {
  order: 2;
}
.feature-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-content-wrapper.image-left {
  flex-direction: row-reverse;
}

/* Heading positions */
.feature-main-title--full {
  text-align: center;
  margin-bottom: 40px;
}

.feature-main-title--content {
  margin-bottom: 24px;
}
/* Container & Layout */
.new-feature-section {
  padding: 15px 20px;
  position: relative;
  overflow: hidden;
}

.feature-section-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 768px) {
  .new-feature-section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .new-feature-section {
    padding: 50px 16px;
  }
}

/* ================================================
   Content Wrapper - Two Column Layout
   ================================================ */

.feature-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  /* align-items: center; */
}

@media (max-width: 1024px) {
  .feature-content-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .feature-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ================================================
   Left Content - Title and Features
   ================================================ */

.feature-left-content {
  padding-right: 20px;
}

@media (max-width: 768px) {
  .feature-left-content {
    padding-right: 0;
    text-align: center;
  }
}

/* Main Title */
.feature-main-title {
  text-align:center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #FFFFFF;
}

@media (max-width: 1024px) {
  .feature-main-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .feature-main-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .feature-main-title {
    font-size: 24px;
  }
}

/* ================================================
   Features List
   ================================================ */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .features-list {
    gap: 14px;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Feature Item */
.feature-item {

  display: flex;
  align-items: center;
  gap: 16px;
  background: white !important;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: default;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  
}

.feature-item:hover {
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  .feature-item {
    justify-content: flex-start;
    padding: 14px 18px;
  }
  
  .feature-item:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .feature-item {
    padding: 12px 16px;
    gap: 12px;
  }
}

/* Feature Icon */
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .feature-icon {
    width: 36px;
    height: 36px;
  }
  
  .feature-icon svg,
  .feature-icon img {
    width: 28px;
    height: 28px;
  }
}

/* Feature Text */
.feature-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .feature-title {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .feature-title {
    font-size: 14px;
  }
}

/* ================================================
   Right Content - Product Image
   ================================================ */

.feature-right-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .feature-right-image {
    order: -1;
  }
}

/* Image Wrapper */
.feature-image-wrapper {
  position: relative;
  max-width: 600px;
  width: 100%;
  z-index: 2;
}
.feature-image-wrapper img{
  width: 100%;
    object-fit: cover;
    border-radius: 1em;
    height:600px;
}
.feature-product-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.feature-image-wrapper:hover .feature-product-image {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .feature-image-wrapper {
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .feature-image-wrapper {
    max-width: 100%;
  }
  
  .feature-product-image {
    border-radius: 16px;
  }
}

/* ================================================
   Decorative Circle
   ================================================ */

.decorative-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  bottom: -100px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
  animation: pulseCircle 4s ease-in-out infinite;
}

@keyframes pulseCircle {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}

@media (max-width: 1024px) {
  .decorative-circle {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -40px;
  }
}

@media (max-width: 768px) {
  .decorative-circle {
    width: 300px;
    height: 300px;
    bottom: -60px;
    right: -30px;
  }
}

@media (max-width: 480px) {
  .decorative-circle {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -25px;
  }
}

/* ================================================
   Additional Decorative Elements
   ================================================ */

.new-feature-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  top: -200px;
  left: -200px;
  pointer-events: none;
}

.new-feature-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  bottom: -150px;
  right: 50%;
  pointer-events: none;
}

@media (max-width: 768px) {
  .new-feature-section::before {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
  }
  
  .new-feature-section::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
  }
}

/* ================================================
   Animations
   ================================================ */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-left-content {
  animation: slideInLeft 0.6s ease-out;
}

.feature-right-image {
  animation: slideInRight 0.6s ease-out;
}

.feature-item {
  animation: slideInLeft 0.5s ease-out backwards;
}

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

/* ================================================
   Accessibility
   ================================================ */

.feature-item:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .feature-item {
    border: 2px solid rgba(0, 0, 0, 0.3);
  }
  
  .feature-item:hover {
    border-color: rgba(0, 0, 0, 0.6);
  }
}

/* ================================================
   Reduced Motion
   ================================================ */

@media (prefers-reduced-motion: reduce) {
  .feature-item:hover,
  .feature-image-wrapper:hover .feature-product-image {
    transform: none;
  }
  
  .decorative-circle {
    animation: none;
  }
  
  .feature-left-content,
  .feature-right-image,
  .feature-item {
    animation: none;
  }
}

/* ================================================
   Print Styles
   ================================================ */

@media print {
  .new-feature-section {
    padding: 20px 10px;
  }
  
  .decorative-circle,
  .new-feature-section::before,
  .new-feature-section::after {
    display: none;
  }
  
  .feature-item {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ================================================
   RTL Support
   ================================================ */

[dir="rtl"] .feature-item:hover {
  transform: translateX(-8px);
}

[dir="rtl"] .feature-left-content {
  padding-right: 0;
  padding-left: 20px;
}

@media (max-width: 768px) {
  [dir="rtl"] .feature-left-content {
    padding-left: 0;
  }
}

/* ================================================
   Dark Mode Support (Optional)
   ================================================ */

@media (prefers-color-scheme: dark) {
   .feature-item {
    background: white;
};
  }
  
  .feature-product-image {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
}
