/** Shopify CDN: Minification failed

Line 74:12 Expected identifier but found whitespace
Line 74:14 Unexpected "{"
Line 74:23 Expected ":"
Line 74:58 Unexpected "20px"
Line 74:64 Unexpected "{"
Line 74:73 Expected ":"
Line 74:110 Expected ":"

**/


/* CSS from section stylesheet tags */
.image-card-section {
    padding: 2rem 2rem;
  }
  .image-card-section h2 {
    margin-bottom: 1.5rem;
    font-size: 28px;
    text-align: left;
    font-weight:bold;
  }
  .image-card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .image-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    flex: 1 1 calc(33.333% - 1rem);
    transition: transform 0.3s ease;
    border-radius: 20px;
  }
  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  .image-card:hover img {
    transform: scale(1.05);
  }
  .card-overlay {
    position: absolute;
    bottom: 5rem;
    left: 3rem;
    color: #fff;
    z-index: 2;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }
  .card-overlay h3 {
    margin: 0;
    font-size: 2.2rem;
    color: #ffffff;
  }
  .card-overlay p {
    margin: 0.25rem 0 0;
    font-size: 1.4rem;
  }
  @media (max-width: 768px) {
    .image-card {
      flex: 1 1 100%;
    }
  }
.product-radar-section {
    padding: {{ section.settings.section_padding_top }}px 20px {{ section.settings.section_padding_bottom }}px;
  }

  .product-radar-section .container {
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .product-radar-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }

  .product-radar-section .section-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
  }

  .product-radar-section .view-all-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #48122A;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
  }

  .product-radar-section .view-all-link svg {
    margin-left: 4px;
    transition: transform 0.3s ease;
  }

  .product-radar-section .view-all-link:hover {
    color: #000;
    border-bottom-color: #000;
  }

  .product-radar-section .view-all-link:hover svg {
    transform: translateX(3px);
  }

  .category-tabs {
    margin-bottom: 25px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 5px 0;
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .tabs-container {
    display: flex;
    gap: 12px;
    min-width: min-content;
  }

  .tab-button {
    padding: 12px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: max-content;
    white-space: nowrap;
    position: relative;
    overflow: visible;
    font-family: 'Albert Sans';
  }

  .tab-button:hover {
    border-color: #48122A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .tab-button.active {
    background-color: #48122A;
    color: #fff;
    border-color: #48122A;
  }

  .products-grid {
    position: relative;
  }

  .product-category-group {
    display: none !important;
    gap: 15px;
  }

  .product-category-group.active {
    display: grid !important;
  }

  /* Grid layouts */
  .grid-2 .product-category-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 .product-category-group {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 .product-category-group {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-5 .product-category-group {
    grid-template-columns: repeat(5, 1fr);
  }

  .product-card {
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    padding: 12px;
    background: #fff;
  }

  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #48122A;
  }

  .product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .product-image-container {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f8f8f8;
  }

  .product-image,
  .product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
  }

  .product-image-hover {
    opacity: 0;
  }

  .product-card:hover .product-image {
    transform: scale(1.05);
  }

  .product-card:hover .product-image-hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .wishlist-button {
    display: none;
  }

  .product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 5px;
  }

  .product-title {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    color: #1a1a1a;
  }

  .product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
  }

  .sale-price {
    color: #48122A;
    font-size: 16px;
    font-weight: bold;
  }

  .regular-price {
    color: #48122A;
    font-size: 16px;
  }

  .sale-badge {
    background: #D4AF37;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 5px;
    font-weight: 600;
  }

  .product-actions {
    margin-top: auto;
  }

  /* FIXED: Dawn theme compatible button styles */
  .product-form--radar .product-form__buttons {
    margin: 0;
  }

  .product-form--radar .add-to-cart-button,
  .product-form--radar .product-form__submit {
    font-family: 'Albert Sans';
    width: 100%;
    padding: 12px;
    background-color: #48122A;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
  }

  .product-form--radar .add-to-cart-button:hover:not(:disabled),
  .product-form--radar .product-form__submit:hover:not(:disabled) {
    background-color: #000;
    transform: translateY(-1px);
  }

  .product-form--radar .add-to-cart-button:disabled,
  .product-form--radar .product-form__submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
  }

  .add-to-cart-button.sold-out {
    background-color: #ccc;
    cursor: not-allowed;
  }

  .no-products-message,
  .no-categories-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #767676;
    font-size: 16px;
  }

  /* Responsive Styles */
  @media screen and (max-width: 1024px) {
    .grid-5 .product-category-group {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media screen and (max-width: 768px) {

    .grid-4 .product-category-group,
    .grid-5 .product-category-group {
      grid-template-columns: repeat(3, 1fr);
    }

    .product-radar-section .section-header {
      align-items: flex-start;
      gap: 10px;
    }

    .product-radar-section .view-all-link {
      align-self: flex-end;
    }

    .product-radar-section .section-title {
      font-size: 24px;
    }
  }

  @media screen and (max-width: 600px) {
    .grid-3 .product-category-group,
    .grid-4 .product-category-group,
    .grid-5 .product-category-group {
      grid-template-columns: repeat(2, 1fr);
    }

    .tab-button {
      padding: 10px 16px;
      font-size: 13px;
    }

    .product-title {
      font-size: 14px;
    }

    .product-form--radar .add-to-cart-button,
    .product-form--radar .product-form__submit {
      padding: 10px;
      font-size: 13px;
    }
  }

  @media screen and (max-width: 400px) {
    .grid-2 .product-category-group {
      grid-template-columns: 1fr;
    }

    .product-radar-section .section-title {
      font-size: 20px;
    }
  }