@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  background: var(--light);
  font-family: "Roboto", sans-serif;
}

/* HEADER */
.profile-btn {
  border: 1px solid var(--border);
}

.hero-slider {
  position: relative;
  margin-top: 55px;
}

.hero-img {
  height: 800px;
  object-fit: cover;
}

/* DARK GRADIENT OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.05)
  );
  color: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 11%;
}

.hero-overlay h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 20px;
}
.hero-overlay a{
width: max-content;
}

/* CUSTOM ARROWS */
.custom-arrow {
  width: 45px;
  height: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border-radius: 50%;
  opacity: 1;
}
.carousel-control-prev-icon {
    width: 30px;
}
.carousel-control-next-icon {
    width: 30px;
}
.custom-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}


/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-header p {
  color: #6b7280;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 30px 0 60px;
}

.products-section .section-header {
  color: var(--dark);
}

/* CARD */
.product-card {
  background: var(--light);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-img {
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

/* INFO */
.product-info {
  padding: 14px 14px 18px;
  background: var(--light);
  border-top: 1px solid var(--light);
}

/* ACTION BUTTONS */
.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions .btn {
  flex: 1;
  border-radius: 24px;
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 500;
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--greenwtsp);
  color: var(--light);
  border: none;
}

.btn-whatsapp:hover {
  background: var(--light);
  border: 1px solid var(--greenwtsp);
  color: var(--dark);
}

/* Save */
.btn-save {
  border: 1px solid var(--dark);
  color: var(--dark);
  background: var(--light);
}

.btn-save:hover {
  background: var(--dark);
  color: var(--light);
}


@media (max-width: 576px) {

  /* HEADER */
  .navbar {
    padding: 12px !important;
  }

  .navbar-brand {
    font-size: 18px;
  }

  .profile-btn {
    font-size: 14px;
    padding: 6px 10px;
  }

  /* HERO */
  .hero-img {
    height: 420px;
  }

  .hero-overlay {
    padding-left: 6%;
    padding-right: 6%;
    text-align: left;
  }

  .hero-overlay h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-overlay p {
    font-size: 14px;
  }

  .hero-overlay a {
    font-size: 14px;
    padding: 8px 16px;
  }

  /* HERO ARROWS */
  .custom-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }

  /* CATEGORY */
  .category-box {
    flex-direction: column;
    padding: 16px;
    gap: 10px;
  }

  .category-box img {
    width: 60%;
  }

  .category-box span {
    font-size: 16px;
  }

  /* PRODUCT */
  .product-img img {
    height: 200px;
  }

  .product-actions {
    /* flex-direction: column; */
  }

  .product-actions .btn {
    font-size: 13px;
    padding: 8px;
  }
}
@media (max-width: 768px) {

  /* HERO */
  .hero-img {
    height: 550px;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .hero-overlay p {
    font-size: 16px;
  }

  /* CATEGORY */
  .category-box {
    padding: 18px;
  }

  .category-box span {
    font-size: 18px;
  }
}
@media (max-width: 992px) {

  .hero-img {
    height: 650px;
  }

  .hero-overlay {
    padding-left:15%;
  }

  .hero-overlay h1 {
    font-size: 36px;
  }
  
}

#categoryCarousel .carousel-inner {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 20%;
  gap: 16px;
  transition: transform 0.6s ease-in-out;
}

#categoryCarousel .carousel-item {
  display: block;
}



@media (min-width: 1200px) {
  #categoryCarousel .carousel-inner {
    grid-auto-columns: 20%;
  }
}

/* LAPTOP: 4 ITEMS */
@media (max-width: 1199px) {
  #categoryCarousel .carousel-inner {
    grid-auto-columns: 25%;
  }
}

/* TABLET: 3 ITEMS */
@media (max-width: 991px) {
  #categoryCarousel .carousel-inner {
    grid-auto-columns: 33.33%;
  }
}

/* MOBILE: 1 ITEM */
@media (max-width: 576px) {
  #categoryCarousel .carousel-inner {
    grid-auto-columns: 100%;
  }

  .category-box {
    margin: auto;
  }
}

/* MOBILE: 1 ITEM CENTER */
@media (max-width: 576px) {
  #categoryCarousel .carousel-item > div {
    flex-wrap: nowrap;
  }
    .hero-img {
        height: 350px;
    }
  
}



.categories-section {
  padding: 60px 0;
  background: var(--light);
}

/* CATEGORY CARD */
.category-box {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
  display: flex;
  padding: 20px;
  gap: 15px;
  align-items: center;
      justify-content: center;
  flex: 0 0 auto;
  transition: all 0.4s ease;
}
.category-heading h2{
    color: var(--dark);
}
.category-box img {
      width: 40% !important;
    border-radius: 50%;
  object-fit: cover;
}
i.bi.bi-chevron-left {
    color: var(--light);
}
i.bi.bi-chevron-right{
    color: var(--light);
}
.category-box span {
  font-size: 18px;
  font-weight: 600;
  display: block;
}

/* HOVER ANIMATION */
.category-box:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* OWL NAV */
.owl-nav button {
  position: absolute;
  top: 40%;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.6) !important;
  border-radius: 50% !important;
}

.owl-nav button span {
  font-size: 28px;
  color: var(--light);
}

.owl-nav .owl-prev {
  left: -20px;
  top: 40px;
}

.owl-nav .owl-next {
  right: -20px;
  top: 40px;
}
@media (max-width:768px) {
    .owl-nav .owl-prev {
  left: -20px;
  top: 25px;
}

.owl-nav .owl-next {
  right: -20px;
  top: 25px;
}
}
@media (max-width:425px) {
    .owl-nav .owl-prev {
  left: -20px;
  top: 55px;
}

.owl-nav .owl-next {
  right: -20px;
  top: 55px;
}
}
/* DOTS */
.owl-dots .owl-dot span {
  background: #c4c4c4;
}

.owl-dots .owl-dot.active span {
  background: var(--dark);
}
