/** Shopify CDN: Minification failed

Line 3034:2 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.page-404 {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background-color: #ffffff;
  }

  .page-404__container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .page-404__content {
    text-align: center;
  }

  .page-404__title {
    font-size: 120px;
    font-weight: 700;
    color: #1E4C96;
    margin: 0 0 20px;
    line-height: 1;
    letter-spacing: -2px;
  }

  .page-404__subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #111111;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .page-404__message {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-404__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .page-404__button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
  }

  .page-404__button--primary {
    background-color: #1E4C96;
    color: #ffffff;
    border-color: #1E4C96;
  }

  .page-404__button--primary:hover {
    background-color: #163a73;
    border-color: #163a73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 76, 150, 0.3);
  }

  .page-404__button--secondary {
    background-color: transparent;
    color: #1E4C96;
    border-color: #1E4C96;
  }

  .page-404__button--secondary:hover {
    background-color: #1E4C96;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 76, 150, 0.2);
  }

  .page-404__search {
    max-width: 600px;
    margin: 0 auto;
  }

  .page-404__search-wrapper {
    position: relative;
  }

  .page-404__search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: #999;
    pointer-events: none;
  }

  .page-404__search-input {
    width: 100%;
    height: 56px;
    padding: 0 60px 0 56px;
    border: 2px solid #e0e0e0;
    border-radius: 28px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: #fafafa;
  }

  .page-404__search-input:focus {
    border-color: #1E4C96;
    background: #fff;
    box-shadow: 0 4px 16px rgba(30, 76, 150, 0.1);
  }

  .page-404__search-input::placeholder {
    color: #999999;
  }

  /* Style native browser clear button */
  .page-404__search-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    cursor: pointer;
  }

  .page-404__search-input::-webkit-search-cancel-button:hover {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
  }

  @media (max-width: 768px) {
    .page-404 {
      padding: 35px 20px;
    }

    .page-404__title {
      font-size: 90px;
    }

    .page-404__subtitle {
      font-size: 26px;
      margin-bottom: 14px;
    }

    .page-404__message {
      font-size: 15px;
      margin-bottom: 35px;
    }

    .page-404__actions {
      margin-bottom: 35px;
    }

    .page-404__button {
      padding: 13px 28px;
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .page-404 {
      padding: 30px 16px;
    }

    .page-404__title {
      font-size: 70px;
      margin-bottom: 16px;
    }

    .page-404__subtitle {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .page-404__message {
      font-size: 14px;
      margin-bottom: 30px;
    }

    .page-404__actions {
      flex-direction: column;
      gap: 12px;
      margin-bottom: 30px;
    }

    .page-404__button {
      width: 100%;
      padding: 12px 24px;
      font-size: 12.5px;
    }

    .page-404__search-input {
      height: 50px;
      padding: 0 50px 0 48px;
      font-size: 15px;
    }

    .page-404__search-icon {
      left: 16px;
      width: 20px;
      height: 20px;
    }
  }

  @media (max-width: 375px) {
    .page-404__title {
      font-size: 60px;
    }

    .page-404__subtitle {
      font-size: 20px;
    }

    .page-404__message {
      font-size: 13px;
    }
  }
.announcement-bar {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 100;
  }

  .announcement-bar__content {
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
  }

  .announcement-bar__text {
    display: inline-block;
  }

  .announcement-bar__link {
    color: var(--color-bg-white);
    text-decoration: underline;
    margin-left: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s ease;
  }

  .announcement-bar__link:hover {
    opacity: 0.85;
  }

  .announcement-bar__timer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
  }

  .timer-part {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .timer-value {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }

  .timer-label {
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
  }

  .timer-separator {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.7;
    padding: 0 2px;
  }

  .timer-expired {
    font-weight: 600;
    font-size: 14px;
    opacity: 0.8;
  }

  @media (max-width: 768px) {
    .announcement-bar {
      padding: 10px 16px;
      font-size: 12px;
      font-weight: 500;
      z-index: 100;
    }

    .announcement-bar__text {
      font-size: 12px;
      display: block;
      line-height: 1.4;
    }

    .announcement-bar__timer {
      margin-left: 0;
      margin-top: 8px;
      gap: 4px;
      padding: 4px 10px;
    }

    .timer-value {
      font-size: 14px;
    }

    .timer-label {
      font-size: 8px;
    }

    .timer-separator {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .announcement-bar {
      padding: 10px 12px;
      font-size: 11px;
    }

    .announcement-bar__text {
      font-size: 11px;
      letter-spacing: 0.3px;
      line-height: 1.5;
    }
    
    .announcement-bar__link {
      margin-left: 4px;
      display: inline;
    }

    .announcement-bar__timer {
      display: flex;
      justify-content: center;
      width: 100%;
    }
  }
.cart-page {
    padding: 60px 0;
    background-color: #f9f9f9;
    min-height: 60dvh;
  }

  .cart-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
  }

  .cart-page__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: 20px;
    border-bottom: 2px solid var(--color-border);
  }

  .cart-page__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
  }

  .cart-page__count {
    font-size: 16px;
    color: var(--color-text-secondary);
  }

  .cart-page__content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-md);
    align-items: start;
  }

  .cart-page__items {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-light);
  }

  /* Cart Item */
  .cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 120px 120px;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-item:first-child {
    padding-top: 0;
  }

  .cart-item:last-child {
    border-bottom: none;
  }

  .cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-item__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    font-size: 12px;
    color: #666;
    text-align: center;
    padding: 10px;
  }

  .cart-item__details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .cart-item__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
  }

  .cart-item__title a {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color var(--transition-base);
  }

  .cart-item__title a:hover {
    color: var(--color-primary);
  }

  .cart-item__variant {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0 0 8px;
  }

  .cart-item__property {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 4px 0;
  }

  .cart-item__property-label {
    font-weight: 600;
  }

  .cart-item__price-mobile {
    display: none;
  }

  .cart-item__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
  }

  /* Quantity Controls */
  .cart-item__quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
  }

  .cart-item__quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    cursor: pointer;
    transition: background var(--transition-base);
  }

  .cart-item__quantity-btn:hover {
    background: #f5f5f5;
  }

  .cart-item__quantity-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-size: 14px;
    font-weight: 600;
  }

  .cart-item__quantity-input::-webkit-inner-spin-button,
  .cart-item__quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .cart-item__remove {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all var(--transition-base);
  }

  .cart-item__remove:hover {
    background: #fee;
    color: #d00;
  }

  /* Price Columns */
  .cart-item__price-desktop,
  .cart-item__total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }

  .cart-item__price-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .cart-item__price,
  .cart-item__total-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .cart-item__price--sale,
  .cart-item__total-price--sale {
    font-size: 18px;
    font-weight: 700;
    color: #d00;
  }

  .cart-item__price--original,
  .cart-item__total-price--original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-top: 4px;
  }

  .cart-item__total-label {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  /* Cart Summary */
  .cart-page__summary {
    position: sticky;
    top: 20px;
  }

  .cart-summary {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-light);
  }

  .cart-summary__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .cart-summary__line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 16px;
  }

  .cart-summary__label {
    color: var(--color-text-secondary);
  }

  .cart-summary__value {
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .cart-summary__discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    padding: 12px;
    background: #f0f8ff;
    border-radius: 8px;
    font-size: 14px;
  }

  .cart-summary__discount-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
  }

  .cart-summary__discount-value {
    color: #0a0;
    font-weight: 700;
  }

  .cart-summary__note {
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid var(--color-border);
  }

  .cart-summary__note p {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin: 0;
  }

  .cart-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 24px 0;
    padding: 20px 0;
    border-top: 2px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
  }

  .cart-summary__total-label {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .cart-summary__total-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
  }

  .cart-summary__checkout {
    width: 100%;
    padding: 18px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-bottom: 12px;
  }

  .cart-summary__checkout:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }

  .cart-summary__continue {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    transition: all var(--transition-base);
  }

  .cart-summary__continue:hover {
    background: var(--color-primary);
    color: white;
  }

  .cart-summary__trust {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }

  .cart-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 13px;
    color: var(--color-text-secondary);
  }

  .cart-trust-badge svg {
    color: var(--color-primary);
  }

  /* Empty Cart */
  .cart-page__empty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
    min-height: 70dvh;
  }

  .cart-empty {
    text-align: center;
    max-width: 600px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  .cart-empty__icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 32px;
  }

  .cart-empty__icon-wrapper svg {
    color: var(--color-primary);
    opacity: 0.3;
  }

  .cart-empty__title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
  }

  .cart-empty__subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 16px;
  }

  .cart-empty__message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0 0 40px;
  }

  .cart-empty__features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }

  .cart-empty__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
  }

  .cart-empty__feature svg {
    color: var(--color-primary);
  }

  .cart-empty__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    margin: 0 8px 16px;
    min-width: 240px;
  }

  .cart-empty__button--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(30, 76, 150, 0.3);
  }

  .cart-empty__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 76, 150, 0.4);
  }

  .cart-empty__button--secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
  }

  .cart-empty__button--secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .cart-page__content {
      grid-template-columns: 1fr;
    }

    .cart-page__summary {
      position: static;
    }
  }

  @media (max-width: 768px) {
    .cart-page {
      padding: 40px 0;
    }

    .cart-page__title {
      font-size: 24px;
    }

    .cart-page__items {
      padding: 20px;
    }

    .cart-item {
      grid-template-columns: 80px 1fr;
      gap: 16px;
    }

    .cart-item__image {
      width: 80px;
      height: 80px;
    }

    .cart-item__price-desktop,
    .cart-item__total {
      display: none;
    }

    .cart-item__price-mobile {
      display: block;
      margin-top: 8px;
    }

    .cart-item__title {
      font-size: 16px;
    }

    .cart-item__actions {
      flex-wrap: wrap;
    }

    .cart-summary {
      padding: 24px;
    }

    .cart-summary__title {
      font-size: 20px;
    }
  }

  @media (max-width: 480px) {
    .cart-page__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .cart-item__actions {
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }

    .cart-item__quantity {
      width: 100%;
      justify-content: space-between;
    }

    .cart-item__quantity-input {
      flex: 1;
    }

    .cart-item__remove {
      width: 100%;
      justify-content: center;
    }
  }
.category-cards {
    background-color: #ffffff;
    padding: 60px 40px;
    width: 100%;
  }

  .category-cards__grid {
    display: grid;
    grid-template-columns: repeat(var(--category-cards-cols, 4), 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .category-cards__card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 100%;
  }

  .category-cards__card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
  }

  .category-cards__card:hover {
    transform: translateY(-5px);
  }

  .category-cards__image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 15px;
    position: relative;
  }

  .category-cards__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .category-cards__image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
  }

  .category-cards__placeholder-text {
    font-size: 14px;
    color: #999999;
    text-align: center;
    padding: 20px;
  }

  .category-cards__empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999999;
    width: 100%;
  }

  .category-cards__link {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .category-cards__link:hover {
    color: #1E4C96;
  }

  @media (max-width: 1400px) {
    .category-cards {
      padding: 50px 30px;
    }
    .category-cards__grid {
      gap: 22px;
    }
  }

  @media (max-width: 1200px) {
    .category-cards__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .category-cards {
      padding: 40px 20px;
    }
    .category-cards__grid {
      gap: 18px;
    }
    .category-cards__link {
      font-size: 15px;
    }
  }

  @media (max-width: 600px) {
    .category-cards__grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    .category-cards__link {
      font-size: 14px;
    }
  }
.collection-page {
    padding: 40px 0 80px;
    background-color: #f9f9f9;
    min-height: 70dvh;
  }

  .collection-page__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
  }

  /* Header */
  .collection-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: 24px;
    border-bottom: 2px solid var(--color-border);
  }

  .collection-header__title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0 0 12px;
    letter-spacing: -1px;
  }

  .collection-header__image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .collection-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .collection-header__description {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin: 0 0 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .collection-header__count {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 600;
    margin: 0;
  }

  /* Layout */
  .collection-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-md);
    align-items: start;
  }

  /* Filters Sidebar */
  .collection-filters {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 20px;
  }

  .collection-filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-border);
  }

  .collection-filters__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
  }

  .collection-filters__clear {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition-base);
    text-decoration: none;
  }

  .collection-filters__clear:hover {
    background: var(--color-accent-light);
  }

  .facets-form {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .filter-group {
    margin-bottom: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
  }

  .filter-group:last-of-type {
    border-bottom: none;
  }

  .filter-group summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    padding: 4px 0;
  }

  .filter-group summary::-webkit-details-marker {
    display: none;
  }

  .filter-group__title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .filter-group__title svg {
    transition: transform 0.2s ease;
  }

  .filter-group[open] .filter-group__title svg {
    transform: rotate(180deg);
  }

  .filter-group__content {
    padding-top: 12px;
  }

  .filter-group__clear {
    background: none;
    border: none;
    color: #666;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-bottom: 8px;
    display: block;
  }

  .filter-group__clear:hover {
    color: #000;
  }

  .filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .filter-list__item {
    margin: 0;
  }

  .filter-list__item--hidden {
    display: none;
  }

  .filter-list--expanded .filter-list__item--hidden {
    display: block;
  }

  .filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-primary);
    transition: var(--transition-base);
  }

  .filter-checkbox:hover {
    color: var(--color-primary);
  }

  .filter-input {
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
  }

  .filter-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .filter-count {
    color: var(--color-text-secondary);
    font-size: 13px;
    margin-left: 4px;
  }

  /* Price Range Filter */
  .filter-price-range {
    padding: 8px 0;
  }

  .price-slider-container {
    position: relative;
    height: 50px;
    margin-bottom: 20px;
    padding: 0 2px;
  }

  .price-slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
  }

  .price-slider-range {
    position: absolute;
    height: 100%;
    background: var(--color-primary, #1E4C96);
    border-radius: 4px;
  }

  .price-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 30px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 2;
    margin: 0;
    padding: 0;
  }

  .price-slider-min {
    z-index: 3;
  }

  .price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid var(--color-primary, #1E4C96);
    border-radius: 50%;
    cursor: grab;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-width 0.15s ease;
  }

  .price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border-width: 4px;
  }

  .price-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(30, 76, 150, 0.4);
    border-width: 4px;
  }

  .price-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: white;
    border: 3px solid var(--color-primary, #1E4C96);
    border-radius: 50%;
    cursor: grab;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .price-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .price-slider::-moz-range-thumb:active {
    cursor: grabbing;
    transform: scale(1.2);
    box-shadow: 0 4px 16px rgba(30, 76, 150, 0.4);
  }

  .price-range-inputs {
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }

  .price-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }

  .price-input-label {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 600;
  }

  .price-input-field {
    position: relative;
    display: flex;
    align-items: center;
  }

  .price-currency {
    position: absolute;
    left: 8px;
    font-size: 11px;
    color: #999;
    font-weight: 600;
    pointer-events: none;
  }

  .filter-price-input {
    width: 100%;
    padding: 10px 8px 10px 36px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-base);
    -moz-appearance: textfield;
    height: 42px;
    box-sizing: border-box;
  }

  .filter-price-input::-webkit-outer-spin-button,
  .filter-price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .filter-price-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 76, 150, 0.1);
  }

  .price-range-separator {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
    padding-bottom: 10px;
    flex-shrink: 0;
  }

  .price-filter-go-btn {
    padding: 10px 16px;
    background: var(--color-primary, #1E4C96);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    align-self: flex-end;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .price-filter-go-btn:hover {
    background: var(--color-primary-dark, #163a73);
    box-shadow: 0 4px 12px rgba(30, 76, 150, 0.3);
  }

  .price-filter-go-btn:active {
    transform: scale(0.96);
    box-shadow: none;
  }

  /* Active Filters */
  .active-filters-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--color-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .active-filters-wrapper:empty {
    display: none;
  }

  .active-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--color-accent-light);
    border: 1px solid var(--color-primary);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-base);
  }

  .active-filter:hover {
    background: var(--color-primary);
    color: white;
  }

  .active-filter svg {
    width: 10px;
    height: 10px;
  }

  .filter-apply-button {
    margin-top: 16px;
    padding: 12px 24px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
  }

  .filter-apply-button:hover {
    background: var(--color-primary-dark);
  }

  /* Toolbar */
  .collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-light);
  }

  .collection-toolbar__filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
  }

  .collection-toolbar__filter-toggle:hover {
    background: var(--color-primary-dark);
  }

  .collection-toolbar__sort {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .collection-toolbar__sort label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
  }

  .collection-sort {
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: var(--transition-base);
  }

  .collection-sort:hover,
  .collection-sort:focus {
    border-color: var(--color-primary);
    outline: none;
  }

  /* Products Grid */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product-card {
    background-color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 18px;
    border-radius: 8px;
  }

  .product-card:hover {
    transform: translateZ(20px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }

  .product-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
  }

  .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
  }

  .product-card__image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e0e0e0;
    border-radius: 4px;
    flex-shrink: 0;
  }

  .product-card__image-placeholder span {
    font-size: 14px;
    color: #999999;
    text-align: center;
    padding: 20px;
    font-weight: 500;
  }

  .product-card__content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 12px;
  }

  .product-card__colors {
    font-size: 11px;
    color: #666666;
    margin-bottom: 3px;
    font-weight: 400;
    display: block;
  }

  .product-card__variants-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    position: relative;
    min-height: 48px;
    max-height: 48px;
  }

  .product-card__variants-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 48px;
    max-width: 230px;
  }

  .product-card__variants-track {
    display: flex;
    gap: 7px;
    transition: transform 0.3s ease;
    width: max-content;
  }

  .product-card__color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    border: 1.5px solid #d0d0d0;
    transition: all 0.2s ease;
    cursor: pointer;
    display: block;
    position: relative;
    flex-shrink: 0;
    background-color: #ffffff;
  }

  .product-card__color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-card__color-swatch:hover {
    border-color: #1a1a1a;
  }

  .product-card__color-swatch--active {
    border-color: #1a1a1a;
    border-width: 2px;
  }

  .product-card__variant-arrow {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .product-card__variant-arrow svg {
    width: 16px;
    height: 16px;
  }

  .product-card__variant-arrow:hover {
    color: #1a1a1a;
  }

  .product-card__variant-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .product-card__category-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
  }

  .product-card__category {
    font-size: 10px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    display: block;
  }

  .product-card__badge {
    font-size: 9px;
    color: #ff0000;
    background-color: transparent;
    border: 1px solid #ff0000;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
  }

  .product-card__product-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 3px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-card__price-wrapper {
    margin-top: 4px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .product-card__price {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .product-card__price--compare {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
  }

  .product-card__price--sale {
    color: #dc2626;
    font-weight: 700;
    font-size: 16px;
  }

  .product-card__sale-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #dc2626;
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 3px;
    letter-spacing: 0.5px;
    line-height: 1.4;
  }

  /* Loading */
  .collection-loading {
    text-align: center;
    padding: 40px 0;
  }

  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .collection-end {
    text-align: center;
    padding: 40px 0;
    color: var(--color-text-secondary);
    font-size: 14px;
    display: none;
  }

  /* No Products Message */
  .collection-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
  }

  .no-products-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #ccc;
  }

  .no-products-icon svg {
    width: 100%;
    height: 100%;
  }

  .no-products-title {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
  }

  .no-products-text {
    font-size: 16px;
    color: #666;
    margin: 0 0 32px;
  }

  .no-products-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-primary, #1E4C96);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .no-products-button:hover {
    background: var(--color-primary-dark, #163a73);
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .collection-no-products {
      padding: 60px 16px;
    }

    .no-products-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }

    .no-products-title {
      font-size: 20px;
    }

    .no-products-text {
      font-size: 14px;
      margin-bottom: 24px;
    }

    .no-products-button {
      padding: 12px 24px;
      font-size: 13px;
    }
  }

  /* Mobile Filters */
  .mobile-filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: background-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                visibility 0s linear 0.35s;
  }

  .mobile-filters-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: background-color 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
                opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                visibility 0s linear 0s;
  }

  .mobile-filters {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 90%;
    background: white;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 32px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-filters-overlay.active .mobile-filters {
    transform: translateX(0);
  }

  .mobile-filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--color-border);
  }

  .mobile-filters__header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
  }

  .mobile-filters__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text-primary);
  }

  .mobile-filters__content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }

  .mobile-filters__content .collection-filters {
    position: static;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    left: auto;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-filters__content .collection-filters__header {
    display: none;
  }

  .mobile-filters__content .price-slider-container {
    height: 60px;
    margin-bottom: 24px;
  }

  .mobile-filters__content .price-slider::-webkit-slider-thumb {
    width: 34px;
    height: 34px;
    border-width: 4px;
  }

  .mobile-filters__content .price-slider::-moz-range-thumb {
    width: 34px;
    height: 34px;
    border-width: 4px;
  }

  .mobile-filters__content .price-range-inputs {
    gap: 8px;
    flex-wrap: wrap;
  }

  .mobile-filters__content .filter-price-input {
    padding: 12px 8px 12px 38px;
    font-size: 14px;
    height: 44px;
  }

  .mobile-filters__content .price-filter-go-btn {
    height: 44px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .mobile-filters__content .price-range-separator {
    display: none;
  }

  .mobile-filters__content .price-input-wrapper {
    flex: 1 1 40%;
  }

  .mobile-filters__footer {
    display: flex;
    gap: 12px;
    padding: 20px;
    border-top: 2px solid var(--color-border);
  }

  .mobile-filters__clear,
  .mobile-filters__apply {
    flex: 1;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
  }

  .mobile-filters__clear {
    background: white;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
  }

  .mobile-filters__apply {
    background: var(--color-primary);
    border: none;
    color: white;
  }

  /* Responsive */
  @media (max-width: 1400px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product-card {
      padding: 14px;
    }

    .product-card__product-name {
      font-size: 14px;
      min-height: 40px;
    }

    .product-card__price {
      font-size: 15px;
    }

    .product-card__color-swatch {
      width: 46px;
      height: 46px;
    }

    .product-card__variants-carousel {
      min-height: 46px;
      max-height: 46px;
    }

    .product-card__variants-wrapper {
      height: 46px;
    }
  }

  @media (max-width: 1200px) {
    .products-grid {
      gap: 16px;
    }

    .product-card {
      padding: 14px;
    }

    .product-card__product-name {
      font-size: 14px;
      min-height: 40px;
    }

    .product-card__price {
      font-size: 15px;
    }

    .product-card__colors {
      font-size: 11px;
    }

    .product-card__color-swatch {
      width: 44px;
      height: 44px;
    }

    .product-card__variants-carousel {
      min-height: 44px;
      max-height: 44px;
      gap: 6px;
    }

    .product-card__variants-wrapper {
      height: 44px;
      max-width: 210px;
    }
  }

  @media (max-width: 1024px) {
    .collection-content {
      grid-template-columns: 1fr;
    }

    .collection-filters {
      position: absolute;
      left: -9999px;
      visibility: hidden;
      pointer-events: none;
    }

    .collection-toolbar__filter-toggle {
      display: flex;
    }

    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .product-card {
      padding: 12px;
    }

    .product-card__product-name {
      font-size: 13px;
      min-height: 38px;
    }

    .product-card__price {
      font-size: 14px;
    }

    .product-card__colors {
      font-size: 10px;
    }

    .product-card__category {
      font-size: 9px;
    }

    .product-card__badge {
      font-size: 8px;
      padding: 2px 5px;
    }

    .product-card__color-swatch {
      width: 42px;
      height: 42px;
    }

    .product-card__variants-carousel {
      min-height: 42px;
      max-height: 42px;
    }

    .product-card__variants-wrapper {
      height: 42px;
      max-width: 200px;
    }
  }

  @media (max-width: 768px) {
    .collection-header__title {
      font-size: 32px;
    }

    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .collection-toolbar {
      flex-direction: column;
      gap: 12px;
      align-items: stretch;
    }

    .collection-toolbar__sort {
      width: 100%;
      justify-content: space-between;
    }

    .collection-sort {
      flex: 1;
    }

    .product-card__product-name {
      font-size: 14px;
      min-height: 40px;
    }

    .product-card__price {
      font-size: 15px;
    }

    .product-card__colors {
      font-size: 11px;
    }

    .product-card__color-swatch {
      width: 46px;
      height: 46px;
    }

    .product-card__variants-carousel {
      min-height: 46px;
      max-height: 46px;
    }

    .product-card__variants-wrapper {
      height: 46px;
      max-width: 220px;
    }
  }

  @media (max-width: 600px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .product-card {
      padding: 12px;
      min-width: 150px;
    }

    .product-card__product-name {
      font-size: 13px;
      min-height: 38px;
    }

    .product-card__price {
      font-size: 14px;
    }

    .product-card__colors {
      font-size: 10px;
    }

    .product-card__color-swatch {
      width: 44px;
      height: 44px;
    }

    .product-card__variants-carousel {
      min-height: 44px;
      max-height: 44px;
      gap: 6px;
    }

    .product-card__variants-wrapper {
      height: 44px;
      max-width: 210px;
    }
  }

  @media (max-width: 480px) {
    .collection-page {
      padding: 20px 0 40px;
    }

    .collection-header__title {
      font-size: 24px;
    }

    .products-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .product-card {
      padding: 10px;
      min-width: 140px;
    }

    .product-card__product-name {
      font-size: 13px;
      min-height: 36px;
    }

    .product-card__price {
      font-size: 14px;
    }

    .product-card__colors {
      font-size: 10px;
    }

    .product-card__category {
      font-size: 8px;
    }

    .product-card__badge {
      font-size: 8px;
      padding: 2px 4px;
    }

    .product-card__variants-carousel {
      margin-top: 8px;
      gap: 5px;
      min-height: 42px;
      max-height: 42px;
    }

    .product-card__color-swatch {
      width: 42px;
      height: 42px;
    }

    .product-card__variants-wrapper {
      height: 42px;
      max-width: 200px;
    }
  }
  
  /* Ad Card Styles */
  .ad-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .ad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .ad-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .ad-card__image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .ad-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ad-card__placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
  }

  .ad-card__content {
    padding: 16px;
    text-align: center;
  }

  .ad-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
  }

  .ad-card__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
  }

  @media (max-width: 768px) {
    .ad-card__title {
      font-size: 16px;
    }

    .ad-card__text {
      font-size: 13px;
    }

    .ad-card__content {
      padding: 14px;
    }
  }

  @media (max-width: 480px) {
    .ad-card__title {
      font-size: 15px;
    }

    .ad-card__text {
      font-size: 12px;
    }

    .ad-card__content {
      padding: 12px;
    }
  }
.footer {
    background-color: #E5E5E5;
    padding: 50px 0 0;
    margin: 0;
    width: 100%;
  }

  .footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .footer__main {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 0;
    padding-bottom: 50px;
  }

  .footer__column {
    display: flex;
    flex-direction: column;
  }

  .footer__heading {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer__links li {
    margin-bottom: 10px;
  }

  .footer__links a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.2s ease;
    font-weight: 400;
    line-height: 1.8;
    text-transform: uppercase;
  }

  .footer__links a:hover {
    opacity: 0.6;
  }

  .footer__column--newsletter {
    padding-left: 0;
  }

  .footer__column--newsletter h3 {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .footer__newsletter-form {
    margin-bottom: 0;
  }

  .footer__newsletter-input-wrapper {
    display: flex;
    gap: 0;
  }

  .footer__newsletter-input-wrapper input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #999999;
    border-right: none;
    border-radius: 0;
    font-size: 13px;
    background-color: #FFFFFF;
    outline: none;
  }

  .footer__newsletter-input-wrapper input:focus {
    border-color: #666666;
  }

  .footer__newsletter-input-wrapper input::placeholder {
    color: #999999;
  }

  .footer__newsletter-button {
    background-color: #3B5998;
    color: #FFFFFF;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.2s ease;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
  }

  .footer__newsletter-button:hover {
    background-color: #2d4373;
  }

  .footer__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer__button {
    background-color: #3B5998;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    text-align: center;
  }

  .footer__button:hover {
    background-color: #2d4373;
  }

  .footer__bottom {
    border-top: 1px solid #CCCCCC;
    padding: 25px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }

  .footer__social {
    display: flex;
    gap: 20px;
  }

  .footer__social-icon {
    color: #000000;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .footer__social-icon:hover {
    opacity: 0.6;
    text-decoration: none;
  }

  .footer__social-icon svg {
    width: 24px;
    height: 24px;
    text-decoration: none;
  }

  .footer__copyright {
    font-size: 12px;
    color: #000000;
    text-align: center;
    font-weight: 400;
  }

  @media (max-width: 1400px) {
    .footer__main {
      gap: 60px;
    }
  }

  @media (max-width: 1200px) {
    .footer__container {
      padding: 0 30px;
    }

    .footer__main {
      grid-template-columns: 1fr 1fr;
      gap: 50px 40px;
    }
  }

  @media (max-width: 1024px) {
    .footer__container {
      padding: 0 25px;
    }

    .footer__main {
      gap: 45px 35px;
    }

    .footer__heading {
      font-size: 12px;
      margin-bottom: 18px;
    }

    .footer__links a {
      font-size: 12px;
    }
  }

  @media (max-width: 900px) {
    .footer__container {
      padding: 0 20px;
    }

    .footer__main {
      grid-template-columns: 1fr 1fr;
      gap: 40px 30px;
    }
  }

  @media (max-width: 768px) {
    .footer {
      padding: 45px 0 0;
    }

    .footer__container {
      padding: 0 20px;
    }

    .footer__main {
      grid-template-columns: 1fr;
      gap: 0;
      padding-bottom: 40px;
    }

    .footer__column {
      border-bottom: 1px solid #CCCCCC;
      padding: 18px 0;
    }

    .footer__column:first-child {
      padding-top: 0;
    }

    .footer__column:last-child {
      border-bottom: none;
    }

    .footer__heading {
      position: relative;
      padding-right: 30px;
      user-select: none;
      cursor: pointer;
      font-size: 13px;
      margin-bottom: 0;
    }

    .footer__heading::after {
      content: '+';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      font-weight: 400;
      transition: transform 0.3s ease;
    }

    .footer__column:not(.footer__column--collapsed) .footer__heading::after {
      content: '−';
    }

    .footer__column--collapsed .footer__links,
    .footer__column--collapsed .footer__newsletter-form {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .footer__column:not(.footer__column--collapsed) .footer__links,
    .footer__column:not(.footer__column--collapsed) .footer__newsletter-form {
      max-height: 500px;
      opacity: 1;
      transition: max-height 0.3s ease, opacity 0.3s ease;
    }
  }

  @media (max-width: 600px) {
    .footer {
      padding: 40px 0 0;
    }

    .footer__container {
      padding: 0 18px;
    }

    .footer__main {
      padding-bottom: 35px;
    }

    .footer__column {
      padding: 16px 0;
    }

    .footer__heading {
      font-size: 13px;
      padding-bottom: 0;
    }

    .footer__links li {
      margin-bottom: 10px;
    }

    .footer__links a {
      font-size: 12.5px;
    }

    .footer__newsletter-input-wrapper {
      flex-direction: column;
      gap: 10px;
    }

    .footer__newsletter-input-wrapper input {
      border-right: 1px solid #999999;
      font-size: 14px;
      padding: 13px 15px;
    }

    .footer__newsletter-button {
      width: 100%;
      padding: 13px 28px;
      font-size: 13px;
    }

    .footer__bottom {
      padding: 20px 0 25px;
      gap: 16px;
    }

    .footer__social {
      gap: 25px;
    }

    .footer__social-icon svg {
      width: 25px;
      height: 25px;
    }

    .footer__copyright {
      font-size: 11.5px;
      line-height: 1.5;
      padding: 0 10px;
    }
  }

  @media (max-width: 480px) {
    .footer {
      padding: 30px 0 0;
    }

    .footer__container {
      padding: 0 16px;
    }

    .footer__main {
      padding-bottom: 30px;
    }

    .footer__column {
      padding: 14px 0;
    }

    .footer__heading {
      font-size: 12.5px;
    }

    .footer__links a {
      font-size: 12px;
    }

    .footer__newsletter-input-wrapper input {
      font-size: 13px;
      padding: 12px 14px;
    }

    .footer__newsletter-button {
      padding: 12px 24px;
      font-size: 12.5px;
    }

    .footer__bottom {
      padding: 18px 0 22px;
      gap: 14px;
    }

    .footer__social {
      gap: 22px;
    }

    .footer__social-icon svg {
      width: 23px;
      height: 23px;
    }

    .footer__copyright {
      font-size: 11px;
      padding: 0 8px;
    }
  }

  @media (max-width: 375px) {
    .footer__container {
      padding: 0 14px;
    }

    .footer__heading {
      font-size: 12px;
    }

    .footer__links a {
      font-size: 11.5px;
    }

    .footer__newsletter-input-wrapper input {
      font-size: 12.5px;
      padding: 11px 12px;
    }

    .footer__newsletter-button {
      padding: 11px 20px;
      font-size: 12px;
    }

    .footer__social {
      gap: 20px;
    }

    .footer__social-icon svg {
      width: 22px;
      height: 22px;
    }

    .footer__copyright {
      font-size: 10.5px;
    }
  }

    .footer__newsletter-button {
      padding: 12px 24px;
      font-size: 13px;
    }

    .footer__bottom {
      padding: 18px 0 22px;
    }

    .footer__social-icon svg {
      width: 24px;
      height: 24px;
    }

    .footer__copyright {
      font-size: 10px;
    }
  }
.login-page {
    min-height: calc(100dvh - 200px);
    padding: 100px 0;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .login-page__container {
    max-width: 520px;
    width: 100%;
    margin: 80px auto 0;
    padding: 0 20px;
  }

  .login-tabs {
    display: none;
  }

  .login-form-wrapper {
    display: none;
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  }

  .login-form-wrapper.active {
    display: block;
  }

  .form-subtitle {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 8px;
  }

  .form-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 28px;
    letter-spacing: -0.5px;
  }

  .form-errors,
  .form-success {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .form-errors {
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
  }

  .form-errors__icon {
    color: #DC2626;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .form-errors__content {
    flex: 1;
  }

  .form-success {
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .form-success svg {
    color: #16A34A;
    margin-top: 2px;
  }

  .form-success .success-title {
    font-weight: 700;
    color: #16A34A;
    margin: 0 0 4px;
    font-size: 15px;
  }

  .form-success .success-message {
    color: #15803d;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
  }

  .form-errors__title {
    font-weight: 600;
    color: #DC2626;
    margin: 0 0 8px;
    font-size: 15px;
  }

  .form-errors__list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #991B1B;
  }

  .form-errors__list li {
    margin-bottom: 4px;
    line-height: 1.5;
  }

  .form-errors__list li:last-child {
    margin-bottom: 0;
  }

  .form-success p {
    margin: 0;
    color: #16A34A;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: white;
    transition: all 0.2s ease;
  }

  .form-group input::placeholder {
    color: #9CA3AF;
  }

  .form-group input:focus,
  .form-group select:focus {
    outline: none;
    border-color: #1E4C96;
    box-shadow: 0 0 0 3px rgba(30, 76, 150, 0.1);
  }

  .phone-input {
    display: none;
  }

  .phone-input .country-code {
    display: none;
  }

  .phone-input input {
    display: none;
  }

  .form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 24px;
  }

  .remember-label {
    display: none;
  }

  .forgot-password {
    font-size: 14px;
    color: #1E4C96;
    text-decoration: none;
    font-weight: 500;
  }

  .forgot-password:hover {
    text-decoration: underline;
  }

  .form-group--checkbox {
    margin-top: 20px;
  }

  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: #374151;
  }

  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #1E4C96;
  }

  .btn-submit,
  .btn-secondary {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .btn-submit {
    background: #1E4C96;
    color: white;
    margin-bottom: 16px;
  }

  .btn-submit:hover {
    background: #163A73;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 76, 150, 0.3);
  }

  .btn-secondary {
    background: white;
    color: #374151;
    border: 1px solid #D1D5DB;
  }

  .btn-secondary:hover {
    background: #F9FAFB;
  }

  .form-switch {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    margin: 20px 0 0;
  }

  .form-switch a {
    color: #1E4C96;
    text-decoration: none;
    font-weight: 600;
  }

  .form-switch a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .login-page {
      padding: 30px 0;
    }

    .login-form-wrapper {
      padding: 32px 24px;
    }

    .form-title {
      font-size: 26px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .login-tab {
      font-size: 14px;
      padding: 12px 16px;
    }
  }
.about-page {
    padding: 60px 20px 80px;
    background: #fff;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-header-section {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    padding: 0;
  }

  .text-block {
    margin-bottom: 50px;
  }

  .text-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .text-content {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
  }

  .text-content p {
    margin-bottom: 20px;
  }

  .text-content p:last-child {
    margin-bottom: 0;
  }

  .image-block {
    margin-bottom: 50px;
  }

  .image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .image-caption {
    text-align: center;
  }

  .image-caption h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
  }

  .image-caption p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

  .two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .column h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .column p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
  }

  @media (max-width: 768px) {
    .about-page {
      padding: 40px 16px 60px;
    }

    .page-container {
      width: 95%;
    }

    .page-header-section {
      margin-bottom: 40px;
    }

    .page-title {
      font-size: 36px;
    }

    .text-block h2 {
      font-size: 26px;
    }

    .text-content {
      font-size: 16px;
    }

    .two-column {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .image-caption h3 {
      font-size: 20px;
    }
  }
.page-careers {
    padding: 60px 20px;
    background: #fff;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
  }

  .page-intro {
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .career-section {
    margin-bottom: 50px;
  }

  .career-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1E4C96;
    margin-bottom: 20px;
  }

  .section-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .section-content p {
    margin-bottom: 16px;
  }

  .text-section-layout {
    display: grid;
    gap: 40px;
    align-items: center;
  }

  .text-section-layout.layout-left,
  .text-section-layout.layout-right {
    grid-template-columns: 1fr 1fr;
  }

  .text-section-layout.layout-left .text-section-image {
    order: 1;
  }

  .text-section-layout.layout-left .section-content {
    order: 2;
  }

  .text-section-layout.layout-right .text-section-image {
    order: 2;
  }

  .text-section-layout.layout-right .section-content {
    order: 1;
  }

  .text-section-layout.layout-top {
    grid-template-columns: 1fr;
  }

  .text-section-layout.layout-top .text-section-image {
    order: 1;
  }

  .text-section-layout.layout-top .section-content {
    order: 2;
  }

  .text-section-layout.layout-bottom {
    grid-template-columns: 1fr;
  }

  .text-section-layout.layout-bottom .text-section-image {
    order: 2;
  }

  .text-section-layout.layout-bottom .section-content {
    order: 1;
  }

  .text-section-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .text-section-overlay {
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
  }

  .text-section-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .overlay-content {
    position: relative;
    z-index: 2;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
  }

  .text-section-overlay .section-content {
    color: white;
    text-align: center;
    max-width: 800px;
  }

  .text-section-overlay .section-content p {
    color: white;
  }

  .job-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border-left: 4px solid #1E4C96;
    transition: all 0.3s ease;
  }

  .job-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(4px);
  }

  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .job-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
  }

  .job-badge {
    padding: 6px 16px;
    background: #1E4C96;
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
  }

  .job-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
  }

  .job-requirements {
    background: white;
    padding: 16px;
    border-radius: 8px;
  }

  .job-requirements strong {
    color: #1a1a1a;
    font-size: 15px;
    display: block;
    margin-bottom: 8px;
  }

  .job-requirements p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

  .career-cta {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
  }

  .career-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .career-cta p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: #1E4C96;
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30,76,150,0.3);
  }

  .cta-button:hover {
    background: #163a6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,76,150,0.4);
  }

  .cta-button svg {
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .page-container {
      width: 95%;
    }

    .page-title {
      font-size: 32px;
    }

    .page-intro {
      font-size: 16px;
      margin-bottom: 40px;
    }

    .career-section h2 {
      font-size: 24px;
    }

    .job-card {
      padding: 24px;
    }

    .job-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .job-header h3 {
      font-size: 20px;
    }

    .career-cta {
      padding: 40px 24px;
    }

    .career-cta h2 {
      font-size: 26px;
    }

    .cta-button {
      padding: 14px 32px;
      font-size: 16px;
    }

    .text-section-layout.layout-left,
    .text-section-layout.layout-right {
      grid-template-columns: 1fr;
    }

    .text-section-layout.layout-left .text-section-image,
    .text-section-layout.layout-right .text-section-image {
      order: 1;
    }

    .text-section-layout.layout-left .section-content,
    .text-section-layout.layout-right .section-content {
      order: 2;
    }

    .text-section-overlay {
      min-height: 300px;
    }

    .overlay-content {
      min-height: 300px;
      padding: 40px 24px;
    }
  }
.page-congratulations {
    padding: 80px 20px;
    background: #fff;
    min-height: 80dvh;
    display: flex;
    align-items: center;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .congrats-content {
    background: #fff;
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  }

  .congrats-icon {
    margin-bottom: 30px;
  }

  .congrats-icon svg {
    color: #28a745;
    animation: scaleIn 0.6s ease-out;
  }

  @keyframes scaleIn {
    0% { 
      transform: scale(0);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% { 
      transform: scale(1);
      opacity: 1;
    }
  }

  .congrats-title {
    font-size: 52px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

  .congrats-message {
    margin: 30px auto;
    max-width: 600px;
  }

  .congrats-message p {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin: 0;
  }

  .info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin: 40px auto;
    max-width: 500px;
    border-left: 4px solid #1E4C96;
  }

  .info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
  }

  .info-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
  }

  .congrats-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background: #1E4C96;
    color: white;
    box-shadow: 0 4px 15px rgba(30,76,150,0.3);
  }

  .btn-primary:hover {
    background: #163a6f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,76,150,0.4);
  }

  .btn-secondary {
    background: white;
    color: #1E4C96;
    border: 2px solid #1E4C96;
  }

  .btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .page-congratulations {
      padding: 60px 20px;
    }

    .page-container {
      width: 95%;
    }

    .congrats-content {
      padding: 50px 30px;
      border-radius: 16px;
    }

    .congrats-icon svg {
      width: 60px;
      height: 60px;
    }

    .congrats-title {
      font-size: 36px;
    }

    .congrats-message p {
      font-size: 17px;
    }

    .info-box {
      padding: 24px;
    }

    .congrats-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
      width: 100%;
      text-align: center;
    }
  }
.page-contact {
    padding: 60px 20px;
    background: #f9f9f9;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    text-align: center;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .contact-block {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: #1E4C96;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .contact-details p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
  }

  .contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }

  .form-success {
    padding: 16px;
    background: #d4edda;
    color: #155724;
    border-radius: 6px;
    margin-bottom: 24px;
  }

  .form-errors {
    padding: 16px;
    background: #f8d7da;
    color: #721c24;
    border-radius: 6px;
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #1E4C96;
  }

  .form-group textarea {
    resize: vertical;
  }

  .submit-btn {
    width: 100%;
    padding: 16px;
    background: #1E4C96;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .submit-btn:hover {
    background: #1e3a5f;
  }

  @media (max-width: 1024px) {
    .page-container {
      width: 90%;
    }

    .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .page-container {
      width: 95%;
    }
    .page-title {
      font-size: 32px;
    }

    .contact-form-container {
      padding: 30px 20px;
    }
  }
.page-delivery-policy {
    padding: 60px 20px 80px;
    background: white;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-header-section {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    padding: 0;
  }

  .page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
  }

  .content-section {
    margin-bottom: 40px;
  }

  .section-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
  }

  .section-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }

  .icon-list-section {
    margin-bottom: 40px;
  }

  .icon-list {
    display: grid;
    gap: 20px;
  }

  .icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .icon-circle {
    width: 32px;
    height: 32px;
    background: #1E4C96;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
  }

  .icon-list-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
  }

  @media (max-width: 768px) {
    .page-delivery-policy {
      padding: 40px 16px;
    }

    .page-container {
      width: 95%;
    }

    .page-header-section {
      margin-bottom: 40px;
    }

    .page-title {
      font-size: 36px;
    }

    .section-heading {
      font-size: 24px;
    }
  }
.page-privacy {
    padding: 60px 20px;
    background: #fff;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
  }

  .privacy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
  }

  .privacy-section:last-of-type {
    border-bottom: none;
  }

  .privacy-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1E4C96;
    margin-bottom: 20px;
  }

  .privacy-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .privacy-content p {
    margin-bottom: 16px;
  }

  .privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .privacy-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
  }

  .privacy-list li::before {
    content: "•";
    color: #1E4C96;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 10px;
  }

  .last-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #1E4C96;
    text-align: center;
  }

  .last-updated p {
    font-size: 15px;
    color: #666;
    margin: 0;
  }

  @media (max-width: 768px) {
    .page-container {
      width: 95%;
    }

    .page-title {
      font-size: 32px;
    }

    .privacy-section h2 {
      font-size: 22px;
    }

    .privacy-content,
    .privacy-list li {
      font-size: 15px;
    }
  }
.page-returns {
    padding: 60px 20px;
    background: #fff;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
  }

  .returns-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
  }

  .returns-section:last-of-type {
    border-bottom: none;
  }

  .returns-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1E4C96;
    margin-bottom: 20px;
  }

  .returns-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .returns-content p {
    margin-bottom: 16px;
  }

  .returns-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .returns-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
  }

  .returns-list li::before {
    content: "•";
    color: #1E4C96;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 10px;
  }

  .last-updated {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #1E4C96;
    text-align: center;
  }

  .last-updated p {
    font-size: 15px;
    color: #666;
    margin: 0;
  }

  @media (max-width: 768px) {
    .page-container {
      width: 95%;
    }

    .page-title {
      font-size: 32px;
    }

    .returns-section h2 {
      font-size: 22px;
    }

    .returns-content,
    .returns-list li {
      font-size: 15px;
    }
  }
.page-stores {
    padding: 60px 20px 80px;
    background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-header-section {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
    padding: 0;
  }

  .page-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
  }

  .stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 40px;
  }

  .store-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30,76,150,0.15);
  }

  .store-image {
    height: 280px;
    overflow: hidden;
    position: relative;
  }

  .store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
  }

  .store-card:hover .store-image img {
    transform: scale(1.03);
    filter: brightness(0.9);
  }

  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(30,76,150,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .store-card:hover .image-overlay {
    opacity: 1;
  }

  .store-content {
    padding: 32px 28px;
  }

  .store-name {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .store-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .info-item:hover {
    background: #e8f4f8;
    transform: translateX(4px);
  }

  .info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1E4C96 0%, #2d6bb3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 4px 12px rgba(30,76,150,0.25);
  }

  .info-text {
    flex: 1;
    min-width: 0;
  }

  .info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1E4C96;
    margin-bottom: 4px;
  }

  .info-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    word-wrap: break-word;
  }

  .info-text a {
    color: #1E4C96;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .info-text a:hover {
    color: #2d6bb3;
    text-decoration: underline;
  }

  .store-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .action-btn svg {
    flex-shrink: 0;
  }

  .action-btn.primary {
    background: linear-gradient(135deg, #1E4C96 0%, #2d6bb3 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30,76,150,0.3);
  }

  .action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30,76,150,0.4);
  }

  .action-btn.secondary {
    background: white;
    color: #1E4C96;
    border: 2px solid #1E4C96;
  }

  .action-btn.secondary:hover {
    background: #1E4C96;
    color: white;
    transform: translateY(-2px);
  }

  .store-map {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }

  .store-map iframe {
    width: 100%;
    height: 320px;
    border: none;
    display: block;
  }

  @media (max-width: 1024px) {
    .stores-grid {
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }
  }

  @media (max-width: 768px) {
    .page-stores {
      padding: 40px 16px 60px;
    }

    .page-container {
      width: 95%;
    }

    .page-header-section {
      margin-bottom: 40px;
    }

    .page-title {
      font-size: 36px;
    }

    .stores-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .store-card {
      border-radius: 16px;
    }

    .store-image {
      height: 220px;
    }

    .store-content {
      padding: 24px 20px;
    }

    .store-name {
      font-size: 22px;
    }

    .store-actions {
      grid-template-columns: 1fr;
    }

    .action-btn {
      padding: 16px 20px;
    }

    .store-map iframe {
      height: 280px;
    }
  }

  @media (max-width: 480px) {
    .info-item {
      padding: 14px;
    }

    .info-icon {
      width: 40px;
      height: 40px;
    }

    .action-btn {
      font-size: 14px;
      padding: 14px 16px;
    }
  }
.page-terms {
    padding: 60px 20px;
    background: #fff;
  }

  .page-container {
    width: 70%;
    max-width: 1400px;
    margin: 0 auto;
  }

  .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 3px solid #1E4C96;
  }

  .terms-intro {
    background: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #1E4C96;
    border-radius: 8px;
    margin-bottom: 50px;
  }

  .terms-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin: 0;
  }

  .terms-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
  }

  .terms-section:last-of-type {
    border-bottom: none;
  }

  .terms-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1E4C96;
    margin-bottom: 20px;
  }

  .terms-section.numbered h2 {
    color: #1a1a1a;
  }

  .terms-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
  }

  .terms-content p {
    margin-bottom: 16px;
  }

  .terms-content ul,
  .terms-content ol {
    margin: 16px 0;
    padding-left: 30px;
  }

  .terms-content li {
    margin-bottom: 10px;
  }

  .subsection {
    margin-top: 24px;
    padding-left: 20px;
    border-left: 3px solid #e0e0e0;
  }

  .subsection h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1E4C96;
    margin-bottom: 12px;
  }

  .subsection p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
  }

  .effective-date {
    margin-top: 60px;
    padding: 24px;
    background: #e8f4f8;
    border-radius: 8px;
    text-align: center;
  }

  .effective-date p {
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
  }

  .terms-contact {
    margin-top: 30px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
  }

  .terms-contact p {
    font-size: 15px;
    color: #555;
    margin: 0;
  }

  .terms-contact a {
    color: #1E4C96;
    text-decoration: none;
    font-weight: 600;
  }

  .terms-contact a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .page-container {
      width: 95%;
    }

    .page-title {
      font-size: 32px;
    }

    .terms-section h2 {
      font-size: 24px;
    }

    .subsection h3 {
      font-size: 18px;
    }

    .terms-intro,
    .effective-date,
    .terms-contact {
      padding: 20px;
    }
  }
.shopify-section:has(.product-page) {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .product-page {
    padding: 40px 0;
    background-color: #fff;
  }

  .product-page__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
  }

  .product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  /* Gallery */
  .product-gallery {
    position: relative;
  }

  .product-gallery__main {
    position: relative;
    margin-bottom: 20px;
  }

  .product-gallery__main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: opacity 0.15s ease;
    cursor: pointer;
  }

  .product-image:hover {
    opacity: 0.9;
  }

  .product-gallery__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
    pointer-events: none;
  }

  .gallery-nav__btn {
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: var(--transition-base);
    pointer-events: all;
  }

  .gallery-nav__btn:hover {
    transform: scale(1.1);
    background: #f5f5f5;
  }

  .product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }

  .product-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
  }

  .product-thumb:hover {
    border-color: #ccc;
  }

  .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    background: transparent;
  }

  .product-thumb--active {
    border-color: #000;
  }

  .product-thumb--active:hover {
    border-color: #000;
  }

  /* Product Info */
  .product-info {
    padding-top: 20px;
  }

  .product-info__header {
    margin-bottom: 32px;
  }

  .product-info__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: 0.5px;
  }

  .product-info__sku-top {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
  }

  .sku-label {
    font-weight: 600;
  }

  .sku-value {
    font-weight: 400;
  }

  .product-info__price-wrapper {
    margin-bottom: 16px;
  }

  .product-info__price {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

  .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .price--sale {
    color: #dc2626;
    font-size: 18px;
  }

  .price--compare {
    font-size: 18px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
  }
  
  .product-info__shipping-link {
    color: var(--color-text-secondary);
    text-decoration: underline;
    font-size: 14px;
  }
  
  .product-info__shipping-link:hover {
    color: var(--color-text-primary);
  }

  .price-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .price-badge--sale {
    background: #dc2626;
    color: white;
  }

  /* Sold Out Badge */
  .sold-out-badge {
    display: inline-block;
    margin-top: 8px;
  }

  .sold-out-badge__text {
    display: inline-block;
    padding: 6px 16px;
    background-color: #dc2626;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
  }

  /* Product Options */
  .product-option {
    margin-bottom: 24px;
  }

  .product-option__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .product-option__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
  }

  .product-option__selected {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
  }

  .product-option__links {
    display: flex;
    gap: 16px;
  }

  .size-guide-link {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
  }

  .size-guide-link:hover {
    text-decoration: none;
  }

  .product-option__values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* Color Options */
  .color-option {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    transition: var(--transition-base);
    background: #f9fafb;
  }

  .color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .color-option__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-secondary);
    text-transform: uppercase;
  }

  .color-option:hover {
    border-color: var(--color-text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .color-option--selected {
    border-color: var(--color-text-primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
  }

  /* Width Options */
  .width-option {
    min-width: 100px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: var(--transition-base);
  }

  .width-option:hover {
    border-color: var(--color-text-primary);
  }

  .width-option--selected {
    background: var(--color-text-primary);
    color: white;
    border-color: var(--color-text-primary);
  }

  /* Size Options */
  .product-option__sizes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
    gap: 10px;
  }

  .size-option {
    padding: 12px 8px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
  }

  .size-option:hover:not(:disabled) {
    border-color: var(--color-text-primary);
  }

  .size-option--selected {
    background: var(--color-text-primary);
    color: white;
    border-color: var(--color-text-primary);
  }

  .size-option--unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    position: relative;
  }

  .size-option--unavailable::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-text-secondary);
    transform: rotate(-45deg);
  }

  /* SKU */
  .product-info__sku {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
  }

  /* Product Actions */
  .product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    align-items: flex-end;
  }

  .product-quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    align-self: center;
  }
  
  .product-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .product-quantity__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .quantity-selector {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    background: white;
  }

  .quantity-btn {
    width: 36px;
    height: 44px;
    background: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    color: var(--color-text-primary);
  }

  .quantity-btn:hover {
    background: #f5f5f5;
  }

  .quantity-input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
  }

  .quantity-input::-webkit-inner-spin-button,
  .quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .product-submit {
    width: 100%;
    height: 44px;
    padding: 0 32px;
    background: white;
    color: #4267B2;
    border: 2px solid #4267B2;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .product-submit:hover:not(:disabled) {
    background: #4267B2;
    color: white;
  }

  .product-submit:disabled {
    background: #f5f5f5;
    border-color: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
  }
  
  .product-buy-now {
    width: 100%;
    height: 44px;
    padding: 0 32px;
    background: #4267B2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-base);
    text-transform: uppercase;
  }
  
  .product-buy-now:hover:not(:disabled) {
    background: #2d4373;
  }
  
  .product-buy-now:disabled {
    background: #9ca3af;
    cursor: not-allowed;
  }

  /* Shipping Info */
  .product-info__shipping {
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 32px;
  }

  .shipping-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--color-text-secondary);
  }

  .shipping-info svg {
    color: var(--color-primary);
  }

  /* Description */
  .product-info__description {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }

  .product-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-secondary);
  }

  /* Social Buttons */
  .product-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
  }

  .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-base);
    color: var(--color-text-primary);
    min-width: 100px;
    flex: 1;
  }

  .social-btn .material-icons,
  .social-btn .material-icons-outlined,
  .social-btn .material-icons-round {
    width: auto !important;
    height: auto !important;
    font-size: 20px !important;
  }

  .social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .social-btn:hover {
    background: #f5f5f5;
  }

  .social-btn--facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
  }

  .social-btn--twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
  }

  .social-btn--pinterest:hover {
    background: #e60023;
    color: white;
    border-color: #e60023;
  }

  /* Image Modal */
  .image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
  }

  .image-modal__content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
  }

  .image-modal__image {
    max-width: 100%;
    max-height: 90dvh;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .image-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-modal__close:hover {
    opacity: 0.7;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .product-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .product-gallery {
      position: static;
    }

    .product-gallery__thumbs {
      grid-template-columns: repeat(5, 1fr);
    }
  }

  @media (max-width: 768px) {
    .product-info__title {
      font-size: 32px;
    }

    .price {
      font-size: 24px;
    }

    .price--compare {
      font-size: 18px;
    }

    .product-gallery__thumbs {
      grid-template-columns: repeat(4, 1fr);
    }

    .product-actions {
      flex-direction: row;
      gap: 8px;
    }

    .product-quantity__label {
      font-size: 11px;
    }

    .quantity-btn {
      width: 32px;
      height: 40px;
      font-size: 16px;
    }

    .quantity-input {
      width: 40px;
      font-size: 13px;
    }

    .product-submit {
      height: 40px;
      padding: 0 20px;
      font-size: 13px;
    }

    .product-option__header {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }

  @media (max-width: 480px) {
    .product-actions {
      gap: 6px;
    }

    .quantity-btn {
      width: 28px;
      height: 36px;
      font-size: 14px;
    }

    .quantity-input {
      width: 36px;
      font-size: 12px;
    }

    .product-submit {
      height: 36px;
      padding: 0 16px;
      font-size: 12px;
    }
  }

  /* Product Recommendations */
  .product-recommendations {
    margin-top: 80px;
    padding: 60px 0;
    background: #f8f8f8;
  }

  .recommendations-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .recommendations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .recommendations-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #999;
  }

  .recommendation-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
  }

  .recommendation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .recommendation-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
  }

  .recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .recommendation-card:hover .recommendation-image img {
    transform: scale(1.05);
  }

  .image-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .recommendation-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .recommendation-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .recommendation-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
  }

  .price-current {
    font-size: 16px;
    font-weight: 700;
    color: #111;
  }

  .price-sale {
    color: #dc2626;
  }

  .price-compare {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
  }

  @media (max-width: 1024px) {
    .recommendations-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .recommendations-title {
      font-size: 24px;
    }
  }

  @media (max-width: 768px) {
    .product-recommendations {
      margin-top: 60px;
      padding: 40px 0;
    }

    .recommendations-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .recommendations-title {
      font-size: 20px;
      margin-bottom: 24px;
    }

    .recommendation-info {
      padding: 12px;
    }

    .recommendation-title {
      font-size: 13px;
    }

    .price-current {
      font-size: 14px;
    }

    .price-compare {
      font-size: 12px;
    }
  }
.reset-password-page {
    min-height: calc(100dvh - 200px);
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
  }

  .reset-password-container {
    width: 100%;
    max-width: 550px;
  }

  .reset-password-card {
    background: white;
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }

  .reset-password-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .reset-password-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
  }

  .reset-subtext {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }

  .reset-subtext strong {
    color: #333;
    font-weight: 600;
  }

  .form-errors {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #c00;
    font-size: 14px;
  }

  .form-errors ul {
    margin: 0;
    padding-left: 20px;
  }

  .form-field {
    margin-bottom: 24px;
  }

  .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
  }

  .form-field input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
  }

  .form-field input:focus {
    outline: none;
    border-color: #3b5998;
    box-shadow: 0 0 0 3px rgba(59, 89, 152, 0.1);
  }

  .submit-btn {
    width: 100%;
    padding: 16px;
    background: #3b5998;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    font-family: inherit;
  }

  .submit-btn:hover {
    background: #2d4373;
  }

  .submit-btn:active {
    transform: scale(0.98);
  }

  @media (max-width: 600px) {
    .reset-password-page {
      padding: 60px 20px;
    }

    .reset-password-card {
      padding: 36px 28px;
    }

    .reset-password-header h1 {
      font-size: 26px;
    }

    .reset-subtext {
      font-size: 14px;
    }
  }
.shop-now {
    background-color: #ffffff;
    padding: 50px 0 60px;
    width: 100%;
    position: relative;
  }

  .shop-now__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .shop-now__title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
  }

  .shop-now__title-line {
    flex: 1;
    height: 1px;
    background-color: #d0d0d0;
  }

  .shop-now__title {
    font-size: 40px;
    font-weight: 400;
    color: #4a4a4a;
    margin: 0;
    white-space: nowrap;
  }

  .shop-now__slider-container {
    width: 100%;
    padding: 0 40px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .shop-now__slider-wrapper {
    flex: 1;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .shop-now__slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: stretch;
    gap: 20px;
  }

  .shop-now__slide {
    flex: 0 0 auto;
    box-sizing: border-box;
    width: calc((100% - (20px * (var(--cards-per-page, 4) - 1))) / var(--cards-per-page, 4));
  }

  .shop-now__card {
    background-color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 18px;
    border-radius: 8px;
  }

  .shop-now__card-link,
  .shop-now__card-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .shop-now__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }

  .shop-now__image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
  }

  .shop-now__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 10px;
  }

  .shop-now__image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .shop-now__empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999999;
    width: 100%;
  }

  .shop-now__placeholder-text {
    font-size: 14px;
    color: #999999;
    text-align: center;
    padding: 20px;
    font-weight: 500;
  }

  .shop-now__card-content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 12px;
  }

  .shop-now__colors {
    font-size: 11px;
    color: #666666;
    margin-bottom: 3px;
    font-weight: 400;
  }

  .shop-now__category-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
  }

  .shop-now__category {
    font-size: 10px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
  }

  .shop-now__badge {
    font-size: 9px;
    color: #ff0000;
    background-color: transparent;
    border: 1px solid #ff0000;
    padding: 3px 6px;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    font-weight: 500;
  }

  .shop-now__product-name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 3px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .shop-now__price-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
  }

  .shop-now__price {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
  }

  .shop-now__price--compare {
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
  }

  .shop-now__price--sale {
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
  }

  .shop-now__cta-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: none;
  }

  .shop-now__image-wrapper:hover .shop-now__cta-overlay {
    background-color: #ffffff;
    color: #1E4C96;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .shop-now__variants-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    position: relative;
    min-height: 48px;
    max-height: 48px;
  }

  .shop-now__variants-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 48px;
    max-width: 230px;
  }

  .shop-now__variants-track {
    display: flex;
    gap: 7px;
    transition: transform 0.3s ease;
    width: max-content;
  }

  .shop-now__color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    border: 1.5px solid #d0d0d0;
    transition: all 0.2s ease;
    cursor: pointer;
    display: block;
    position: relative;
    flex-shrink: 0;
    background-color: #ffffff;
  }

  .shop-now__color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .shop-now__color-swatch:hover {
    border-color: #1a1a1a;
  }

  .shop-now__color-swatch--active {
    border-color: #1a1a1a;
    border-width: 2px;
  }

  .shop-now__variant-arrow {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
  }

  .shop-now__variant-arrow svg {
    width: 16px;
    height: 16px;
  }

  .shop-now__variant-arrow:hover {
    color: #1a1a1a;
  }

  .shop-now__variant-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .shop-now__arrow {
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
    flex-shrink: 0;
    z-index: 10;
  }

  .shop-now__arrow svg {
    width: 32px;
    height: 32px;
  }

  .shop-now__arrow:hover {
    color: #1a1a1a;
  }

  .shop-now__arrow:disabled {
    color: #d0d0d0;
    cursor: not-allowed;
  }

  @media (max-width: 1400px) {
    .shop-now__slider-container {
      padding: 0 35px;
      gap: 20px;
    }
    .shop-now__slider-track {
      gap: 18px;
    }
    .shop-now__slide {
      width: calc((100% - (18px * (var(--cards-per-page, 4) - 1))) / var(--cards-per-page, 4));
    }
    .shop-now__title {
      font-size: 36px;
    }
  }

  @media (max-width: 1024px) {
    .shop-now__slider-container {
      --cards-per-page: 2;
      padding: 0 28px;
      gap: 16px;
    }
    .shop-now__slider-track {
      gap: 15px;
    }
    .shop-now__slide {
      width: calc((100% - (15px * (var(--cards-per-page, 2) - 1))) / var(--cards-per-page, 2));
    }
    .shop-now__title {
      font-size: 30px;
    }
  }

  @media (max-width: 768px) {
    .shop-now {
      padding: 40px 0 50px;
    }
    .shop-now__slider-container {
      padding: 0;
      gap: 0;
      --cards-per-page: 1;
      position: relative;
    }
    .shop-now__slider-wrapper {
      padding: 20px 15px;
      margin: 0;
    }
    .shop-now__slider-track {
      gap: 0;
    }
    .shop-now__slide {
      padding: 0;
      width: 100%;
      flex-shrink: 0;
    }
    .shop-now__title {
      font-size: 28px;
    }
    .shop-now__card {
      max-width: 100%;
      margin: 0 auto;
      width: 100%;
    }
    .shop-now__arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      padding: 12px;
      background: none;
      z-index: 20;
    }
    .shop-now__arrow--prev {
      left: 10px;
    }
    .shop-now__arrow--next {
      right: 10px;
    }
    .shop-now__arrow svg {
      width: 28px;
      height: 28px;
    }
  }

  @media (max-width: 480px) {
    .shop-now {
      padding: 30px 0 40px;
    }
    .shop-now__title {
      font-size: 22px;
    }
    .shop-now__slider-container {
      padding: 0 20px;
      gap: 12px;
    }
  }
.trending-deals {
    background-color: #ffffff;
    padding: 50px 40px 60px;
    width: 100%;
  }

  .trending-deals__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .trending-deals__title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
  }

  .trending-deals__title-line {
    flex: 1;
    height: 1px;
    background-color: #d0d0d0;
  }

  .trending-deals__title {
    font-size: 40px;
    font-weight: 400;
    color: #4a4a4a;
    margin: 0;
    white-space: nowrap;
  }

  .trending-deals__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .trending-deals__card {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
  }

  .trending-deals__card:hover {
    transform: translateY(-5px);
  }

  .trending-deals__image-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
  }

  .trending-deals__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .trending-deals__image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trending-deals__placeholder-text {
    font-size: 14px;
    color: #999999;
    text-align: center;
    padding: 20px;
  }

  .trending-deals__empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999999;
  }

  .trending-deals__cta {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333333;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .trending-deals__cta:hover {
    background-color: #ffffff;
    color: #1E4C96;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 1024px) {
    .trending-deals__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    .trending-deals__card:last-child {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 768px) {
    .trending-deals {
      padding: 40px 20px 50px;
    }
    .trending-deals__title {
      font-size: 28px;
    }
    .trending-deals__title-container {
      gap: 20px;
    }
    .trending-deals__grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .trending-deals__card:last-child {
      grid-column: auto;
    }
    .trending-deals__cta {
      font-size: 12px;
      padding: 8px 12px;
      bottom: 15px;
      right: 15px;
    }
  }

  @media (max-width: 480px) {
    .trending-deals__title {
      font-size: 22px;
    }
  }