/** Shopify CDN: Minification failed

Line 75:14 Expected identifier but found whitespace
Line 75:16 Unexpected "{"
Line 75:25 Expected ":"
Line 75:55 Expected ":"
Line 96:14 Expected identifier but found whitespace
Line 96:16 Unexpected "{"
Line 96:25 Expected ":"
Line 97:16 Expected identifier but found whitespace
Line 97:18 Unexpected "{"
Line 97:27 Expected ":"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
.mag-collection-card-wrapper {
    padding: 32px 0;
  }
  .mag-section-container {
    text-align: center;
  }
  .mag-section-heading {
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }
  .mag-grid {
    display: grid;
    /* UPDATED: Changed to 5 columns */
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 24px;
    /* FIXED: Increased max-width to allow 5 columns to show */
    max-width: 1700px;
    margin: 0 auto;
    justify-items: center; /* Center items in the grid cell */
  }
  .mag-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f6f7fa;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 34px 0 rgba(44,42,99,0.11);
    max-width: 320px;
    width: 100%;
    padding: 0;
    position: relative;
    transition: box-shadow 0.15s, transform 0.12s;
  }
  .mag-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 46px 0 rgba(34,19,74,0.22);
  }
  .mag-card-visual {
    width: 100%;
    /* UPDATED: Increased min-height for larger images */
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    padding: 20px; /* Added padding to contain the image */
    box-sizing: border-box;
  }
  .mag-image {
    /* UPDATED: Max-width is now controlled by a section setting */
    max-width: {{ section.settings.image_max_width }}px;
    width: 100%; /* Ensure image is responsive within its container */
    /* UPDATED: Height is now auto to maintain aspect ratio */
    height: auto;
    object-fit: contain;
    margin: 0 auto; /* Removed top/bottom margin, handled by container padding */
    display: block;
  }
  .mag-button {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 27px;
    transform: translateX(-50%);
    width: 70%;
    border: none;
    border-radius: 20px;
    padding: 13px 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.045em;
    font-size: {{ section.settings.button_font_size }};
    font-family: {{ section.settings.button_font_family }};
    color: #222;
    background: #fad8f4;
    cursor: pointer;
    box-shadow: 0 2px 12px #f9e3f4;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: background 0.18s, opacity 0.14s;
  }
  .mag-card-visual:hover .mag-button,
  .mag-card:hover .mag-button {
    display: block;
    opacity: 1;
    pointer-events: auto;
    color: #222;
  }
  .mag-card-details {
    background: #f6f7fa;
    width: 100%;
    border-radius: 0 0 22px 22px;
    padding: 12px 18px 15px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-sizing: border-box;
  }
  .mag-card-text {
    font-weight: 800;
    text-transform: none;
    word-break: break-word;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.17;
    text-align: center;
  }
  .mag-card-description {
    font-weight: 400;
    font-size: 0.9em;
    color: #333;
    word-break: break-word;
    letter-spacing: 0.01em;
    margin: 4px 0 0 0;
    line-height: 1.3;
    text-align: center;
  }
  .mag-view-all-wrapper {
    margin-top: 40px;
    text-align: center;
  }
  .mag-view-all-button {
    display: inline-block;
    border: none;
    border-radius: 20px;
    padding: 13px 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.045em;
    font-size: {{ section.settings.view_all_button_font_size }};
    font-family: {{ section.settings.view_all_button_font_family }};
    cursor: pointer;
    box-shadow: 0 2px 12px #f9e3f4;
    text-decoration: none;
    transition: background 0.18s, transform 0.12s;
  }
  .mag-view-all-button:hover {
    transform: translateY(-2px);
  }

  /* UPDATED: Added more responsive breakpoints for the 5-column grid */
  @media (max-width: 1400px) {
    .mag-grid { grid-template-columns: repeat(4, 1fr); }
  }
  @media (max-width: 1100px) {
    .mag-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 768px) {
    .mag-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  }
  @media (max-width: 600px) {
    .mag-grid { grid-template-columns: 1fr; gap: 12px;}
    .mag-card { max-width: 98vw; }
    .mag-card-details { padding: 10px 4vw 8px 4vw; }
  }
.dtc-section-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .dtc-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }

  .dtc-carousel__wrapper {
    position: relative;
    width: 100%;
    height: auto;
    /* === CHANGED === */
    /* Removed min-height and background-color */
    /* Added display: grid to stack slides */
    display: grid;
  }

  .dtc-carousel__slide {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
    /* === CHANGED === */
    /* Removed display: none and added grid-area */
    grid-area: 1 / 1; 
  }

  .dtc-carousel__slide.active {
    opacity: 1;
    pointer-events: auto;
    /* === CHANGED === */
    /* Removed display: block */
  }

  .dtc-carousel__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .dtc-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .dtc-carousel__nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }

  .dtc-carousel__nav:active {
    transform: translateY(-50%) scale(0.95);
  }

  .dtc-carousel__nav--prev {
    left: 24px;
  }

  .dtc-carousel__nav--next {
    right: 24px;
  }

  .dtc-carousel__nav svg {
    width: 28px;
    height: 28px;
  }

  .dtc-carousel__pagination {
    /* Kept display:none here to hide on desktop */
    display: none; 
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    z-index: 10;
    gap: 10px;
  }

  .dtc-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }

  .dtc-carousel__dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }

  .dtc-carousel__dot.active {
    background-color: #ff6b00;
    width: 28px;
    border-radius: 5px;
  }

  /* Tablet Styles */
  @media (max-width: 1024px) {
    .dtc-carousel__nav {
      width: 50px;
      height: 50px;
    }

    .dtc-carousel__nav--prev {
      left: 16px;
    }

    .dtc-carousel__nav--next {
      right: 16px;
    }
  }

  /* Mobile Styles */
  @media (max-width: 768px) {

    .dtc-carousel__nav {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.9);
    }

    .dtc-carousel__nav--prev {
      left: 12px;
    }

    .dtc-carousel__nav--next {
      right: 12px;
    }

    .dtc-carousel__nav svg {
      width: 24px;
      height: 24px;
    }

    .dtc-carousel__pagination {
      /* === CHANGED === */
      /* Added display properties to show dots on mobile */
      display: flex;
      justify-content: center;
      align-items: center;
      bottom: 16px;
      padding: 10px 16px;
      gap: 8px;
    }

    .dtc-carousel__dot {
      width: 8px;
      height: 8px;
    }

    .dtc-carousel__dot.active {
      width: 24px;
    }
  }

  /* Small Mobile */
  @media (max-width: 480px) {
    /* === CHANGED === */
    /* Removed the problematic .dtc-carousel__wrapper rule */
    /* that set height: 50vh */

    .dtc-carousel__nav {
      width: 40px;
      height: 40px;
    }

    .dtc-carousel__nav--prev {
      left: 8px;
    }

    .dtc-carousel__nav--next {
      right: 8px;
    }

    .dtc-carousel__nav svg {
      width: 20px;
      height: 20px;
    }
  }

  /* Loading state */
  .dtc-carousel__slide img {
    animation: fadeIn 0.5s ease-in;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
/* This new container class will center your image and limit its width */
  .dtc-section-container {
    max-width: 1200px; /* You can adjust this value to make the container wider or narrower */
    margin: 0 auto;    /* This centers the container horizontally */
    padding: 0 24px;   /* This adds some spacing on the sides, especially for mobile */
  }

  .dtc-custom-image {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .dtc-custom-image__wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Added a slight border-radius for a modern look */
  }

  .dtc-custom-image__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
.product-tab-section {
  padding: 60px 20px;
  max-width: 100%;
  overflow-x: hidden;
}
.product-tab-section-heading {
  font-weight: 800;
  text-align: center;
}
.tabs {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 38px;
  flex-wrap: wrap;
  padding: 0 10px;
}
.tablink {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.74;
  transition: opacity 0.2s;
  outline: none;
  min-width: 82px;
}
.tablink.active {
  opacity: 1;
}
.tab-circle {
  width: 79px;
  height: 79px;
  border-radius: 50%;
  background: #f6f7fa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.5px 7px rgba(84,54,99,0.06);
  margin-bottom: 8px;
}
.tab-circle img {
  display: block;
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
}
.tab-circle-placeholder {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #ececf0;
  display: block;
}
.tab-title {
  font-size: 1.12em;
  font-weight: 600;
  text-align: center;
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.tab-count {
  background: #fad8f4;
  color: #80245e;
  font-size: 0.92em;
  font-weight: bold;
  border-radius: 10px;
  margin-left: 5px;
  padding: 1px 7px 2px 7px;
}
.tab-contents {
  width: 100%;
}
.tab-pane {
  display: none;
  width: 100%;
}
.tab-pane.active {
  display: block;
}
.product-tab-row-center {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10px;
}
.product-tab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 320px));
  gap: 32px;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
}
.mag-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 6px 34px 0 rgba(44, 42, 99, 0.15);
  width: 100%;
  padding: 0;
  position: relative;
  transition: box-shadow 0.15s, transform 0.12s;
}
.mag-card-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}
.mag-card-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mag-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.mag-quickbuy-form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.mag-button {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 280px;
  border: none;
  border-radius: 20px;
  padding: 13px 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: clamp(0.9rem, 2vw, 1.11rem);
  font-family: Montserrat, Arial, sans-serif;
  color: #222;
  background: #fad8f4;
  cursor: pointer;
  box-shadow: 0 1.5px 9px #f9e3f4;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: background 0.18s, opacity 0.14s;
}
.mag-card-visual:hover .mag-button,
.mag-card:hover .mag-button {
  display: block;
  opacity: 1;
  pointer-events: auto;
  color: #222;
}
.mag-card-details {
  background: #ffffff;
  width: 100%;
  border-radius: 0 0 22px 22px;
  padding: 12px 18px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mag-card-text {
  margin: 0;
  line-height: 1.17;
  text-align: center;
  word-break: break-word;
}
.mag-title-main {
  display: block;
  font-weight: 900;
  font-size: inherit;
  font-family: inherit;
}
.mag-title-sub {
  display: block;
  font-weight: 400;
  color: #222;
  font-family: inherit;
  font-size: 95%;
  margin-top: 2px;
}

/* Tablet */
@media (max-width: 1100px) {
  .product-tab-grid { 
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .product-tab-section {
    padding: 40px 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-tab-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }
  .tabs { 
    gap: 14px; 
  }
  .tab-circle { 
    width: 58px; 
    height: 58px; 
  }
  .tab-circle img { 
    width: 50px; 
    height: 50px; 
  }
  .mag-card-details { 
    padding: 10px 12px 8px 12px; 
  }
  .product-tab-section {
    padding: 30px 10px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-tab-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .mag-card {
    max-width: 100%;
  }
  .mag-button {
    font-size: 0.95rem;
    padding: 11px 16px;
  }
}