/** Shopify CDN: Minification failed

Line 15:13 Expected identifier but found whitespace
Line 15:15 Unexpected "{"
Line 15:24 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:iwatch-story (INDEX:23, SCOPED:FALSE) */
.iwatch-story {
  padding: 80px 20px;
  background: {{ section.settings.back_color }};
  text-align: center;
}

.iwatch-story__container {
  max-width: 1200px;
  margin: 0 auto;
}

.iwatch-story__heading {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.iwatch-story__subheading {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
}

.iwatch-story__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.iwatch-card {
  padding: 40px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.iwatch-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.iwatch-card__label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.iwatch-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.iwatch-card__text {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}

.iwatch-card__button {
  background: #000;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.iwatch-card__button:hover {
  background: #333;
}

/* Background colors */
.bg-green { background: #ecfaf4; }
.bg-yellow { background: #fdf6e6; }
.bg-blue { background: #eef8fd; }

/* Popup Styles */
.iwatch-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.iwatch-popup__content {
  max-width: 800px;
  width: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.iwatch-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.iwatch-popup iframe,
.iwatch-popup video {
  width: 100%;
  height: 450px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 990px) {
  .iwatch-story__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:767px) {
  .iwatch-story__heading {
    font-size: 32px;
  }
}
/* END_SECTION:iwatch-story */

/* START_SECTION:smart-watch-feature (INDEX:54, SCOPED:FALSE) */
.smart-watch-section {
  padding: 60px 20px;
  background: #ffffff;
}

.smart-watch-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.smart-watch-section h2{
  text-align: center;
    font-size: 32px;
    
    font-weight: 600;
    margin-bottom: 40px;
}

.smart-watch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.smart-watch-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.smart-watch-image {
  background: #1f1f26;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.smart-watch-image img {
  max-width: 100%;
  height: auto;
}

.smart-watch-section .smart-watch-title {
  font-size: 32px;
   text-align: left;
  font-weight: 700;
      line-height: 38px;
      margin:0px;
  
}

.smart-watch-text {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.smart-watch-button {
  margin-top: 10px;
}

.smart-watch-button a {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.smart-watch-button a:hover {
  background: #333;
}

/* Mobile */
@media (max-width: 768px) {
  .smart-watch-grid {
    grid-template-columns: 1fr;
  }

  .smart-watch-title {
    font-size: 26px;
  }
}
/* END_SECTION:smart-watch-feature */