/** Shopify CDN: Minification failed

Line 20:21 Expected identifier but found whitespace
Line 20:23 Unexpected "{"
Line 20:32 Expected ":"
Line 21:4 Unexpected "{"
Line 21:5 Expected identifier but found "%"
Line 25:4 Unexpected "{"
Line 25:5 Expected identifier but found "%"
Line 94:12 Expected identifier but found whitespace
Line 94:14 Expected identifier but found "%"
Line 94:60 Expected identifier but found "%"
... and 1 more hidden warnings

**/


/* CSS from section stylesheet tags */
.shop-by-categories {
    background-color: {{ section.settings.background_color }};
    {% if section.settings.background_image %}
      background-image: url('{{ section.settings.background_image | image_url: width: 1500 }}');
      background-size: cover;
      background-position: center;
    {% endif %}
    padding: var(--section-padding-top) var(--section-padding-right) var(--section-padding-bottom) var(--section-padding-left);
    margin-top: 10px;
    font-family: var(--font-family-section);
  }

  .shop-by-categories-content {
    padding: var(--content-padding);
    max-width: 1200px;
    margin: 0 auto;
  }

  .shop-by-categories h2 {
    font-family: 'Cinzel', serif;
    font-size: var(--heading-font-size);
    font-weight: var(--heading-font-weight);
    text-transform: var(--heading-text-transform);
    text-align: var(--heading-text-align);
    letter-spacing: var(--heading-letter-spacing);
    margin: 0 auto 30px;
    color: var(--heading-text-color);
  }

  .shop-categories-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .shop-category-card {
    flex: 0 0 var(--desktop-card-width);
    max-width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card-bg-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-align: left;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
  }

  .shop-category-card:hover {
    transform: translateY(-6px);
  }

  .shop-category-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
  }

  .shop-category-card-title {
    background-color: var(--card-title-bg-color);
    color: var(--card-title-text-color);
    font-size: var(--card-title-font-size);
    font-weight: 600;
    padding: 10px;
    position: relative;
    text-align: var(--card-text-align);
  }

  .shop-category-card-title::after {
    content: '➔';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: {% if section.settings.card_text_center %}none{% else %}block{% endif %};
  }

  .shop-category-card-title.center-aligned {
    text-align: center;
  }

  .shop-category-card-title.center-aligned::after {
    display: none;
  }

  .shop-category-card a {
    text-decoration: none;
    display: block;
  }

  .view-all-button {
    margin-top: 30px;
    text-align: var(--heading-text-align);
  }

  .view-all-button a {
    display: inline-block;
    background: var(--button-bg-color);
    color: var(--button-text-color);
    padding: var(--button-vertical-padding) var(--button-horizontal-padding);
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .view-all-button a:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.3);
  }

  @media (max-width: 768px) {
    .shop-categories-slider {
      display: grid;
      gap: 10px;
      padding: 10px 0;
      justify-content: center;
    }
    .shop-category-card {
      width: 100%;
      flex-basis: auto;
    }
    .shop-by-categories h2 {
      font-size: calc(var(--heading-font-size) * 0.75);
      margin-bottom: 20px;
    }
    .shop-category-card-title {
      font-size: calc(var(--card-title-font-size) * 0.9);
      padding: 8px;
    }
    .shop-category-card-title::after {
      display: none;
    }
  }
.featured-collection-item p { margin-bottom: 2px; }
  .gift_items_quantity { margin-top: 2px; }
.footer_logo {
  padding: 20px 0;
}

.footer_logo .logos_shift {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer_logo h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px;
}

.footer_logo .logogosarea {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_logo .logogosarea img {
  height: 50px;
  width: auto;
  object-fit: contain;
  background-color: white;
  padding: 5px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.footer_logo .logogosarea img:hover {
  transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer_logo .logos_shift {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer_logo .firstpart, 
  .footer_logo .logoclicklast {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .footer_logo {
    padding: 20px 15px;
  }

  .footer_logo .logos_shift {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* Licence section layout */
  .footer_logo .firstpart .logoclick {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  /* Reduce licence image size */
  .footer_logo .firstpart .logoclick img {
    max-height: 40px;
    max-width: 80px;
    object-fit: contain;
  }

  /* Make licence number text smaller */
  .footer_logo .firstpart h2 {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    margin: 0;
  }

  /* Heading on right side smaller */
  .footer_logo .logoclicklast h2 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  /* Logos area adjustments */
  .footer_logo .logogosarea {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .footer_logo .logogosarea img {
    height: 40px;
    max-width: 70px;
    padding: 3px;
  }
}