@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

/* ROOT VARIABLES */
:root {
  --primary-color: #e6d5c3;
  --secondary-color: #7a1e2b;
  --dark-color: #1a1a1a;
  --white-color: #fff;
  --text-color: #e6d5c3;
  --text-black: #1a1a1a;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-64: 64px;
  --fs-18: 18px;
  --fs-44: 44px;
  --fs-24: 24px;
  --fs-22: 22px;
  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;
  --Playfair-Display: "Playfair Display";
  --Poppins: "Poppins";
}

html,
body {
  height: 100%;
  width: 100%;
  font-style: var(--Playfair-Display);
}

/* --- WhatsApp Floating Button Styling --- */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: var(--primary-color);
  /* Swap colors on hover */
  color: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(122, 30, 43, 0.8);
  transform: scale(1.05);
}

.whatsapp-float i {
  font-size: 32px;
}

@media (max-width: 767.98px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
  }
}

/*! Nav */
.nav-link {
  color: var(--primary-color);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: var(--fw-500);
}

.navbar-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.navbar-nav {
  gap: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  /* Keep the color the same as the default color */
  color: #e6cdb3 !important;
  /* Also remove any default text decoration (like an underline) if it appears */
  text-decoration: none;
  /* You might also want to set a background color to 'transparent' if a block of color appears */
  background-color: transparent;
}

@media (min-width: 992px) {
  .navbar {
    min-height: 100px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(5px);
  }

  .navbar .navbar-nav-left,
  .navbar .navbar-nav-right {
    flex-direction: row;
    align-items: center;
  }

  .navbar-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
  }
}

@media (max-width: 991.98px) {
  .navbar-logo-center {
    display: none;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  /* FIX: Mobile Logo (Make sure it's visible and center the offcanvas content later) */
  .navbar-brand-main.d-lg-none {
    margin-left: 0;
    margin-right: auto;
    display: none !important;
  }
}

/* Offcanvas should only be visible when toggled, but the class remains important */
/* .offcanvas {
  display: none !important;
} */

@media (max-width: 991.98px) {
  .navbar-logo-center {
    display: none;
  }
}

/*? Nav */

/*! Product */

.gallery-head {
  margin-bottom: 2rem;
  margin-top: 87px;
}

.gh-title {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--Playfair-Display);
  font-weight: var(--fw-700);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.2;
  color: var(--secondary-color);
}

.gh-text {
  display: inline-block;
  padding: 0 0.25rem;
  letter-spacing: 0.5px;
  font-style: italic;
}

.gh-line {
  height: 3px;
  width: clamp(50px, 10vw, 100px);
  background: var(--secondary-color);
  border-radius: 2px;
}

.gh-sub {
  margin: 0.5rem 0 0 0;
  font-family: var(--Poppins);
  font-weight: var(--fw-500);
  font-size: var(--fs-18);
  letter-spacing: 0.3px;
  color: var(--dark-color);
}

.product-list-sec {
  background: var(--primary-color);
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Product Card Container */
.product-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  background: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

/* Image Area */
.product-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-main-img,
.product-hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease;
}

/* Initially hide the hover image */
.product-hover-img {
  opacity: 0;
  transform: scale(1.05);
}

/* Hover Effect: Show Model Image */
.product-card:hover .product-main-img {
  opacity: 0;
}

.product-card:hover .product-hover-img {
  opacity: 1;
  transform: scale(1);
}

.product-info-overlay {
  padding: 20px 15px;
  text-align: center;
  background-color: var(--white-color);
  min-height: 100px;
}

.product-card:hover .product-info-overlay {
  background-color: var(--secondary-color);
}

.product-name {
  font-family: var(--Playfair-Display);
  font-weight: var(--fw-700);
  color: var(--secondary-color);
  margin-bottom: 3px;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 2.2;
  height: 2.4em;
  font-size: 22px;
}

.product-desc {
  font-family: var(--Poppins);
  font-size: 14px;
  color: var(--dark-color);
  margin-bottom: 5px;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.4;
  height: 2.8em;
  text-transform: capitalize;
}

.product-price {
  font-family: var(--Poppins);
  font-weight: var(--fw-600);
  font-size: 18px;
  color: var(--secondary-color);
  margin-top: 8px;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.product-card:hover .product-price {
  color: var(--white-color);
}

/* Adjusting the info box height to accommodate the price */
.product-info-overlay {
  min-height: 130px;
  /* Increased from 100px */
}

.product-card:hover .product-name {
  color: var(--primary-color);
}

.product-card:hover .product-desc {
  color: var(--white-color);
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
  .col-lg-3 {
    width: 50%;
  }
}

@media (max-width: 575.98px) {
  .col-lg-3 {
    width: 100%;
  }
}

/*? Product */

/* --- Central Divide Minimalist Footer Styling --- */

.main-footer.central-divide-style {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 30px 0;
  position: relative;
}

/* 1. Logo (Centerpiece) */

.logo-divide-col {
  position: relative;
}

.logo-divide-col::before,
.logo-divide-col::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 50px);
  height: 1px;
  background: var(--primary-color);
}

.logo-divide-col::before {
  left: -10px;
}

.logo-divide-col::after {
  right: -10px;
}

.brand-logo-divide {
  max-width: 150px;
  height: auto;
  /*! filter: drop-shadow(0 0 4px rgba(230, 213, 195, 0.6)); */
  z-index: 2;
  display: block;
}

/* 2. Contact Details (Left) */
.contact-title-divide {
  font-family: var(--Playfair-Display);
  font-weight: var(--fw-700);
  font-size: var(--fs-18);
  color: var(--white-color);
  margin-bottom: 0.5rem;
}

.contact-divide p {
  font-family: var(--Poppins);
  font-size: var(--fs-15);
  margin: 0.2rem 0;
}

.contact-divide i {
  margin-right: 6px;
  font-size: var(--fs-16);
  color: var(--primary-color);
}

.contact-divide a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--fw-400);
  transition: color 0.3s ease;
}

.contact-divide a:hover {
  color: var(--white-color);
}

/* 3. Links and Copyright (Right) */
.footer-divide-nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-family: var(--Poppins);
  font-weight: var(--fw-500);
  font-size: var(--fs-15);
  padding: 0 8px;
  transition: color 0.3s ease;
}

.footer-divide-nav a:hover {
  color: var(--white-color);
}

.sep-divide {
  color: var(--primary-color);
  opacity: 0.4;
  font-size: 14px;
}

.copyright-divide {
  font-family: var(--Poppins);
  font-size: var(--fs-14);
  opacity: 0.6;
  margin-top: 5px;
}

/* Mobile Adjustments */
@media (max-width: 767.98px) {
  .main-footer.central-divide-style {
    padding: 20px 0 25px 0;
  }

  .contact-divide,
  .link-divide {
    text-align: center !important;
  }

  .logo-divide-col {
    order: -1;
    /* Logo moves to the top */
    margin-bottom: 1.5rem;
  }

  .logo-divide-col::before,
  .logo-divide-col::after {
    display: none;
  }

  .footer-divide-nav {
    margin-top: 1rem;
  }
}
