@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/satoshi/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/satoshi/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('/fonts/satoshi/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === VARIABLE === */
:root {
  --satoshi: 'Satoshi', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* === APPLY GLOBALLY === */
html, body {
  font-family: var(--satoshi);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--satoshi);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* === EXCLUDE HERO === */
.hero, .hero * {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif !important;
}
    .typing::after {
      content: '';
      animation: typing 6s infinite;
      color: #2E7D32;
      font-weight: 600;
    } 
     .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .header h2 {
      font-size: 2rem;
    }

    .header a {
      text-decoration: none;
      color: #000;
      font-weight: 500;
      border-bottom: 1px solid transparent;
      transition: 0.3s;
    }

    .header a:hover {
      border-color: #000;
    }

    .card-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .card {
      flex: 1 1 calc(25% - 20px);
      height: 300px;
      background-size: cover;
      background-position: center;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card-content {
      background: rgba(255, 255, 255, 0.9);
      padding: 15px;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .card-content h3 {
      margin-bottom: 8px;
      font-size: 1.1rem;
    }

    .card-content p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 10px;
    }

    .card-content button {
      padding: 8px 14px;
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 0.9rem;
    }

    .card-content button:hover {
      background-color: #333;
    }

    /* Responsive Design */

    @media (max-width: 992px) {
      .card {
        flex: 1 1 calc(50% - 20px);
      }
    }

    @media (max-width: 600px) {
      .card {
        flex: 1 1 100%;
      }

      .header {
        flex-direction: column;
        align-items: flex-start;
      }

      .header h2 {
        margin-bottom: 10px;
      }
    }
    .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-btn {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 14px;
}

.product-carousel {
  position: relative;
}

.arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 18px;
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.arrow.left {
  left: -15px;
}

.arrow.right {
  right: -15px;
}

.products {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.product-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-width: 250px;
  flex: 0 0 auto;
  padding: 15px;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-info .category {
  font-size: 12px;
  color: #888;
}

.product-info .title {
  font-size: 16px;
  font-weight: bold;
}

.rating span {
  color: #ffbb00;
  font-size: 14px;
}

.price-add {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 16px;
  font-weight: bold;
}

.add-btn {
  background-color: #3246ff;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Scrollbar hide */
.products::-webkit-scrollbar {
  display: none;
}
.products {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Media Queries */
@media (max-width: 768px) {
  .products {
    gap: 15px;
  }

  .product-card {
    min-width: 220px;
  }

  .header h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .categories {
    flex-direction: column;
    gap: 8px;
  }

  .arrow.left, .arrow.right {
    display: none;
  }

  .product-card {
    min-width: 180px;
  }

  .price-add {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.featured-section {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.featured-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

.view-all {
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
}

.categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.category {
  border: none;
  background: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.category.active,
.category:hover {
  background: #0a66c2;
  color: #fff;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  min-width: 250px;
  flex-shrink: 0;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.card-body {
  padding: 1rem;
  position: relative;
}

.card-body .tag {
  color: #666;
  font-size: 0.9rem;
}

.card-body h3 {
  margin: 0.3rem 0;
  font-size: 1.1rem;
}

.rating {
  color: #ffa500;
}

.price {
  font-weight: 600;
  margin-top: 0.3rem;
}

.add-btn {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: #0a66c2;
  border: none;
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.add-btn:hover {
  background: #004b99;
}

.slider-btn {
  border: none;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #0a66c2;
  color: #fff;
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .slider-container {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-all {
    margin-top: 0.5rem;
  }

  .slider {
    gap: 0.8rem;
  }

  .card {
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem;
  }

  .card {
    min-width: 170px;
  }

  .add-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }
}
     footer {
      background-color: #000E43;
      color: white;
      overflow-x: hidden;
    }

    /* Corner line animation */
    .corner-line {
      position: absolute;
      background: linear-gradient(90deg, transparent, white, transparent);
      opacity: 0.8;
      border-radius: 2px;
      animation: drawLine 2s ease forwards;
    }

    /* Top-left */
    .top-left-h {
      top: 0;
      left: 0;
      height: 2px;
      width: 0;
      animation-delay: 0.2s;
    }

    .top-left-v {
      top: 0;
      left: 0;
      width: 2px;
      height: 0;
      animation-delay: 0.6s;
    }

    /* Top-right */
    .top-right-h {
      top: 0;
      right: 0;
      height: 2px;
      width: 0;
      animation-delay: 0.4s;
    }

    .top-right-v {
      top: 0;
      right: 0;
      width: 2px;
      height: 0;
      animation-delay: 0.8s;
    }

    /* Bottom-left */
    .bottom-left-h {
      bottom: 0;
      left: 0;
      height: 2px;
      width: 0;
      animation-delay: 1s;
    }

    .bottom-left-v {
      bottom: 0;
      left: 0;
      width: 2px;
      height: 0;
      animation-delay: 1.4s;
    }

    /* Bottom-right */
    .bottom-right-h {
      bottom: 0;
      right: 0;
      height: 2px;
      width: 0;
      animation-delay: 1.2s;
    }

    .bottom-right-v {
      bottom: 0;
      right: 0;
      width: 2px;
      height: 0;
      animation-delay: 1.6s;
    }

    @keyframes drawLine {
      0% {
        width: 0;
        height: 0;
        opacity: 0;
      }
      30% {
        opacity: 1;
      }
      100% {
        width: 120px;
        height: 120px;
        opacity: 1;
      }
    }
    .scrollbar-hide::-webkit-scrollbar { display: none; }
    .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

    .font_size {
        font-size: large;
    }
    i.fa-solid, i.fa-regular, i.fa-brands {
  font-style: normal !important;
  font-weight: 900 !important;
  font-family: "Font Awesome 6 Free" !important;
}
    