@font-face {
      font-family: "CandaraCustom";
      src: url("../fonts/candara-light.ttf") format("truetype");
      font-weight: 300;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "CandaraCustom";
      src: url("../fonts/candara-regular.ttf") format("truetype");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "CandaraCustom";
      src: url("../fonts/candara-bold.ttf") format("truetype");
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "CandaraCustom", Arial, sans-serif;
      color: #3F3F46;
      background: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      display: block;
      max-width: 100%;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
    }

    /* ===== SECTION ===== */
    .category {
      padding-bottom: 90px;
    }

    /* Header */
    .category__header {
      margin-bottom: 48px;
      max-width: 780px;
    }

    .category__title {
      font-size: 48px;
      font-weight: 700;
      text-transform: uppercase;
      color: #3F3F46;
      line-height: 1;
      margin-bottom: 18px;
    }

    .category__title-accent {
      color: #E5A600;
    }

    .category__description {
      font-size: 20px;
      line-height: 1.6;
      color: #6B6B72;
    }

    /* ===== GRID ===== */
    .products__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px 24px;
    }

    /* ===== CARD ===== */
    .product {
      position: relative;
      display: flex;
      flex-direction: column;
      background: #fff;
      border: 1px solid #ECECF0;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product:hover {
      border-color: #E5A600;
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(63, 63, 70, 0.1);
    }

    .product__image {
      width: 100%;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: #F8F8FA;
      position: relative;
    }

    .product__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product:hover .product__image img {
      transform: scale(1.05);
    }

    .product__image::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 3px;
      background: #E5A600;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .product:hover .product__image::after {
      transform: scaleX(1);
    }

    .product__body {
      padding: 18px 20px 22px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .product__collection {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #93939C;
      margin-bottom: 8px;
    }

    .product__title {
      font-size: 17px;
      font-weight: 700;
      color: #3F3F46;
      text-transform: uppercase;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .product__color {
      display: block;
      font-size: 13px;
      color: #6B6B72;
      font-weight: 400;
      margin-top: 4px;
    }

    .product__footer {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-top: 14px;
      border-top: 1px dashed #ECECF0;
    }

    .product__price {
      font-size: 20px;
      font-weight: 700;
      color: #3F3F46;
      white-space: nowrap;
    }

    .product__price-currency {
      font-size: 15px;
      color: #93939C;
      margin-left: 3px;
      font-weight: 400;
    }

    .product__arrow {
      /* width: 34px; */
      /* height: 34px; */
      border-radius: 8px;
      border: 1px solid #E5A600;
      padding: 10px 20px;
      background: #F8F8FA;
      color: #E5A600;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 700;
      flex-shrink: 0;
      transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    }

    .product:hover .product__arrow {
      background: #E5A600;
      color: #3F3F46;
      transform: translateX(3px);
    }

    /* ===== TABLET ===== */
    @media (max-width: 1024px) {
      .category {
        padding-bottom: 72px;
      }

      .category__title {
        font-size: 40px;
      }

      .products__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 20px;
      }

      .product__title {
        font-size: 16px;
      }

      .product__price {
        font-size: 18px;
      }
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }

      .category {
        padding-bottom: 56px;
      }

      .category__header {
        margin-bottom: 32px;
      }

      .category__title {
        font-size: 30px;
        margin-bottom: 14px;
      }

      .category__description {
        font-size: 16px;
        line-height: 1.5;
      }

      .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
      }

      .product__body {
        padding: 14px 14px 18px;
      }

      .product__collection {
        font-size: 12px;
        margin-bottom: 6px;
      }

      .product__title {
        font-size: 14px;
        margin-bottom: 10px;
      }

      .product__color {
        font-size: 12px;
      }

      .product__price {
        font-size: 16px;
      }

      .product__arrow {
        /* width: 30px; */
        /* height: 30px; */
        font-size: 13px;
      }
    }

    /* ===== SMALL MOBILE ===== */
    @media (max-width: 480px) {
      .container {
        padding: 0 14px;
      }

      .category {
        padding-bottom: 44px;
      }

      .category__title {
        font-size: 26px;
      }

      .product__title {
        font-size: 13px;
      }

      .product__color {
        font-size: 11px;
      }

      .product__price {
        font-size: 15px;
      }

      .product__collection {
        font-size: 11px;
      }
    }