* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* prevents horizontal scroll */
  width: 100%;
}

.navbar-custom {
  background-color: white;
  padding: 1rem 2rem;
}

.nav-link {
  font-weight: 500;
  color: #000;
}

.nav-link:hover {
  color: #007bff;
}

.support-btn {
  background-color: #007bce;
  color: white;
  border-radius: 30px;
  padding: 8px 24px;
  font-weight: bold;
  transition: 0.3s;
}

.cancel-btn {
  border-radius: 30px;
  padding: 8px 24px;
}

.cart-btn {
  border: 1px solid;
  padding: 8px 24px;
  border-radius: 30px;
  color: #007bce;
  border-color: #007bce;
  background-color: #ffffff;
}
.cart-btn:hover {
  color: #ffffff;
  border-color: #007bce;
  background-color: #007bce;
}

.cart-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* cursor: pointer; */
  width: 13rem;
  border: 1px solid;
  padding: 8px 24px;
  border-radius: 30px;
  border-color: #007bce;
  background-color: #ffffff;
}
.continue-btn:hover {
  background-color: #007bce;
  color: #ffffff;
}
.continue-btn {
  background-color: #ffffff;
  color: #007bce;
  border-radius: 30px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: 1px solid;
  border-color: #007bce;
}

.qty-btn {
  flex: 0 0 auto; /* don’t let +/- grow or shrink */
  border: 1px;
  background-color: #d6d9ddbe;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}

.qty-count {
  flex: 1;
  text-align: center;
}

.btn-outline-primary {
  color: #007bce;
  border-color: #007bce;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bce;
  border-color: #007bce;
}

.support-btn:hover {
  background-color: #005fa3;
}

.navbar-brand img {
  height: 50px;
}

.btn-primary {
  background-color: #0056b3;
  color: white;
}

.btn-primary:hover {
  background-color: #003d80;
}

.btn-secondary {
  background-color: #28a745;
  color: white;
}

.btn-secondary:hover {
  background-color: #1e7e34;
}

.hero-section {
  width: 100%; /* ✅ This avoids horizontal scrolling issues */
  padding: 120px 20px 80px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #121212, #000000);
  color: #fff;
  margin: 0;
}
.hero-content.container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100% !important;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.btn-custom {
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.btn-custom:hover {
  transform: scale(1.05);
}

.hero-buttons {
  margin-top: 30px;
}

.hero-buttons .btn {
  display: inline-block;
  padding: 12px 24px;
  margin: 10px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.solutions {
  margin-top: 4rem;
}

.solutions h3 {
  font-weight: 600;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 2rem;
}

.solution-icons {
  transition: all 0.3s ease;
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.solution-icons:hover {
  background: #232323;
  transform: translateY(-5px);
}

.solution-icons i {
  font-size: 2.2rem;
  color: #0d6efd;
  margin-bottom: 0.6rem;
}

.solution-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #e6e6e6;
}

.card.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card.product-card img {
  transition: 0.3s ease;
}

.cart {
  color: #005fa3 !important;
}

.cart-wish {
  position: fixed;
  top: 2rem;
  right: 13rem; /* Was 1.5rem, now pushed further left */
  z-index: 1050;
}

.chat-link:hover {
  transform: translateX(5px);
}

/* accordion css */
/* Accordion container spacing */
.accordion-item {
  border: none;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
  overflow: hidden;
}

/* Header button base style */
.accordion-button {
  background-color: transparent;
  color: #333;
  padding-left: 2.5rem;
  position: relative;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s;
}

/* Remove the default expanded background and color change */
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #333;
  box-shadow: none;
}

/* Arrow icon to the left */
.accordion-button::after {
  position: absolute;
  left: 1rem;
  right: auto;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}

/* Accordion body */
.accordion-body {
  padding: 1rem 2rem;
  color: #555;
  background-color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Remove focus outline */
.accordion-button:focus {
  box-shadow: none;
}

.bookin-btn {
  background: #ffff;
  color: #000;
  border-radius: 30px;
  font-weight: bold;
}

.btn {
  border-radius: 30px !important;
}

.product-thumbnail:hover {
  border-color: #007bce !important;
  transition: border 0.2s;
}

.listing-img {
  width: 100%;
  height: 200px; /* adjust to how much space image should take in card */
  object-fit: contain; /* shows the whole image, might leave whitespace */
  padding: 10px; /* optional, for breathing room */
  background: #f8f9fa; /* light gray background to highlight transparency */
}

.bg-primary {
  background-color: #007bce !important;
  color: white;
}

.footer-link {
  color: white;
  text-decoration: none;
}
.copyright {
  margin-top: 30px;
  border-top: 1px solid white;
  padding-top: 10px;
  font-size: 14px;
}

footer {
  background-color: #0071c5;
  color: white;
  padding: 40px 20px 10px;
}
.footer-box {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-img {
  text-align: center;
  margin-bottom: 20px;
  margin-right: 8px;
  margin-top: 15px;
}

.footer-items {
  flex: 1 1 150px;
  min-width: 150px;
  margin-bottom: 20px;
}

.footer-ul {
  list-style: none;
  padding: 0;
}
.footer-h4 {
  font-weight: bold;
}
