/** Shopify CDN: Minification failed

Line 122:16 Expected identifier but found whitespace
Line 122:18 Unexpected "{"
Line 122:27 Expected ":"
Line 123:12 Expected identifier but found whitespace
Line 123:14 Unexpected "{"
Line 123:23 Expected ":"

**/
.arriving-soon {
  --as-bg: #231b14;
  --as-text: #f6f1e8;
  --as-accent: #c89b5a;
  --as-card-bg: #f6f1e8;
  --as-card-text: #1a1a1a;
  --as-overlay: 0.25;
  background: var(--as-card-bg);
  color: var(--as-card-text);
  overflow: hidden;
}

#early-access {
  display: block;
  scroll-margin-top: 400px;
}

.arriving-soon [hidden] {
  display: none !important;
}

/* HERO */
.arriving-soon__hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--as-bg);
  color: var(--as-text);
  min-height: 520px;
  position: relative;
}

.arriving-soon__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0 0 0) 25%, #00000066 100%);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.arriving-soon__content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
      position: relative;
    z-index: 2;
    text-align: center;
}

.arriving-soon__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.32em;
  font-weight: 600;
  color: var(--as-accent);
  border: 1px solid var(--as-accent);
  padding: 10px 24px;
  border-radius: 2px;
  margin: 0 auto 28px;
}

.arriving-soon__title {
  font-family: var(--font-heading-family, 'Times New Roman', serif);
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--as-text);
}

.arriving-soon__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--as-accent);
  width: 180px;
  margin: 0 auto 22px;
}

.arriving-soon__divider-line {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.arriving-soon__desc {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 440px;
  color: var(--as-text);
  opacity: 0.92;
  text-align: center;
}

/* CTA */
.collection-soon__wrapper {
    text-align: center;
    max-width: 400px;
    margin: 40px auto;
    /* Admin se aayi hui CSS Variables yahan apply ho rahi hain */
    --as-accent: {{ section.settings.btn_accent_color }};
    --as-bg: {{ section.settings.btn_bg_color }};
  }

  /* Aapki CSS (Class name change kar diya hai) */
  .collection-soon__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    color: var(--as-accent);
    border: 1px solid var(--as-accent);
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: 0.22em;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none; /* Taake link ka underline na aaye */
    transition: background 0.2s ease, color 0.2s ease;
  }

  .collection-soon__cta:hover {
    background: var(--as-accent);
    color: var(--as-bg);
  }
  .collection-soon__cta:hover .collection-soon__cta-icon {
    transform: translateX(8px);
  }

  .collection-soon__cta-icon {
    display: flex;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
  }
/* CTA */



/* FORM */
.arriving-soon__form {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.arriving-soon__form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.arriving-soon__email {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  background: transparent;
  color: var(--as-text);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.arriving-soon__email::placeholder {
  color: rgba(246, 241, 232, 0.55);
}

.arriving-soon__email:focus {
  outline: none;
  border-color: var(--as-accent);
}

.arriving-soon__email:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.arriving-soon__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: var(--as-accent);
  border: 1px solid var(--as-accent);
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 0.22em;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}

.arriving-soon__cta:hover {
  background: var(--as-accent);
  color: var(--as-bg);
}

.arriving-soon__cta-icon {
  flex-shrink: 0;
}

.arriving-soon__msg {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.arriving-soon__msg--success {
  color: var(--as-accent);
}

.arriving-soon__msg--error {
  color: #ff9999;
}

.arriving-soon__subtitle {
  margin: 14px auto 0;
  font-size: 14px;
  color: var(--as-text);
  opacity: 0.75;
  text-align: center;
}

/* MEDIA */
.arriving-soon__media {
  position: relative;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  height: 100%;
  right: 0;
  z-index: auto;
}

.arriving-soon__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arriving-soon__hero-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.4);
}

/* PRODUCTS */
.arriving-soon__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  padding: 56px 48px;
  background: var(--as-card-bg);
  color: var(--as-card-text);
}

.arriving-soon__empty {
  padding: 40px;
  text-align: center;
  background: var(--as-card-bg);
  color: var(--as-card-text);
  font-size: 14px;
  opacity: 0.6;
}

.arriving-soon__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.arriving-soon__card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #1a1a1a;
}

.arriving-soon__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.arriving-soon__card-media:hover .arriving-soon__card-image {
  transform: scale(1.04);
}

.arriving-soon__card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 1);
  opacity: var(--as-overlay);
  pointer-events: none;
}

.arriving-soon__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(35, 27, 20, 0.92);
  color: var(--as-accent);
  border: 1px solid var(--as-accent);
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
}

.arriving-soon__card-name {
  font-family: var(--font-heading-family, 'Times New Roman', serif);
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0 0;
  line-height: 1.3;
}

.arriving-soon__card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.arriving-soon__card-name a:hover {
  color: var(--as-accent);
}

.arriving-soon__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--as-accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 8px;
  font-family: inherit;
  transition: gap 0.2s ease;
}

.arriving-soon__card-cta:hover {
  gap: 10px;
}

/* TABLET */
@media (max-width: 990px) {
  .arriving-soon__hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .arriving-soon__content {
    padding: 48px 32px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .arriving-soon__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .arriving-soon__media {
    order: -1;
    min-height: 280px;
    aspect-ratio: 16 / 9;
  }

  .arriving-soon__products {
    padding: 40px 24px;
    gap: 24px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .arriving-soon__content {
    padding: 40px 24px;
  }

  .arriving-soon__title {
    font-size: 36px;
  }

  .arriving-soon__products {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 32px 20px;
  }

  .arriving-soon__card-name {
    font-size: 15px;
  }

  .arriving-soon__card-badge {
    font-size: 8px;
    padding: 4px 8px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 420px) {
  .arriving-soon__products {
    grid-template-columns: 1fr;
  }
}
