/** Shopify CDN: Minification failed

Line 18:2 Expected ":"
Line 231:1 Expected "}" to go with "{"

**/
.tpt-banner-container {
  /* position: relative;
  overflow: hidden;
  width: 100%;
  height: var(--desktop-height);
  border-radius: var(--image-border-radius);
  box-sizing: border-box;

} */

position: relative;
    /* ... baaki styles ... */
  position: relative;
  overflow: hidden;
  width: 100%;
  height: var(--desktop-height);
  border-radius: var(--image-border-radius);
  box-sizing: border-box;
    /* Zaroori Fix: Header se bahut kam z-index dein */
    z-index: 1;

.tpt-banner-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: var(--image-border-radius);
  overflow: hidden;
}

.tpt-banner-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--image-border-radius);
  position: absolute;
  top: 0;
  left: 0;
}

/* Desktop and Tablet Image - Show on desktop/tablet, hide on mobile */
.tpt-banner-image-desktop {
  display: block;
}

/* Mobile Image - Hide on desktop/tablet, show on mobile */
.tpt-banner-image-mobile {
  display: none;
}

.tpt-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  z-index: 2;
}

.tpt-banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  display: flex;
  padding: 2em;
  align-items: center;
  box-sizing: border-box;
}

.tpt-banner-content-inner {
  width: var(--content-width, 50%);
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  box-sizing: border-box;
}

.tpt-banner-content.tpt-section_align-left {
  justify-content: flex-start;
  text-align: left;
}

.tpt-banner-content.tpt-section_align-center {
  justify-content: center;
  text-align: center;
  align-items: center;
}

.tpt-banner-content.tpt-section_align-right {
  justify-content: flex-end;
  text-align: right;
  align-items: flex-end;
}

.tpt-banner-heading {
  margin: 0;
  color: rgb(var(--tpt-section-title-color));
  font-weight: 700;
  line-height: 1.2;
  font-size: 90%;
}

.tpt-banner-subheading {
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: rgb(var(--tpt-section-foreground-color)) !important;
}

.tpt-banner-description {
  color: rgb(var(--tpt-section-foreground-color)) !important;
  line-height: 1.5;
}

.tpt-banner-description * {
  color: rgb(var(--tpt-section-foreground-color)) !important;
}

.tpt-banner-description p {
  margin: 0;
}

.tpt-banner-button {
  margin-top: 0.5em;
}

.tpt-banner-button .tpt-button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px;
}

.tpt-banner-button-icon {
  width: fit-content;
  height: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tpt-banner-button-icon .tpt-button-arrow {
  transform: rotate(-45deg);
  height: 16px;
}

/* Tablet styles */
@media screen and (max-width: 1279px) {
  .tpt-banner-container {
    height: var(--tablet-height);
  }
  
  .tpt-banner-content-inner {
    width: min(var(--content-width, 50%), 90%);
    gap: 1.25em;
  }
  
  .tpt-banner-content {
    padding: 1.5em;
  }
  
  .tpt-banner-heading.h0 {
    font-size: calc(var(--h0-font-size) * 0.75);
  }
  
  .tpt-banner-heading.h2 {
    font-size: calc(var(--h2-font-size) * 0.8);
  }

  /* Keep desktop image on tablet */
  .tpt-banner-image-desktop {
    display: block;
  }

  .tpt-banner-image-mobile {
    display: none;
  }
}

/* Mobile styles */
@media screen and (max-width: 767px) {
  .tpt-banner-container {
    height: var(--mobile-height);
  }
  
  .tpt-banner-content-inner {
    width: 100%;
    gap: 1em;
  }
  
  .tpt-banner-content {
    padding: 1.25em;
  }
  
  .tpt-banner-heading.h0 {
    font-size: calc(var(--h0-font-size) * 0.6);
  }
  
  .tpt-banner-heading.h2 {
    font-size: calc(var(--h2-font-size) * 0.7);
  }
  
  .tpt-banner-description {
    font-size: 0.9em;
  }
  
  .tpt-banner-subheading {
    font-size: 0.9em;
  }

  /* Switch to mobile image on mobile */
  .tpt-banner-image-desktop {
    display: none;
  }

  .tpt-banner-image-mobile {
    display: block;
  }
}