/** Shopify CDN: Minification failed

Line 375:23 Expected identifier but found "!"
Line 376:22 Expected identifier but found "!"
Line 377:21 Expected identifier but found "!"
Line 378:27 Expected identifier but found "!"
Line 386:4 Expected ":"

**/
/* ===== CUSTOM HERO SECTION ===== */
.custom-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 50%; left:50%;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.hero-heading {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 15px;
  color: #f2f2f2;
}

.hero-subtext {
  font-size: 1.9rem;
  line-height: 1.0;
  margin-bottom: 25px;
  color: #f2f2f2;
}

.hero-button {
  background-color: #fff;
  color: #3b2e25;
  padding: 15px 28px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.7rem;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #3b2e25;
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-heading {
    font-size: 7rem;
  }
  .hero-subtext {
    font-size: 2rem;
  }
}
/* ===== FEATURED COLLECTIONS ===== */
.featured-collections-wrapper {
  background: #faf7f3;
  padding: 20px 0;
  text-align: center;
}

.featured-collections-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.0rem;
  color: #3b2e25;
  margin-bottom: 40px;
}

.featured-collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.featured-collection-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.featured-collection-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.featured-collection-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-collection-item:hover .featured-collection-image {
  transform: scale(1.05);
}

.featured-collection-title {
  font-size: 15px;
  font-weight: 600;
  color: #3b2e25;
  padding: 16px;
}
/* ===== ABOUT BRAND SECTION ===== */
.about-brand-section {
  padding: 40px 0;
  background: #fffaf5;
}

.about-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  align-items: center;
}

.about-brand-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.about-brand-content {
  max-width: 500px;
}

.about-brand-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #3b2e25;
  margin-bottom: 20px;
}

.about-brand-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #5a4a3b;
  margin-bottom: 25px;
}

.about-brand-button {
  background-color: #3b2e25;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-brand-button:hover {
  background-color: #7a6147;
}

/* Mobile view */
@media (max-width: 768px) {
  .about-brand-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-brand-heading {
    font-size: 2rem;
  }
}/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products-section {
  padding: 20px 0;
  background: #ffffff;
  text-align: center;
}

.featured-products-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.0rem;
  color: #3b2e25;
  margin-bottom: 10px;
}

.featured-products-subtext {
  font-size: 1.7rem;
  color: #6a5c4c;
  margin-bottom: 50px;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

.featured-product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.featured-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.09);
}

.featured-product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-product-card:hover .featured-product-image {
  transform: scale(1.05);
}

.featured-product-info {
  padding:10px;
  color: #3b2e25;
}
/* ===== LIFESTYLE SHOWCASE ===== */
.lifestyle-showcase {
  padding: 80px 0;
  background: #fffdf9;
}

.lifestyle-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 100px;
}

.lifestyle-row.reverse {
  flex-direction: row-reverse;
}

.lifestyle-image img {
  width: 70%;
  border-radius: 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.lifestyle-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #3b2e25;
  margin-bottom: 14px;
}

.lifestyle-content p {
  font-size: 1.2rem;
  color: #6b5b4d;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .lifestyle-row {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== HAPPENING AT INDESPOKE ===== */
.happening-section {
  background: #fffdf8;
  padding: 30px 0;
  text-align: center;
}

.happening-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.0rem;
  color: #3b2e25;
  margin-bottom: 10px;
}

.happening-subtext {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.7rem;
  color: #6a5c4c;
}

.happening-carousel {
  display: flex;
  gap: 35px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.happening-carousel::-webkit-scrollbar { display: none; }

.happening-item {
  flex: 0 0 290px;
  text-align: left;
}

.happening-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 14px;
  transition: transform .45s ease;
}

.happening-item img:hover {
  transform: scale(1.05);
}

.happening-item h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3b2e25;
  margin-bottom: 6px;
}

.happening-item p {
  font-size: .99rem;
  color: #6a5c4c;
  line-height: 1.3;
}
/* Mobile-only tweaks for hero headline */
@media screen and (max-width: 749px) {
  /* Main hero heading */
  .custom-hero .hero-heading,
  .custom-hero h1 {
    font-size: 2.2rem;
    line-height: 1.5;
    max-width: 32ch;        /* keeps the line from stretching too wide */
    margin: 0 auto 0.8rem;  /* center + small gap below */
    padding: 0 1.5rem;
    text-align: center;
  }

  /* Small text under the heading */
  .custom-hero .hero-subtext {
    font-size: 1.4rem; !important;
    line-height: 1.3; !important;
    max-width: 32ch; !important;
    margin: 0 auto 1.2rem; !important;
    padding: 0 1.2rem;
    text-align: center;
  }

  /* Give the text block a bit more breathing room on mobile */
  .custom-hero .hero-content {
    padding-bottom: 3.9rem;
  }
}