/** Shopify CDN: Minification failed

Line 521:8 Expected identifier but found whitespace
Line 521:10 Unexpected "{"
Line 521:19 Expected ":"
Line 584:13 Expected identifier but found whitespace
Line 584:15 Unexpected "{"
Line 584:24 Expected ":"
Line 589:8 Expected identifier but found whitespace
Line 589:10 Unexpected "{"
Line 589:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:agt-banner-below-icons (INDEX:1) */
.features-container {
    padding: 60px 0;
    text-align: center;
  }

  .features-main-heading {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 600;
  }

  .features-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    /* max-width: 1200px; */
  }

  .features-grid {
    text-align: center;
  }

  .features-grid .features-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .feature-item {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    margin-bottom: 15px;
  }

  .feature-heading {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .feature-text {
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
  }

  @media screen and (max-width: 990px) {
    .features-flex .features-wrapper {
      /* flex-direction: column; */
      /* align-items: center; */
    }

    .features-grid .features-wrapper {
      grid-template-columns: 1fr;
    }

    .feature-item {
      width: 100%;
      max-width: 400px;
    }
  }

  @media screen and (min-width: 750px) and (max-width: 990px) {
    .features-grid .features-wrapper {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media screen and (min-width: 991px) {
    .features-flex .feature-item {
      flex: 1 1 0;
    }

    .features-grid .features-wrapper {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  @media(max-width:576px){
    .features-main-heading {
      font-size: 18px;
  }

  .feature-icon {
      width: 26px;
      height: 26px;
      margin-bottom: 25px;
  }

  .feature-heading {
      font-size: 12px;
  }
  .features-wrapper{ 
    gap: 0; 
  }
  .feature-item{
    max-width: 300px;
    min-width: 200px;
    padding: 10px;

  }
  }
  @media (max-width:400px){
     .feature-item{
    max-width: 300px;
    min-width: 150px;
    padding: 10px;

  }
  }
/* END_SECTION:agt-banner-below-icons */

/* START_SECTION:about-template-v2 (INDEX:14) */
/* Mobile pagination dots styling for teams slider */
@media (max-width: 768px) {
  .slick_teams .slick-dots {
    bottom: -10px;
    text-align: center;
  }
 
      .slick_teams ul.slick-dots li button:before {
        background: #000;
        border: 1px solid #110b04;
    }
  
  .slick_teams ul.slick-dots li.slick-active button {
     
    border: 2px solid #c17523;
}
  
  .slick_teams .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
  
  .slick_teams .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #c17523;
    text-indent: -9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .slick_teams .slick-dots li.slick-active button {
    background-color: #c17523;
  }
  
  .slick_teams .slick-dots li button:hover {
    background-color: #666;
  }
  
  /* Add spacing after slider to accommodate dots */
  .teams {
    padding-bottom: 60px;
  }
}
/* END_SECTION:about-template-v2 */

/* START_SECTION:agt-cta-with-para-btn (INDEX:22) */
/* =========================================================
   CTA SECTION — Scoped Styles
   ========================================================= */

/* ---------- CSS Custom Properties (defaults) ---------- */
.cta-section {
  --cta-pt: 80px;
  --cta-pb: 80px;
  --cta-bg: #fff;
  --cta-heading-color: #ffffff;
  --cta-subtext-color: rgba(255,255,255,0.72);
  --cta-overlay: 0.45;

  --cta-max-width: 760px;
  --cta-gap: 1.5rem;

  /* Button tokens */
  --btn-primary-bg: #ffffff;
  --btn-primary-color: #0f1117;
  --btn-primary-border: #ffffff;

  --btn-secondary-bg: transparent;
  --btn-secondary-color: #404040;
  --btn-secondary-border: 2px solid #404040;

  --btn-radius: 6px;
  --btn-font-size: 0.9375rem;
  --btn-font-weight: 600;
  --btn-padding: 0.85em 1.75em;
  --btn-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --heading-size-xl: clamp(2.1rem, 4vw + 0.5rem, 3.4rem);
  --heading-size-center: clamp(1.9rem, 3.5vw + 0.4rem, 2rem);
  --subtext-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  --heading-lh: 1.18;
  --heading-ls: -0.03em;
}

/* ---------- Section wrapper ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--cta-bg);
  padding-top: var(--cta-pt);
  padding-bottom: var(--cta-pb);
}

/* ---------- Background image ---------- */
.cta-section__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--cta-overlay));
}

/* ---------- Inner / page-width ---------- */
.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ---------- Content wrapper ---------- */
.cta-section__content {
  display: flex;
  flex-direction: column;
  gap: var(--cta-gap);
}

/* ---- Layout: centered (default) ---- */
.cta-section--layout-center .cta-section__content {
  align-items: center;
  text-align: center;
  max-width: var(--cta-max-width);
  margin-inline: auto;
}

/* ---- Layout: left-aligned ---- */
.cta-section--layout-left .cta-section__content {
  align-items: flex-start;
  text-align: left;
  max-width: var(--cta-max-width);
}

/* ---- Layout: split (text left, buttons right) ---- */
.cta-section--layout-split .cta-section__content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 100%;
}

.cta-section--layout-split .cta-section__heading,
.cta-section--layout-split .cta-section__subtext {
  flex: 1 1 320px;
}

.cta-section--layout-split .cta-section__buttons {
  flex-shrink: 0;
}

/* ---------- Text alignment overrides ---------- */
.cta-section--align-left  .cta-section__content { text-align: left;   align-items: flex-start; }
.cta-section--align-right .cta-section__content { text-align: right;  align-items: flex-end;   }
.cta-section--align-center .cta-section__content { text-align: center; align-items: center;     }

/* ---------- Heading ---------- */
.cta-section__heading {
  font-family: var(--font-heading-family, serif);
  font-size: var(--heading-size-center);
  font-weight: 700;
  line-height: var(--heading-lh);
  letter-spacing: var(--heading-ls);
  color: var(--cta-heading-color);
  margin: 0;
}

.cta-section--layout-left .cta-section__heading {
  font-size: var(--heading-size-xl);
}

/* ---------- Subtext ---------- */
.cta-section__subtext {
  font-size: var(--subtext-size);
  line-height: 1.65;
  color: var(--cta-subtext-color);
  max-width: 62ch;
}

.cta-section__subtext p {
  margin: 0;
}

/* ---------- Buttons wrapper ---------- */
.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.cta-section--align-center .cta-section__buttons { justify-content: center; }
.cta-section--align-right  .cta-section__buttons { justify-content: flex-end; }
.cta-section--align-left   .cta-section__buttons { justify-content: flex-start; }

/* ---------- Base button ---------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: var(--btn-padding);
  border-radius: var(--btn-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  transition:
    background var(--btn-transition),
    color var(--btn-transition),
    border-color var(--btn-transition),
    transform var(--btn-transition),
    box-shadow var(--btn-transition);
  -webkit-font-smoothing: antialiased;
}

.cta-btn:focus-visible {
  outline: 3px solid var(--btn-primary-bg);
  outline-offset: 3px;
}

.cta-btn__icon {
  flex-shrink: 0;
  transition: transform var(--btn-transition);
}

.cta-btn:hover .cta-btn__icon {
  transform: translateX(4px);
}

/* ---- Primary button ---- */
.cta-btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-color);
  border-color: var(--btn-primary-border);
}

.cta-btn--primary:hover {
  background: rgba(255,255,255,0.88);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.cta-btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---- Secondary button (ghost/outline) ---- */
.cta-btn--secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-color);
  border-color: var(--btn-secondary-border);
}

.cta-btn--secondary:hover {
    background: rgb(159 134 106);
    border-color: rgb(159 134 106);
    transform: translateY(-2px);
    color: #fff;
}

.cta-btn--secondary:active {
  transform: translateY(0);
}

/* ---- Solid-accent button (alternative style) ---- */
.cta-btn--accent {
  background:#a17453;
  color: #ffffff;
  border-color: #a17453;
}

.cta-btn--accent:hover {
    border-color: transparent;
    transform: translateY(-2px);
    color: #fff;
    background: #404040;
    box-shadow: unset;
    border: 2px solid #404040;
}

/* ---------- Entrance animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  .cta-section--animate .cta-section__heading,
  .cta-section--animate .cta-section__subtext,
  .cta-section--animate .cta-section__buttons {
    opacity: 0;
    transform: translateY(24px);
    animation: ctaFadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  .cta-section--animate .cta-section__heading  { animation-delay: 0.05s; }
  .cta-section--animate .cta-section__subtext  { animation-delay: 0.18s; }
  .cta-section--animate .cta-section__buttons  { animation-delay: 0.32s; }
}

@keyframes ctaFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */

/* Tablet */
@media screen and (max-width: 989px) {
  .cta-section {
    --cta-pt: 64px;
    --cta-pb: 64px;
  }

  .cta-section--layout-split .cta-section__content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .cta-section--layout-split .cta-section__buttons {
    align-self: flex-start;
  }
}

/* Mobile */
@media screen and (max-width: 640px) {
  .cta-section {
    --cta-pt: 48px;
    --cta-pb: 48px;
    --cta-gap: 1.25rem;
    --btn-padding: 0.85em 1.35em;
    --btn-font-size: 0.875rem;
  }

  .cta-section__buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    justify-content: center;
    width: 100%;
  }

  .cta-section--align-center .cta-section__buttons,
  .cta-section--align-right  .cta-section__buttons,
  .cta-section--align-left   .cta-section__buttons {
    align-items: stretch;
  }
}
/* END_SECTION:agt-cta-with-para-btn */

/* START_SECTION:agt-shop-by-category (INDEX:52) */
.category-slider-section {
  padding: 40px 0;
}

.section-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: {{ section.settings.title_color }};
}

.category-swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-media-container {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 15px;
  position: relative;
}

.category-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zoom-effect:hover .category-image {
  transform: scale(1.1);
}

.category-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.category-media:hover .category-video {
  opacity: 1;
}

.category-media:hover .category-image {
  opacity: 0;
}

.category-title {
  text-align: {{ section.settings.text_alignment }};
  margin-top: 8px;
}

.category-title a {
  color: {{ section.settings.category_title_color }};
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.category-title a:hover {
  opacity: 0.7;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #000;
}

@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }
  
  .category-title a {
    font-size: 12px;
  }
}
/* END_SECTION:agt-shop-by-category */