/* Home page */
.home-page {
      width: 100%;
    }

.home-active-order {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: 1.1rem;
      max-width: 900px;
      margin: 0 auto 1.25rem;
      padding: 1.15rem 1.25rem;
      overflow: hidden;
      position: relative;
      border: 0;
      border-radius: var(--radius);
      background: white;
      box-shadow: var(--shadow);
    }

    .home-active-order__indicator {
      display: grid;
      width: 46px;
      height: 46px;
      place-items: center;
      border-radius: 50%;
      background: rgba(190, 30, 45, 0.1);
    }

    .home-active-order__indicator-core {
      width: 14px;
      height: 14px;
      border: 4px solid #fff;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(190, 30, 45, 0.16);
      animation: home-active-order-pulse 2.2s ease-out infinite;
    }

    .home-active-order__content {
      min-width: 0;
    }

    .home-active-order__eyebrow {
      margin: 0 0 0.2rem;
      color: var(--primary);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .home-active-order__content h2 {
      margin: 0;
      color: var(--text-dark);
      font-size: 1.15rem;
    }

    .home-active-order__content > p:not(.home-active-order__eyebrow) {
      margin: 0.35rem 0 0;
      color: var(--text-gray);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .home-active-order__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem 0.75rem;
      margin-top: 0.6rem;
      color: #6f1420;
      font-size: 0.78rem;
      font-weight: 700;
    }

    .home-active-order__action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      white-space: nowrap;
    }

    @keyframes home-active-order-pulse {
      0%, 45% { box-shadow: 0 0 0 5px rgba(190, 30, 45, 0.16); }
      75%, 100% { box-shadow: 0 0 0 11px rgba(190, 30, 45, 0); }
    }

.daily-deal {
      margin: 0 auto 1.75rem;
      max-width: 900px;
    }

    .daily-deal[hidden] {
      display: none;
    }

    .daily-deal__card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      width: 100%;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(190, 30, 45, 0.08);
      border-radius: 28px;
      box-shadow: 0 20px 60px rgba(160, 20, 30, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .daily-deal__content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
      padding: 2.5rem 2.75rem 2.75rem;
      background: #fff;
      position: relative;
      z-index: 2;
    }

    .daily-deal__badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      margin-bottom: 1.25rem;
      padding: 0.38rem 0.9rem;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .daily-deal__deal-title {
      margin: 0 0 0.35rem;
      color: var(--text-dark);
      font-family: 'Oswald', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      line-height: 1.02;
      letter-spacing: 0;
    }

    .daily-deal__product-name {
      margin: 0 0 1rem;
      color: var(--primary);
      font-family: 'Oswald', sans-serif;
      font-size: 1.45rem;
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: 0;
    }

    .daily-deal__rule {
      width: 36px;
      height: 3px;
      margin-bottom: 1rem;
      border-radius: 999px;
      background: var(--primary);
    }

    .daily-deal__description {
      margin: 0 0 0.45rem;
      color: var(--text-gray);
      font-size: 0.92rem;
      line-height: 1.55;
      max-width: 34ch;
    }

    .daily-deal__product-meta {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.35rem;
      align-items: center;
      margin-bottom: 1.5rem;
      color: #6b5555;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .daily-deal__actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .daily-deal__pricing {
      display: inline-flex;
      align-items: baseline;
      gap: 0.25rem;
      padding: 0.85rem 1.35rem;
      border: 1.5px solid #f2c0c8;
      border-radius: 14px;
      background: #fcedf0;
      color: var(--primary);
      line-height: 1;
      white-space: nowrap;
    }

    .daily-deal__product-price {
      color: var(--primary);
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: 0;
    }

    .daily-deal__price-currency {
      color: var(--primary);
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .daily-deal__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      min-height: 3.25rem;
      padding-inline: 1.6rem;
      border-radius: 14px;
      font-size: 0.92rem;
      font-weight: 800;
      box-shadow: 0 4px 18px rgba(192, 21, 42, 0.35);
      transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }

    .daily-deal__cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(192, 21, 42, 0.45);
    }

    .daily-deal__visual {
      position: relative;
      overflow: hidden;
      min-height: 280px;
      background: radial-gradient(circle at center, rgba(40, 40, 40, 0.16), rgba(8, 8, 8, 0.94));
      isolation: isolate;
    }

    .daily-deal__visual::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 2;
      background: #fff;
      clip-path: polygon(0 0, 22px 0, 0 100%);
      pointer-events: none;
    }

    .daily-deal__visual::after {
      content: '';
      position: absolute;
      top: 94%;
      left: 0;
      z-index: 3;
      width: 5px;
      height: 200%;
      border-radius: 999px;
      background: var(--primary);
      transform: translateY(-50%) rotate(2.5deg);
      pointer-events: none;
    }

    .daily-deal__visual img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      z-index: 0;
    }

    .daily-deal__visual-fallback {
      width: 100%;
      min-height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      color: rgba(255, 255, 255, 0.92);
      font-family: 'Oswald', sans-serif;
      font-size: 2rem;
      letter-spacing: 0.04em;
      text-align: center;
      text-transform: uppercase;
    }

    @media (max-width: 700px) {
      .daily-deal__card {
        grid-template-columns: 1fr;
      }

      .daily-deal__visual {
        min-height: 220px;
        order: 2;
      }

      .daily-deal__visual::before {
        clip-path: polygon(0 0, 100% 0, 100% 18px, 0 0);
      }

      .daily-deal__visual::after {
        display: none;
      }

      .daily-deal__content {
        padding: 1.75rem 1.5rem 2rem;
      }

      .daily-deal__deal-title {
        font-size: 2rem;
      }

      .daily-deal__product-name {
        font-size: 1.2rem;
      }

      .daily-deal__actions {
        gap: 0.85rem;
      }
    }

    .home-section-head {
      display: grid;
      justify-items: center;
      gap: 0;
      margin-bottom: 1.75rem;
      text-align: center;
    }

    .home-section-head h1 {
      margin: 0;
      color: var(--primary);
      font-size: clamp(2rem, 4vw, 2.5rem);
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .category-card {
      display: block;
      text-decoration: none;
      color: inherit;
      background: white;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }

    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .category-card__image {
      background: var(--bg-light);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 1rem;
      aspect-ratio: 1;
    }

    .category-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .category-card__placeholder {
      width: 100%;
      height: 100%;
      min-height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-family: 'Oswald', sans-serif;
      font-size: 1.1rem;
    }

    .category-card__body {
      padding: 0;
    }

    .category-card__body h2 {
      margin: 0;
      font-size: 1.25rem;
      color: var(--text-dark);
    }

    .home-empty {
      padding: 1.35rem;
      border-radius: 20px;
      background: white;
      border: 1px solid rgba(190, 30, 45, 0.1);
      color: var(--text-gray);
      text-align: center;
    }

    @media (max-width: 700px) {
      .home-active-order {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 0.8rem;
        padding: 1rem;
        border-radius: 20px;
      }

      .home-active-order__indicator {
        width: 40px;
        height: 40px;
      }

      .home-active-order__action {
        grid-column: 1 / -1;
        width: 100%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .home-active-order__indicator-core {
        animation: none;
      }
    }

      .home-page {
        padding-top: 1.25rem;
      }
.home-loading-surface{background-color:#eee7e7;background-image:linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent);background-repeat:no-repeat;background-size:70% 100%;animation:home-image-shimmer 1.35s ease-in-out infinite}
@keyframes home-image-shimmer{from{background-position:-230% 0}to{background-position:330% 0}}
@media (prefers-reduced-motion:reduce){.home-loading-surface{animation:none;background-image:none}}
