/** Shopify CDN: Minification failed

Line 123:0 Unexpected "<"
Line 185:0 Unexpected "<"
Line 316:0 All "@import" rules must come first
Line 562:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;500;700&display=swap');

.about-split {
  background: linear-gradient(135deg, #fff0f5 0%, #fefefe 100%);
  padding: 100px 30px;
  font-family: 'Poppins', sans-serif;
}

.about-wrapper {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 600px;
}

.about-text h2 {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #74432d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  font-size: 2rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.8;
}

.about-text ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.about-text ul li {
  font-size: 2rem;
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  color: #333;
}

.about-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff0076;
  font-weight: 700;
}

.about-image {
  flex: 1 1 500px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(255, 0, 118, 0.15);
  border: 10px solid #fff;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }

  .about-text p {
    font-size: 1.1rem;
  }

  .about-text ul li {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about-text h2 {
    font-size: 3rem;
  }

  .about-text p {
    font-size: 1.5rem;
  }

  .about-text ul li {
    font-size: 1.5rem;
  }
  .about-image {
  flex: 0;
  position: relative;
}
  .about-split{
    padding: 20px 30px 5px;
  }
}
<style>
.category-icons-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
 
}

.category-icons-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.category-icons-container {
  display: inline-flex;
  gap: 20px;
}

.category-icon {
  text-align: center;
  flex: 0 0 auto;
  width: 100px;
  scroll-snap-align: start;
}

.category-icon img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.category-icon:hover img {
  transform: scale(1.1);
}

.category-icon-title {
  margin-top: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #000;
}

/* Desktop layout - center align and wrap */
@media (min-width: 768px) {
  .category-icons-wrapper {
    overflow-x: hidden;
    white-space: normal;
   
  }

  .category-icons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
</style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Poppins:wght@300;500;700&display=swap');

.mission-split {
  background: linear-gradient(135deg, #fff0f5 0%, #fefefe 100%) !important;
  padding: 100px 30px;
  font-family: 'Poppins', sans-serif;
}

.mission-wrapper {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
   background: linear-gradient(135deg, #fff0f5 0%, #fefefe 100%);
}

.mission-text {
  flex: 1 1 600px;
  order: 2;
}

.mission-text h2 {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  color: #74432d;
  margin-bottom: 20px;
  line-height: 1.2;
}

.mission-text p {
  font-size: 2rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.8;
}

.mission-text ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.mission-text ul li {
  font-size: 2rem;
  padding-left: 25px;
  position: relative;
  margin-bottom: 15px;
  color: #333;
}

.mission-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0066ff;
  font-weight: 700;
}

.mission-image {
  flex: 1 1 500px;
  position: relative;
  order: 1;
}

.mission-image img {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 25px 60px rgba(0, 102, 255, 0.15); */
  border: 10px solid #fff;
  object-fit: cover;
}

@media (max-width: 992px) {
  .mission-wrapper {
    flex-direction: column;
    text-align: center;
     background: linear-gradient(135deg, #fff0f5 0%, #fefefe 100%);
  }
  
  .mission-text {
    order: 2;
  }
  
  .mission-image {
    order: 1;
  }

  .mission-text h2 {
    font-size: 2.5rem;
  }

  .mission-text p {
    font-size: 1.1rem;
  }

  .mission-text ul li {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .mission-text h2 {
    font-size: 3rem;
  }

  .mission-text p {
    font-size: 1.5rem;
  }

  .mission-text ul li {
    font-size: 1.5rem;
  }
  
  .mission-image {
    flex: 0;
    position: relative;
  }
  
  .mission-split {
    padding: 20px 30px 5px;
     background: linear-gradient(135deg, #fff0f5 0%, #fefefe 100%);
  }
  .mission-text {
  flex: 1 1 10px;
  order: 2;
}
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.product-slider-premium {
  padding: 100px 20px;
  background: #000000;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.slider-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

.slider-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: #ffffff;
  position: relative;
  letter-spacing: -0.5px;
}

.slider-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: #bdff45;
  border-radius: 2px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.product-slider-track {
  display: flex;
  gap: 40px;
  padding: 30px 0;
  will-change: transform;
}

.product-card-premium {
  flex: 0 0 320px;
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid #222222;
}

.product-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(189, 255, 69, 0.1);
  border-color: #bdff45;
}

.product-image-wrapper {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #050505;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.95;
}

.product-card-premium:hover .product-image-wrapper img {
  transform: scale(1.03);
  opacity: 1;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #bdff45;
  color: #000000;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.product-info {
  padding: 24px;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: -0.2px;
  text-decoration:none !important;
  
}

  .product-title {
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}


.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #bdff45;
  margin-bottom: 5px;
}

.original-price {
  text-decoration: line-through;
  color: #777777;
  font-size: 0.9rem;
  margin-left: 8px;
  font-weight: 500;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  pointer-events: none;
  transform: translateY(-50%);
}

.slider-btn {
  width: 56px;
  height: 56px;
  background: #bdff45;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  border: 1px solid #333333;
}

.slider-btn:hover {
  background: #bdff45;
  transform: scale(1.1);
  border-color: transparent;
}

  .next-btn, .prev-btn{
    background: #bdff45 !important;
    color:black !important;
  }

.slider-btn svg {
  width: 24px;
  height: 24px;
  stroke: #000;
}

.slider-btn:hover svg {
  stroke: #000000;
}

@media (max-width: 1440px) {
  .product-card-premium {
    flex: 0 0 280px;
  }
  
  .product-image-wrapper {
    height: 280px;
  }
}

@media (max-width: 1024px) {
  .slider-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  
  .product-slider-track {
    gap: 30px;
  }
  
  .product-card-premium {
    flex: 0 0 240px;
  }
  
  .product-image-wrapper {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .product-slider-premium {
    padding: 80px 20px;
  }
  
  .slider-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .product-slider-track {
    gap: 20px;
  }
  
  .product-card-premium {
    flex: 0 0 220px;
  }
  
  .product-image-wrapper {
    height: 220px;
  }
  
  .slider-nav {
    display: none;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Poppins:wght@300;500;700&display=swap');

.brand-mission-vision-modern {
  padding: 120px 20px;
  background: radial-gradient(ellipse at top left, #fff5f7 0%, #f8f8ff 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.mv-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}

.mv-card {
  background: white;
  border-radius: 24px;
  padding: 60px 50px;
  box-shadow: 0 20px 50px rgba(230, 0, 35, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 0, 118, 0.1);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(230, 0, 35, 0.15);
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, #ff0076, #ff4d00);
}

.vision-card {
  animation: cardSlideInLeft 1s ease-out forwards;
}

.mission-card {
  animation: cardSlideInRight 1s ease-out forwards;
}

.mv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.mv-title span {
  position: relative;
  z-index: 2;
}

.mv-title .highlight {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: rgba(255, 77, 77, 0.3);
  z-index: 1;
  transform: rotate(-1deg);
}

.mv-desc {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #4a4a4a;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid #ff4d4d;
}

.mv-icon {
  position: absolute;
  right: 40px;
  top: 40px;
  opacity: 0.1;
  z-index: 0;
}

.mv-icon svg {
  width: 80px;
  height: 80px;
}

.vision-icon {
  color: #ff0076;
}

.mission-icon {
  color: #ff4d00;
}

.mv-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
  opacity: 0.15;
}

.shape-vision {
  width: 300px;
  height: 300px;
  background: #ff0076;
  top: -100px;
  left: -100px;
}

.shape-mission {
  width: 400px;
  height: 400px;
  background: #ff4d00;
  bottom: -150px;
  right: -150px;
}

@keyframes cardSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes cardSlideInRight {
  from {
    opacity: 0;
    transform: translateX(50px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@media (max-width: 1200px) {
  .mv-title {
    font-size: 2.8rem;
  }
  
  .mv-desc {
    font-size: 1.5rem;
  }
}

@media (max-width: 992px) {
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mv-card {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .brand-mission-vision-modern {
    padding: 80px 20px;
  }
  
  .mv-title {
    font-size: 2rem;
  }
  
  .mv-desc {
    font-size: 1rem;
    padding-left: 15px;
  }
  
  .mv-icon svg {
    width: 60px;
    height: 60px;
  }
}