/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-family: 'Inter', system-ui, sans-serif;
    font-feature-settings: "liga" 1, "calt" 1;
    font-optical-sizing: auto;
}

h1, h2, h3 {
    font-weight: 600;
}

p, li, a {
    font-weight: 600;
    line-height: 1.6;
}

/*
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
html {
    font-family: 'Inter', system-ui, sans-serif;
}
*/
#heroCarousel {
  margin-top: 56px;
  width: 100%;
  overflow: hidden;
}

#heroCarousel .carousel-inner,
#heroCarousel .item,
#heroCarousel .hero-slide {
  height: 70vh;
  min-height: 420px;
  max-height: 760px;
}

#heroCarousel .hero-slide {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#heroCarousel .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

#heroCarousel .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

#heroCarousel .hero-content {
  max-width: 900px;
  color: #fff;
  z-index: 2;
}

#heroCarousel .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

#heroCarousel .hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

#heroCarousel .btn {
  margin: 5px;
}

#heroCarousel .hero-text-slide {
  background: linear-gradient(135deg, #1f1f1f, #4a4a4a);
}

#heroCarousel .carousel-indicators {
  bottom: 20px;
}

#heroCarousel .carousel-control.left,
#heroCarousel .carousel-control.right {
  background-image: none;
}

@media (max-width: 991px) {
  #heroCarousel .carousel-inner,
  #heroCarousel .item,
  #heroCarousel .hero-slide {
    height: 55vh;
    min-height: 360px;
  }

  #heroCarousel .hero-content h1 {
    font-size: 2.2rem;
  }

  #heroCarousel .hero-content .lead {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  #heroCarousel {
    margin-top: 50px;
  }

  #heroCarousel .carousel-inner,
  #heroCarousel .item,
  #heroCarousel .hero-slide {
    height: 420px;
    min-height: 420px;
  }

  #heroCarousel .hero-content h1 {
    font-size: 1.8rem;
  }

  #heroCarousel .hero-content .lead {
    font-size: 1rem;
  }
}

#heroCarousel.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

#heroCarousel.carousel-fade .carousel-item.active,
#heroCarousel.carousel-fade .carousel-item-next.carousel-item-left,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

#heroCarousel.carousel-fade .carousel-item-next,
#heroCarousel.carousel-fade .carousel-item-prev,
#heroCarousel.carousel-fade .carousel-item.active.carousel-item-left,
#heroCarousel.carousel-fade .carousel-item.active.carousel-item-right {
  transform: translateX(0);
}
/* slow fade */ 
#heroCarousel.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}
/* image zoom */ 
.hero-image-slide {
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s ease;
}

.carousel-item.active .hero-image-slide {
  transform: scale(1.05);
}
/* fade text in */ .hero-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.carousel-item.active .hero-content {
  opacity: 1;
  transform: translateY(0);
}
/* responsive */ 
#heroCarousel {
  width: 100%;
  overflow: hidden;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item,
#heroCarousel .hero-slide {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 760px;
}

#heroCarousel .hero-video-slide,
#heroCarousel .hero-image-slide,
#heroCarousel .hero-text-slide {
  position: relative;
  overflow: hidden;
}

#heroCarousel .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

#heroCarousel .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

#heroCarousel .hero-content {
  max-width: 900px;
  color: #fff;
}

#heroCarousel .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

#heroCarousel .hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 1199.98px) {
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item,
  #heroCarousel .hero-slide {
    height: 60vh;
    min-height: 380px;
  }

  #heroCarousel .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item,
  #heroCarousel .hero-slide {
    height: 50vh;
    min-height: 320px;
  }

  #heroCarousel .hero-content h1 {
    font-size: 2rem;
  }

  #heroCarousel .hero-content .lead {
    font-size: 1.05rem;
  }
}
/* responsive breakpoints */ 
@media (max-width: 767.98px) {
  #heroCarousel .carousel-inner,
  #heroCarousel .carousel-item,
  #heroCarousel .hero-slide {
    height: 420px;
    min-height: 420px;
    max-height: 420px;
  }

  #heroCarousel .hero-overlay {
    padding: 1.25rem;
  }

  #heroCarousel .hero-content h1 {
    font-size: 1.6rem;
  }

  #heroCarousel .hero-content .lead {
    font-size: 0.95rem;
  }

  #heroCarousel .btn {
    display: inline-block;
    margin-top: 0.5rem;
  }
}
/* product card circle effect */ 
.centerBoxContents img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
}
/* test effect */ 
.centerBoxContents img {
  border: 5px solid #13607c !important;
  border-radius: 50% !important;
}

#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card > a:first-child > img,
#featuredProducts .centerBoxContents.card > a:first-child > img {
  width: 140px !important;
  height: 140px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto 12px !important;
  border: 5px solid #13607c !important;	
}
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 1rem;
}

.header-nav-logo {
  max-height: 56px;
  width: auto;
  height: auto;
  display: block;
}

@media (max-width: 767.98px) {
  .header-nav-logo {
    max-height: 42px;
  }
}
/* Fixed navbar offset for non-home pages */
body:not(#indexHomeBody) #mainWrapper {
  padding-top: 70px;
}

/* Keep homepage hero tight to the navbar */
#indexHomeBody #mainWrapper {
  padding-top: 0;
}
/* card css effects */
.centerBoxContents {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.centerBoxContents:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.centerBoxContents img {
  transition: transform 0.4s ease;
}

.centerBoxContents:hover img {
  transform: scale(1.08);
}
/* Featured product card polish */
#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card {
  border-radius: 14px;
  overflow: hidden;
  padding: 1.25rem !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Keep all cards visually aligned */
#featuredProducts .card-deck {
  align-items: stretch;
}

#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card > a:first-of-type {
  display: block;
  margin-bottom: 0.85rem;
}

#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card > a:not(:first-of-type) {
  display: block;
  min-height: 3.8em;
  line-height: 1.35;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

/* Price highlight */
#featuredProducts .productBasePrice {
  display: inline-block;
  margin-top: auto;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #13607c;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 10px rgba(19, 96, 124, 0.18);
}

/* Optional stronger hover on price */
#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card:hover .productBasePrice {
  background: #0f4f66;
}

/* Better title rhythm */
#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card br {
  display: none;
}
#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  border: 1px solid rgba(19, 96, 124, 0.08);
}

#featuredProducts .centerBoxContentsFeatured.centerBoxContents.card:hover {
  border-color: rgba(19, 96, 124, 0.2);
}
/* Product attributes enhanced typography */
#attributes-card-header {
    font-size: 1rem;
}

.optionName {
    font-size: 1rem;
}