/** Shopify CDN: Minification failed

Line 414:0 Unexpected "}"
Line 501:0 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:accordion-two-column (INDEX:2, SCOPED:FALSE) */
.accordion-section {
  width: 100%;
}

.accordion-inner {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* RIGHT COLUMN CONTENT 3/5 */
.right-content-col {
  flex: 0 0 60%;
  padding-left: 50px;
}

.right-content-col h2{
    font-family: Petit;
    font-size: 32px;
    color: #93714b;
}

.faq-item {
  border-bottom: 1px solid #93714b;
  padding: 8px 0;
  cursor: pointer;
}
.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}
.faq-icon {
  font-size: 30px;
  transition: transform 0.3s ease;
  padding-right: 20px;
  color: #93714b;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-content {
  max-height: 500px;
  font-size: 15px;
  line-height: 2;
}

.faq-item.active .faq-content p{
    margin: 0;
    line-height: 2;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* LEFT COLUMN IMAGE - NOW PLACED AFTER FAQ SECTION */
.image-after-faq {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.image-after-faq img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 0 5px;
  border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width: 767px) {
  .accordion-inner {
    flex-direction: column;
    gap: 50px;
  }
  .right-content-col{
    padding: 0px 20px !important;
    width: 100%;
  }
  .right-content-col h2{
    font-size: 25px;
  }

  /* Mobile: Image full width */
  .image-after-faq img {
    width: 100%;
    height: auto;
    margin: 0;
    border-radius: 0;
  }
}
/* END_SECTION:accordion-two-column */

/* START_SECTION:custom-list-section (INDEX:22, SCOPED:FALSE) */
.two-col-wrapper {
  display: flex;
  gap: 3px;
}

.two-col-left,
.two-col-right {
  width: 50%;
  min-height: 400px;
}

.two-col-left {
  display: flex;
  justify-content: center;
}

.two-col-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 30px;
}

.list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.two-col-left h2 {
  color: #fff;
  font-size: 28px;
  line-height: 1.6;
  text-align: left;
}

.list-grid p,
.list-grid li {
  color: #fff;
  line-height: 2;
  font-size: 16px;
}

.buttons {
  width: 200px;
  background: #fff;
  color: #000;
  font-size: 17px;
  text-align: left;
  padding: 12px 40px;
  text-decoration: none;
}

.two-col-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animation */
.animate-left,
.animate-right {
  opacity: 0;
  transition: all 1s ease;
}

.animate-left {
  transform: translateX(-60px);
}

.animate-left.active {
  transform: translateX(0);
  opacity: 1;
}

.animate-right {
  transform: scale(1.2);
}

.animate-right.active {
  transform: scale(1);
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .two-col-wrapper {
    flex-direction: column-reverse;
  }

  /* Left-align content in the brown area on mobile */
  .two-col-left h2,
  .two-col-content,
  .list-grid,
  .list-grid p,
  .list-grid li {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .two-col-left,
  .two-col-right {
    width: 100%;
  }
  
  .two-col-content {
    gap: 10px !important;
  }
  
  .two-col-left h2 {
    text-align: left;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
  }
  
  .list-grid {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    margin-top: 0 !important;
  }
  
  .list-grid p,
  .list-grid li {
    margin-bottom: 4px !important;
    margin-top: 0 !important;
    line-height: 1.5 !important;
    padding: 0 !important;
  }

  /* Make content left-aligned on mobile for better readability in
     sections with a narrow column/brown background (headings, lists, RTE). */
  .three-col-section .inner-content,
  .three-col-section .inner-content h2,
  .three-col-section .inner-content .rte,
  .three-col-section .inner-content ul,
  .three-col-section .inner-content li,
  .inner-content,
  .inner-content h2,
  .inner-content .rte,
  .banner-content,
  .banner-content h2 {
    text-align: left !important;
    align-items: flex-start !important;
  }
}
/* END_SECTION:custom-list-section */

/* START_SECTION:home-banner (INDEX:36, SCOPED:FALSE) */
.home-banner-wrapper {
  position: relative;
  width: 100%;
  padding: 80px 0;
  animation: bgZoom 4s ease-in-out forwards;
  min-height: 100vh;     /* Full screen height */
  display: flex;
  align-items: flex-end;
}

@keyframes bgZoom {
  0% {
    background-size: 120%;
    background-position: center center;
  }
  100% {
    background-size: 100%;
    background-position: center center;
  }
}

.home-banner-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 0 60px 40px;
}

.home-banner-content.left { text-align: left; }
.home-banner-content.center { text-align: center; }
.home-banner-content.right { text-align: right; }

.home-banner-buttons{
    margin-top: 30px;
}

.home-banner-buttons a {
  display: inline-block;
  padding: 10px 40px;
  margin-right: 10px;
  background: transparent;
  color: #fff;
  border: 2px solid #fff !important;
  text-decoration: none;
  font-family: 'BeausiteClassic';
}

.home-banner-content h1{
    font-family: "Petit", sans-serif !important;
    color: #fff;
    font-weight: 400;
}

.home-banner-content p{
    color: #fff;
    line-height: 1.2;
    font-family: "BeausiteClassic";
    font-weight: 500;
    margin: 10px 0 20px 0;
}

.home-banner-content .divider{
  display: none;
}

@media screen and (max-width: 767px) {
  /* ✅ FULL-WIDTH HERO BANNER WITHOUT SIDE SPACING */
  #shopify-section-template--25674006004010__home_banner_tjVFCy .home-banner-wrapper {
    position: relative;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding: 90px 0 !important;
    min-height: 80vh !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
  }

  /* ✅ HIDE SWIPER PAGINATION (BLUE/GREY DOTS) */
  #shopify-section-template--25674006004010__home_banner_tjVFCy .swiper-pagination,
  #shopify-section-template--25674006004010__home_banner_tjVFCy .slick-dots,
  #shopify-section-template--25674006004010__home_banner_tjVFCy .dots-container {
    display: none !important;
  }

  /* Gallery slideshow dots — JO ACTUALLY DIKH RAHE HAIN */
  #shopify-section-template--25674006004010__gallery_slideshow_wLwBxY .swiper-pagination {
    display: none !important;
  }


  /* ✅ CENTER ALL CONTENT */
  #shopify-section-template--25674006004010__home_banner_tjVFCy .home-banner-content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #shopify-section-template--25674006004010__home_banner_tjVFCy .home-banner-content h1,
  #shopify-section-template--25674006004010__home_banner_tjVFCy .home-banner-content p {
    text-align: center !important;
    margin: 0 0 12px 0 !important;
  }

  /* ✅ BUTTONS: CENTERED IN ONE LINE */
  #shopify-section-template--25674006004010__home_banner_tjVFCy .home-banner-buttons {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 20px !important;
    width: 100% !important;
  }

  #shopify-section-template--25674006004010__home_banner_tjVFCy .home-banner-buttons a {
    padding: 10px 35px !important;
    margin: 0 !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  /* ✅ OVERLAY */
  #shopify-section-template--25674006004010__home_banner_tjVFCy .overlay {
    background-color: rgba(0, 0, 0, 0.4) !important;
  }

  /* ✅ SAFEGUARD: NO HORIZONTAL SCROLL */
  body {
    overflow-x: hidden !important;
  }
}



}
/* END_SECTION:home-banner */

/* START_SECTION:three-column-multi-row (INDEX:76, SCOPED:FALSE) */
.three-col-section {
  width: 100%;
  overflow: hidden; /* prevents mobile horizontal scroll issues */
}

.three-col-section .inner-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px; /* ✅ important for mobile */
  box-sizing: border-box;
}

.three-col-section .inner-content h2{
  font-family: 'Petit';
  font-size: 32px;
  color: #93714b;
}

.three-col-section .inner-content p{
  font-size: 18px;
  line-height: 1.6;
  margin-top: 30px;
  width: 100%;
}

.three-col-section .blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.three-col-section .block-item{
  text-align: center;
  width: 100%;
}

.three-col-section .block-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.three-col-section .block-item h4 {
  margin-top: 15px;
  font-weight: 400;
  font-family: 'Petit';
  font-size: 22px;
  color: #93714b;
  margin-bottom: 10px;
  text-align: left;
}

.three-col-section .block-item p{
  font-size: 18px;
  line-height: 1.6;
  margin-top: 0;
  text-align: left;
}

.three-col-section .buttons-wrap {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* ✅ better on small screens */
}

.three-col-section .buttons-wrap a {
  padding: 12px 50px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  font-family: 'Favorit';
  font-size: 17px;
  line-height: 1.6;
  color: #93714b;
  border: 2px solid #93714b;
  box-sizing: border-box;
  background-color: #f8f3e9; /* ✅ NEW: Match your section's background color */
}
}

@media(min-width: 980px) {
  .three-col-section .blocks-grid {
    gap: 50px 0px;
  }
  .three-col-section .block-item img {
    width: 105%;
  }
}

/* ✅ MOBILE OPTIMIZATION: Three Column Section */
@media (max-width: 768px) {

  /* Section padding & inner content */
  .three-col-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .three-col-section .inner-content {
    max-width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box;
  }

  /* Main section heading (What We Value Most) */
  .three-col-section .inner-content h2 {
    text-align: center !important;
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }

  /* Section main text */
  .three-col-section .inner-content .rte {
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  /* Blocks grid single column */
  .three-col-section .blocks-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-items: center !important;
  }

  /* Block items */
  .three-col-section .block-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
  }

  /* Block images full width */
  .three-col-section .block-item img {
    width: 92vw !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    object-fit: cover !important;
  }

  /* Block headings & subtext */
  .three-col-section .block-item h4 {
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .three-col-section .block-item .rte {
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  /* Buttons */
  .three-col-section .buttons-wrap {
    gap: 12px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .three-col-section .buttons-wrap a {
    padding: 10px 18px !important;
    font-size: 15px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 120px !important;
    box-sizing: border-box !important;
  }

}
/* ✅ MOBILE: Subtext center & spacing */
@media (max-width: 768px) {

  /* All block subtexts (p inside .block-item) */
  .three-col-section .block-item p {
    text-align: center !important;   /* center subtext */
    margin-bottom: 20px !important;  /* space after subtext */
  }

  /* Section main subtext (if inside .rte) */
  .three-col-section .inner-content .rte p {
    text-align: center !important;
    margin-bottom: 30px !important;  /* spacing below main subtext */
  }

}



@media(max-width: 900px) {
  .three-col-section .blocks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {

  .three-col-section .inner-content{
    max-width: 100%;
    padding: 0 16px; /* ✅ keep content visible */
  }

  .three-col-section .blocks-grid{
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .three-col-section .block-item{
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .three-col-section .block-item img{
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    position: static !important;   /* ✅ remove left/transform trick */
    transform: none !important;
  }

  .three-col-section .buttons-wrap {
    gap: 12px;
    justify-content: center;
  }

  .three-col-section .buttons-wrap a {
    padding: 10px 18px !important;
    font-size: 15px !important;
    white-space: nowrap !important;
    width: 45% !important;
  }
}

/* Animation */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ Mobile fallback: Show cards immediately if JS doesn't load */
@media (max-width: 768px) {
  .three-col-section .animate-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
  }
  
  /* Ensure section and grid are visible */
  .three-col-section,
  .three-col-section .blocks-grid {
    visibility: visible !important;
  }
  
  .three-col-section .blocks-grid {
    display: grid !important;
  }
}
/* END_SECTION:three-column-multi-row */

/* START_SECTION:two-column-images (INDEX:77, SCOPED:FALSE) */
.two-column-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  align-items: end;
}


.two-column-section .left-column {
  /* Keep your existing layout properties */
  flex: 1 1 50%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column; 
  justify-content: center; 
}

/* Ensure the paragraph block is still styled for readability */
.two-column-section .left-column p {
  /* This ensures the paragraph doesn't stretch 100% wide */
  width: 75%; 
}

.two-column-section .right-column {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.two-column-section .left-column h2{
    font-size: 36px;
    color: #93714b;
    font-weight: 600;
    margin-top: 0;
}

.two-column-section .left-column .left-text{
    font-size: 18px;
    line-height: 2;
    width:100%
}

.two-column-section .right-column {
  position: relative;
}

.two-column-section .right-column img.top-image {
  width: 90%;
  float: right;
  position: relative;
  /* border-radius: 10px; */
  height: 100%;
  object-fit: cover;
  box-shadow: 56px 51px 0px 0px rgba(146,113,80,1);
  -webkit-box-shadow: 56px 51px 0px 0px rgba(146,113,80,1);
  -moz-box-shadow: 56px 51px 0px 0px rgba(146,113,80,1);
}

.two-column-section .right-column img.bottom-image {
  width: 90%;
  float: left;
  position: relative;
  z-index: 1;
  /* border-radius: 10px; */
  margin-top: -100px;
  border: 5px solid #F7F0E6;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 0 5px;
}

@media screen and (max-width: 768px) {
  .two-column-section {
    flex-direction: column;
    justify-content:center;
    align-items:center;
  }
  .two-column-section .left-column .left-text{
    font-size: 18px;
    line-height: 2;
}
  .two-column-section .left-column p {
  /* This ensures the paragraph doesn't stretch 100% wide */
  width: 100%; 
}


  .two-column-section .right-column img.top-image,
  .two-column-section .right-column img.bottom-image {
    width: 85%;
    float: none;
    position: relative;
    top: 0;
    left: 0;
  }
}
/* END_SECTION:two-column-images */

/* START_SECTION:two-column (INDEX:78, SCOPED:FALSE) */
.two-col-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 3px;
}

.two-col-left,
.two-col-right {
  width: 50%;
  min-height: 400px;
  overflow: hidden;
}

.two-col-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-left h2{
    color: #fff;
    font-family: 'Petit';
    font-size: 24px;
    line-height: 1.6;
    width:70%;
    text-align: center;
}

.two-col-left p{
    color: #fff;
    line-height: 2;
    font-size: 18px;
    width: 90%;
}

.two-col-left .buttons{
    width: 200px;
    background: #fff;
    color: #000;
    font-family: "Favorit";
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 0px 10px rgb(0 0 0 / 20%);
    transition: 0.3s ease;
    text-align: center;
    padding: 12px 40px;
    text-decoration: none;
    line-height: 1.2;
}

.two-col-left .buttons:hover{
  background: #F7F0E6;
  color: #927150;
}

.two-col-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ Two Column Section Mobile Fix */
@media screen and (max-width: 768px) {
  
  /* Left column wrapper center content */
  .two-col-left .animate-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: left !important; /* center all content */
    text-align: center !important;
  }

  /* Heading */
  .two-col-left h2 {
    text-align: left !important;
    width: 90% !important; /* force line break */
    padding-left: 30px;
    margin: 10px 0 20px 0 !important; /* spacing */
    font-size: 24px !important;
    line-height: 1.3 !important;
  }

  /* Subtext / paragraph */
  .two-col-left p,
  .two-col-left .rte p {
    text-align: center !important;
    margin-bottom: 20px !important; /* spacing after each paragraph */
    width: 90% !important;
       margin-left: auto !important;
    margin-right: auto !important;
  }

  .two-col-left .buttons {
    margin: 0 auto !important;
    display: inline-block !important;
  
  }

  /* Button */
  .two-col-left .buttons {
    margin: 0 auto !important; /* center button */
    display: inline-block !important;
  }
}


/* Responsive */
@media screen and (max-width: 768px) {
  .two-col-section .two-col-left,
  .two-col-section .two-col-right {
    width: 100%;
    min-height: 100%!important;
    margin-bottom: -10px;
  }
    .two-col-left[style] {
    padding: 70px 20px 45px 20px !important;
  }
 .two-col-section .two-col-left{
  padding: 70px 20px 45px 20px !important; /* higher + trimmed bottom */
  align-items: center;
}

  .two-col-wrapper{
    flex-direction: column-reverse!important;
    gap: 0px;
  }
  .two-col-right img{
    height: 400px;
  }
  .two-col-left h2{
    font-size: 24px;
  }
  .two-col-left p{
    width: 100%;
  }
}

/* COMMON ANIMATION DEFAULT STATE */
.animate-left,
.animate-right {
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

/* LEFT COLUMN SLIDE FROM LEFT */
.animate-left {
  transform: translateX(-60px);
}

.animate-left.active {
  transform: translateX(0);
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Right Column Zoom-Out Animation */
.animate-right {
  opacity: 0;
  transform: scale(1.2);  /* Start with a larger size */
  transition: transform 1s ease-out, opacity 1s ease-out;
  object-fit: cover;
}

.animate-right.active {
  opacity: 1;
  transform: scale(1);  /* Zoom out to normal size */
}

/* Rest of your styles remain the same... */
/* END_SECTION:two-column */