/** Shopify CDN: Minification failed

Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:30 Expected ":"
Line 26:10 Expected identifier but found whitespace
Line 26:12 Unexpected "{"
Line 26:21 Expected ":"

**/


/* CSS from section stylesheet tags */
/* ===== IHW Divider (Reusable) ===== */
.ihw-divider {
  background-color: #F4EEEB; /* match section background */
  text-align: center;
  padding: 20px 0; /* tighter spacing */
}

.ihw-divider-line {
  width: 120px;   /* short, elegant line */
  height: 1px;
  background-color: {{ section.settings.line_color }};
  margin: 10px auto;
  opacity: {{ section.settings.opacity }};
}
/* ===== In Her Way Product Tabs (Split Layout, Refined) ===== */
.ihw-highlight {
  background: #F4EEEB;
  padding: 60px 20px;
  text-align: center;
}

.ihw-title {
  font-family: "Shefian", serif;
  font-size: 2.3rem; /* slightly smaller */
  font-weight: 600; /* bolder for presence */
  letter-spacing: -0.5px; /* subtle refinement */
  margin-bottom: 12px;
  color: #4A0E20;
}

.ihw-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
}

/* Tabs */
.ihw-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  cursor: pointer;
}

.ihw-tab {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: border 0.3s ease, color 0.3s ease;
}

.ihw-tab.active {
  border-color: #5A1E2C;
  color: #5A1E2C;
}

/* Product Split Layout */
.ihw-content {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ihw-content.active {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  opacity: 1;
}

.ihw-product-image {
  flex: 1;
  position: relative;
  max-width: 400px;
}

.ihw-product-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.ihw-product-image img.hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;      /* force same size */
  height: 100%;     /* cover parent */
  object-fit: cover;/* crop properly */
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ihw-product-image:hover img.hover-img {
  opacity: 1;
}

.ihw-product-image:hover img:not(.hover-img) {
  opacity: 0; /* hide the base image */
  transform: scale(1.02);
}

/* Product Info */
.ihw-product-info {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.ihw-product-name {
  font-family: "Shefian", serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #4A0E28;
}

.ihw-product-price {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 15px;
}

.ihw-product-desc {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.ihw-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.ihw-btn:hover {
  background: #5A1E2C;
}

/* Mobile */
@media (max-width: 768px) {
  .ihw-content.active {
    flex-direction: column;
    text-align: center;
  }
  .ihw-product-info {
    text-align: center;
    max-width: 100%;
  }
  .ihw-product-desc {
    max-width: 100%;
  }
}

/* Mobile Tabs Fix */
@media (max-width: 480px){
  .ihw-tabs {
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .ihw-tab {
    font-size: 0.85rem;
    white-space: nowrap;
  }
}