/** Shopify CDN: Minification failed

Line 316:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
/* Additional CSS can be added here if needed */
.mp-container {
    margin: 0;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: var(--navbar-height) 0 0;
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    background-color: #f3f4f6;
    position: relative;
    z-index: 1;
  }

  .mp-inner-container {
    width: 100%;
    height: 31.7rem;
    background-size: cover;
    border-radius: 0.75rem;
    display: flex;
    overflow: visible;
    position: relative;
    align-items: center;
  }

  .mp-mobile-section {
    width: 50%;
    position: relative;
    padding-right: 9rem;
    overflow: visible;
    height: 632px;
    margin-top: 40px;
    z-index: 10;
  }

  .mp-phone-frame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 21rem;
    height: 39.5rem;
    background: #1f2937;
    border-radius: 3rem;
    top: -120px;
    bottom: -120px;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 10px solid black;
    margin-top: 225px;
  }

  .mp-volume-buttons {
    position: absolute;
    right: -12px;
    top: 43px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
  }

  .mp-volume-button {
    width: 3px;
    height: 35px;
    background: #000000;
    border-top-right-radius:2px;
    border-bottom-right-radius:2px;
  }

  .mp-power-button {
    position: absolute;
    left: -14px;
    top: 86px;
    width: 6px;
    height: 45px;
    background:black;
    border-top-left-radius:2px;
    border-bottom-left-radius:2px;
    z-index: 2;
  }


  .mp-notch {
    position: absolute;
    top: 4px;
    left: 51%;
    transform: translateX(-50%);
    width: 65px;
    height: 1.75rem;
    background: black;
    border-radius: 1rem 1rem 1rem 1rem;
    z-index: 20;
  }
    .mp-screen-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 2.5rem;
  }

  .mp-screen {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 2rem;
    background: white;
    cursor: pointer;
  }

  .mp-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
  }

  .mp-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    z-index: 10;
  }

  .mp-play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    z-index:101;
  }

  .mp-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid white;
    margin-left: 5px;
  }

  .mp-play-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
  }

  .mp-play-overlay:hover .mp-play-button {
    transform: scale(1.1);
  }

  .mp-content-section {
    flex: 1;
    padding: 2rem;
    overflow-y: hidden;
    padding-left: 10rem;
    position: relative;
    z-index: 5;
    align-items:left;
  }

  .mp-title {
    font-size: 2.25rem; /* Increased font size from 1.875rem to 2.25rem */
    font-weight: bold;
    color: #111827;
    margin: 0 0 1.25rem;
    line-height: 1.2;
  }

  .mp-subtitle {
    font-size: 0.875rem; /* Slightly increased from 0.813rem */
    font-weight: 300;
    color: #1f2937;
    margin: 0 0 0.30rem;
  }
   .mp-bullet {
    font-size: 1rem; /* Increased from 0.9rem */
    color: #4b5563;
    list-style-type: disc;
    padding-left: 1.5rem;
  }

  .mp-bullet li {
    font-size: 1rem; /* Increased from 0.9rem */
    margin-bottom: 0.5rem;
  }
  
  .mp-product-description {
    font-size: 1.5rem; /* Increased from 0.95rem */
    color: #4b5563;
    line-height: 1.6;
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 15px;
    text-align: left;
  }
  
  .mp-product-description p {
    margin-bottom: 15px;
  }
  
  /* Product description in main view */
  .mp-main-product-description {
    font-size: 1.1rem; /* Increased from 0.95rem */
    color: #4b5563;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 25px;
    max-width: 90%;
    text-align: left;
  }
  
  .mp-main-product-description p {
    margin-bottom: 12px;
  }
  
  /* Custom scrollbar for description */
  .mp-product-description::-webkit-scrollbar {
    width: 4px;
  }
  
  .mp-product-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .mp-product-description::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
  }
  
  .mp-content-container {
    display: block;
  }
  
  .mp-product-info-container {
    display: none;
  }
  
  @media (max-width: 1200px) {
    .mp-content-section {
      padding-left: 5rem;
      margin-left: 20rem;
    }

    .mp-phone-frame {
      margin-left: 8rem;
    }
  }

  @media (max-width: 768px) {
    .mp-inner-container {
      flex-direction: column;
      height: auto;
      background-position: center;
    }

    .mp-mobile-section {
      padding-right: 0;
      margin-top: 0;
      height: auto;
      width: 100%;
    }

    .mp-phone-frame {
      position: relative;
      top: 0;
      bottom: 0;
      margin-left: 0;
      left: 0;
      transform: none;
      width: 14rem;
      height: 30rem;
      margin: -60px auto 0;
    }

    .mp-content-section {
      padding: 2rem;
      margin-left: 0;
      text-align: center;
      font-size: 0.875rem; /* Increased from 0.813rem */
    }
    
    .mp-product-description,
    .mp-main-product-description {
      text-align: left;
      padding: 0 10px;
      font-size: 1rem; /* Slightly smaller on mobile but still larger than original */
    }
    
    .mp-main-product-description {
      max-width: 100%;
    }
    
    .mp-title {
      font-size: 1.875rem; /* Slightly smaller on mobile but still larger */
    }
  }
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  
.si-section {
  margin: 0;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-family: Poppins, sans-serif !important;
}

.si-heading-container {
  text-align: center;
  margin-bottom: 3.1rem;
  width: 100%;
}

.si-heading {
  font-size: 36px;
  color: #333;
  margin: 0;
  font-weight: 500;

  letter-spacing: -0.5px;
}

.si-main-container {
  display: flex;
  gap: 36px;
  padding: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.si-sub-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 231px;
  text-align: center;
}

.si-image-container {
  width: 231px;
  height: 179px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 0px;
  position: relative;
}

.si-line-div {
  width: 185px;
  height: 4px;
  background-color: #B72626;
  margin-top: 8px;
  margin-bottom: 20px;
}

.si-text {
  font-size: 13px;
  font-family: Poppins;
  font-weight: 400;
  line-height: 1.25;
  color: black;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 231px;
  word-wrap: break-word;
  font-size: 15px;
}

.si-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.si-image:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .si-section {
    padding: 40px 20px;
  }
  
  .si-heading {
    color: black;
    font-size: 34px;
    font-family: Poppins;
    font-weight: 600;
    line-height: 40.80px;
    word-wrap: break-word
  }
  
  .si-main-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  
  .si-heading-container {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .si-heading {
    font-size: 1.75rem;
  }
  
  .si-text {
    font-size: 14px;
  }
}