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

@media (max-width: 767px) {
  .countryCodeClass {
    color: black;
  }
}

/* Slider Wrapper */
.product-slider {
  position: relative;
  max-width: 100%;
}

/* Navigation Buttons (Overlay) */
.nav-buttons {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem 0.7rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 20;
}

.prev-button {
  left: 8px;
}

.next-button {
  right: 8px;
}

/* Cards Container */
.cards-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1rem 15vw; /* KEY: peeking space */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cards-container::-webkit-scrollbar {
  display: none;
}

/* Card */
.single-card {
  flex: 0 0 auto;
  width: 70vw; /* KEY: less than full width on mobile */
  max-width: 300px;
  background: white;
  border-radius: 6px;
  scroll-snap-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
}

/*.single-card:hover {
  transform: translateY(-4px);
}*/

.single-card img {
  width: 100%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.review-weight {
    font-weight: 600;
}

/* Product Info */
.product-info {
  padding: 1rem;
  text-align: center;
}

.product-info h3 {
  font-size: 1rem;
  font-weight: 600;
}

.product-info p {
  font-size: 0.9rem;
  color: #444;
}

/* Desktop tweaks */
@media (min-width: 768px) {
  .cards-container {
    padding: 1rem 3rem;
  }

  .single-card {
    width: 300px;
  }
}


.crayon {
    position: relative;
    display: inline-block;
}

.crayon::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 5px;
    background-image:
    repeating-linear-gradient(-8deg,
        rgba(242, 93, 46, 0.9) 0 8px,
        rgba(242, 93, 46, 0.5) 8px 12px,
        rgba(242, 93, 46, 0.9) 12px 20px);
    filter: url(#wobble);
    transform: translateY(4px);
    border-radius: 2px;
}

/* STAT CARDS STARTS */

.gradient-basic1 {
    display: inline-block;
    /* ensures proper rendering on Safari/iOS */
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    background-clip: text;
    -webkit-background-clip: text;
    /* for WebKit browsers */
    color: transparent;
    /* fallback for non-WebKit */
    -webkit-text-fill-color: transparent;
    /* Safari/iOS */
}

.gradient-basic2 {
    display: inline-block;
    /* ensures proper rendering on Safari/iOS */
    background: linear-gradient(90deg, #0072ff, #e100ff);
    background-clip: text;
    -webkit-background-clip: text;
    /* for WebKit browsers */
    color: transparent;
    /* fallback for non-WebKit */
    -webkit-text-fill-color: transparent;
    /* Safari/iOS */
}

.gradient-basic3 {
    display: inline-block;
    /* ensures proper rendering on Safari/iOS */
    background: linear-gradient(90deg, #06A10B, #0A88B2);
    background-clip: text;
    -webkit-background-clip: text;
    /* for WebKit browsers */
    color: transparent;
    /* fallback for non-WebKit */
    -webkit-text-fill-color: transparent;
    /* Safari/iOS */
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 30px 40px;
    border-radius: 16px;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.stat-label {
    margin-top: 0.75rem;
    font-size: 1.2rem;
    color: #444;
}

@media (max-width: 576px) {
    .stat-number {
        font-size: clamp(3.5rem, 12vw, 4.2rem);
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 24px 20px;
    }
}
/* STAT CARDS ENDS*/

/* ================= REVIEWS ================= */
.review-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  gap: 12px;
  height: 200px;
}

.review-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-content {
  overflow-y: auto;
  font-size: 0.95rem;
}

.review-name {
  font-weight: 600;
}

.review-location {
  font-size: 0.85rem;
  color: #777;
}

.review-stars {
  color: #f4b400;
  margin: 4px 0 6px;
}

/* ================= DESKTOP CAROUSEL ================= */
.carousel-item {
  padding: 10px 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* ================= MOBILE SCROLL ================= */
.carousel-view {
  display: none;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track .review-card {
  min-width: 280px;
  scroll-snap-align: start;
}

/* Fade edges */
.fade-left,
.fade-right {
  position: absolute;
  top: 0;
  width: 40px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* Mobile arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  z-index: 3;
  cursor: pointer;
}

.carousel-btn.left { left: 5px; }
.carousel-btn.right { right: 5px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 767.98px) {
  .desktop-carousel { display: none; }
  .carousel-view { display: block; }
}

/* ================= FIX DESKTOP CAROUSEL ARROWS ================= */

#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
  width: 40px;                /* small, precise hit area */
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#reviewCarousel .carousel-control-prev {
  left: -20px;                /* pull to outer edge */
}

#reviewCarousel .carousel-control-next {
  right: -20px;               /* pull to outer edge */
}

#reviewCarousel .carousel-control-prev-icon,
#reviewCarousel .carousel-control-next-icon {
  background-size: 100% 100%;
  background-color: rgba(0,0,0,0.75);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  filter: none;
}

/* Optional hover effect */
#reviewCarousel .carousel-control-prev-icon:hover,
#reviewCarousel .carousel-control-next-icon:hover {
  background-color: rgba(0,0,0,0.9);
}


/* Fixed size for all blocks */
.how-box {
    height: 260px;
    overflow-y: auto;
    background-color: #f9f9f9;
    border: none;
}

.how-box h5 {
    font-weight: 700;
    margin-bottom: 8px;
    /* Gradient text */
    background: linear-gradient(90deg,  #06A10B, #0A88B2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Optional: fallback color */
    color: #ff6a00;
}
.how-box p{
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 4px;
}

.how-box ul{
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 8px;
}

.how-box li{
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 8px;
    margin-bottom: 0px;
}

