/*=============+++++++ GLOBAL STYLING +++++++============== */

/* ============================================================
   RESET & ROOT
============================================================ */
:root{
  --cream:#FAF7F2; --warm:#FDF9F4; --sand:#E8DDD0;
  --taupe:#C4A882; --bark:#8B6347; --deep:#1C1410;
  --green:#3D6B4F; --sage:#8FAF8A; --lsage:#EAF2E8;
  --rose:#C4736A; --gold:#C8A84B;
  --sh:rgba(28,20,16,.08);
  --nav-h:64px;
}


*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}





/*=============+++++++ GENERAL TOOLTIP +++++++============== */


/* ============= Whatsapp Button Section ============== */

.whatsapp-button {
  position: fixed;
  left: 20px;
  bottom: 30px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 25px;
  animation: bounce 2s infinite ease-in-out;
}

/* Bouncing Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .whatsapp-button {
    width: 50px;
    height: 50px;
    left: 15px;
    bottom: 30px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}


/* ========== Back To Top ============ */
.back-to-top {
  position: fixed;
  display: none;          /* hidden by default */
  right: 30px;
  bottom: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  background: var(--bark);    /* accent color */
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: var(--gold);    /* darker shade on hover */
  color: var(--deep);
  transform: translateY(-5px);
}

.back-to-top i {
  animation: bounce 2s infinite ease-in-out;
}

/* Bouncing Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ========== Section Title ============ */
.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}





/*=============+++++++ HERO SECTION +++++++============== */

/* Fullscreen Carousel Images */
.carousel-item img {
  width: 100%;              /* Always span full width */
  height: 100vh;            /* Full viewport height */
  object-fit: cover;        /* Scale image proportionally, crop if needed */
  object-position: center;  /* Center the image focus */
}




/*=============+++++++ ABOUT SECTION +++++++============== */

.about-section {
  background: #f9f9f9;
}

.about-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.about-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.about-section i {
  color: #00bcd4; /* Accent color */
  transition: transform 0.3s ease;
}

.about-section i:hover {
  transform: scale(1.2);
}

.about-section h6 {
  font-weight: 600;
  color: #333;
}







/* Container: side-by-side layout */
.about-container {
  display: flex;
  flex-wrap: wrap;        /* allows stacking on small screens */
  align-items: center;    /* vertical alignment */
  gap: 2rem;              /* spacing between left and right */
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Left side image */
.about-left {
  flex: 1 1 45%;          /* takes ~45% width, flexible */
}
.about-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Right side text */
.about-right {
  flex: 1 1 45%;          /* takes ~45% width, flexible */
}
.about-right h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.about-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Icons grid using flexbox */
.about-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.about-icons div {
  flex: 1 1 40%;          /* two per row */
  text-align: center;
}
.about-icons i {
  color: #00bcd4;
  transition: transform 0.3s ease;
  margin-bottom: 0.5rem;
}
.about-icons i:hover {
  transform: scale(1.2);
}
.about-icons h6 {
  font-weight: 600;
  color: #333;
}





/* ++++++++++++++++++++++ ABOUT VIDEO Start ++++++++++++++++++++ */
  
.video-header {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}

.video-gallery {
  display: grid;
  /* Force 4 columns max on large screens */
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 2rem 0 2rem;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }
}

.video-gallery video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #000;
}

/* Responsive heading */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 1.2rem;
  }
}


/*=============+++++++ CART SECTION +++++++============== */


h2 {
  font-weight: 600;
}

.cart-table th {
  font-weight: 500;
}

.cart-table td {
  vertical-align: middle;
}

.card {
  border-radius: 12px;
}

.card-body span {
  font-size: 16px;
}

.btn {
  border-radius: 8px;
}

.img-thumbnail {
  border-radius: 8px;
}
.checkout-btn{
  background-color: var(--rose);
  /* border: 7px solid; */
}



/*=============+++++++ CHECKOUT SECTION +++++++============== */

/* Container moved down with 120px margin-top */
.checkout-container {
  max-width: 500px;
  width: 90%;
  margin: 120px auto 60px; 
  padding: 40px;
  background: #fff;
  border-radius: 2px; /* Matching the minimalist sharp/slight edge of the product page */
  box-shadow: 0 10px 30px var(--sh);
  border: 1px solid var(--sand);
}

/* Elegant Title */
.checkout-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
  color: var(--deep);
  letter-spacing: -0.02em;
}

/* Form Styling */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Inputs styled like the product page UI */
.checkout-form input,
.checkout-form select {
  padding: 14px 16px;
  border: 1px solid var(--sand);
  border-radius: 0; /* Boxy aesthetic from Lumière */
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  background: var(--warm);
  transition: all 0.3s ease;
}

.checkout-form input:focus {
  border-color: var(--taupe);
  background: #fff;
}

/* Buttons using the 'Bark' / 'Deep' color scheme from your product page */
.checkout-btn {
  margin-top: 10px;
  padding: 16px;
  border: none;
  background: var(--deep);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.checkout-btn:hover {
  opacity: 0.9;
}

/* Small label styling */
.checkout-form label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: -15px;
  color: var(--bark);
  font-weight: 600;
}


/*=============+++++++ ABOUT SECTION +++++++============== */
/*=============+++++++ ABOUT SECTION +++++++============== */
/*=============+++++++ ABOUT SECTION +++++++============== */


/*=============+++++++ CONTACT SECTION +++++++============== */
.contact-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  /* padding: 10px 20px; */
  padding-top: 15px;
  padding-bottom: 0px;
  padding-right: 20px;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.contact-box:hover {
  border-color: var(--rose);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-box div a{
  text-decoration: none;
  color: var(--rose);
}

.contact-icon {
  font-size: 24px;
  color: var(--rose);
  margin-right: 15px;
}

.map-container {
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
}

/* ==================== Call To Action ================== */
.call-container{
  margin-top: -3rem;
}

.contact_email{
  display: none;
  background-color: var(--bark);
}
.contact_button{
  cursor: pointer;
}
.btn-phone, .btn-email{
  border: 1px solid black;
  border-radius: 10px;
  width: 50px;
  height: 50px;
}
.call-btn button{
  cursor: pointer;
  border: none;
  background-color: var(--taupe);
}
.call-btn a{
  cursor: pointer;
  text-decoration: none;
  color: var(--cream);
  border: none;
  background-color: var(--rose);
}

@media (max-width: 760px){
.call-btn button{
  margin-top: 1.5rem;
  border: none;
}
.call-btn a{
  color: var(--cream);
}
}


/*=============+++++++ FAQ SECTION +++++++============== */

.faq .faq-sidebar {
  position: sticky;
  top: 100px;
}

.faq .faq-sidebar .faq-image {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.faq .faq-sidebar .faq-image img {
  transition: transform 0.5s ease;
}

.faq .faq-sidebar .faq-image img:hover {
  transform: scale(1.04);
}

.faq .faq-sidebar .faq-contact-box {
  background-color: color-mix(in srgb, var(--rose), transparent 90%);
  border-radius: 14px;
  padding: 30px;
}

.faq .faq-sidebar .faq-contact-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq .faq-sidebar .faq-contact-box h3 i {
  font-size: 24px;
  color: var(--primary);
}

.faq .faq-sidebar .faq-contact-box p {
  margin-bottom: 20px;
  font-size: 15px;
  color: color-mix(in srgb, var(--dark), transparent 15%);
}

.faq .faq-sidebar .faq-contact-box .btn-contact {
  display: inline-block;
  background-color: var(--rose);
  color: var(--cream);
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.faq .faq-sidebar .faq-contact-box .btn-contact:hover {
  background-color: color-mix(in srgb, var(--deep), transparent 20%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--primary), transparent 70%);
}

.faq .faq-tabs .nav-pills {
  gap: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--bark), transparent 90%);
  padding-bottom: 15px;
}

.faq .faq-tabs .nav-pills .nav-link {
  background: transparent;
  color: color-mix(in srgb, var(--bark), transparent 30%);
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.faq .faq-tabs .nav-pills .nav-link.active {
  background-color: var(--rose);
  color: var(--cream);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--rose), transparent 70%);
}

.faq .faq-tabs .nav-pills .nav-link:hover:not(.active) {
  background-color: color-mix(in srgb, var(--bark), transparent 95%);
  color: var(--bark);
}

.faq .faq-tabs .tab-content {
  padding-top: 25px;
}

.faq .faq-item {
  position: relative;
  margin-bottom: 20px;
  background-color: var(--cream);
  border-radius: 14px;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--deep), transparent 70%);
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--dark), transparent 92%);
}

.faq .faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  padding-right: 35px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  color: color-mix(in srgb, var(--dark), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq .faq-item.faq-active {
  background-color: color-mix(in srgb, var(--white), var(--primary) 3%);
}

.faq .faq-item.faq-active h3 {
  color: var(--primary);
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .faq .faq-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .faq .faq-sidebar faq.contact-box {
    text-align: center;
  }

  .faq .faq-tabs .nav-pills {
    flex-wrap: wrap;
  }

  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 30%;
  }

  .faq .faq-tabs .nav-pills .nav-link {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .faq .faq-tabs .nav-pills .nav-item {
    flex: 1 0 100%;
  }

  .faq .faq-item {
    padding: 20px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
  }
}





/*=============+++++++ CHECKOUT SECTION +++++++============== */
/*=============+++++++ PRODUCT SECTION +++++++============== */


/*=============+++++++ FEATURE ITEMS SECTION +++++++============== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-btn{
  border: 1px solid transparent;
  background-color: var(--taupe);
  color: var(--cream);
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  margin-top: 2rem;
  cursor: pointer;
}
.feature-btn:hover{
  color: var(--lsage);
  background-color: var(--bark);
  transition: background .5s ease;
}

.card-body {
  padding: 15px;
  margin-bottom: 2rem;
  /* margin-top: 2rem; */
  text-align: center;
}

.card-body h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #222;
}

.card-body p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}


/*=============+++++++ FEATURE PRODUCTS SECTION +++++++============== */











/*=============+++++++ FOOTER +++++++============== */
.site-footer {
  background: #111;
  color: #f1f1f1;
  padding: 40px 20px;
  width: 100%;
}

/* Content Layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;           /* Responsive stacking */
  justify-content: space-between;
  max-width: 1200px;         /* Center content */
  margin: 0 auto;
}

/* Sections */
.footer-section {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-section h2 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #00bcd4;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00bcd4;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;              /* circle size */
  height: 40px;
  border-radius: 50%;       /* makes it round */
  background-color: #333;   /* default background */
  color: #fff;              /* icon color */
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  transform: scale(1.1);    /* slight zoom on hover */
  background-color: #007bff; /* default hover color (Bootstrap primary) */
  color: #fff;
}

/* Optional: brand-specific hover colors */
.footer-social a.facebook:hover { background-color: #3b5998; }
.footer-social a.twitter:hover { background-color: #1da1f2; }
.footer-social a.instagram:hover { background-color: #e4405f; }
.footer-social a.linkedin:hover { background-color: #0077b5; }


/* Bottom Bar */
/* .footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
} */



