/* ====================== Global & Fonts ====================== */
* {
  font-family: sans-serif;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* ================ Custom Colors =========================== */
:root {
  --color-navbar: #fcf1f1;
  --color-navbarbg: #f8f2f2;
  --color-top-navbar: #9c707f;
  --color-btn: #85676f;
  --color-card: #3db59a;
  --color-shadow: #f8f3f3;
  --color-pro: #ece7e7;
}

/* =================== MARQUEE =================== */
.scrolling-text-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: var(--color-top-navbar);
  padding: 8px 0;
}
.scrolling-text-inner {
  display: flex;
  animation: scroll var(--marquee-speed, 20s) linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scrolling-text {
  display: flex;
  gap: 40px;
  flex: 0 0 auto;
  align-items: center;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}
.scrolling-text-item i {
  color: #ffb400;
  margin: 0 5px;
}
.scrolling-text-container:hover .scrolling-text-inner {
  animation-play-state: paused;
}

/* =================== NAVBAR =================== */
.navbar {
  background-color: var(--color-navbar);
}
.navbar-brand {
  position: relative;
  width: 100px;
  height: 20px;
}
.navbar-brand img {
  position: absolute;
  width: 100%;
  height: 100%;
  
}
.navbar-nav{
  gap: 25px;
}
#mainNavbar .nav-link {
  color: var(--color-top-navbar);
}
#mainNavbar li a:hover {
  color: var(--color-btn);
}
.navbar-nav .nav-link {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
  transform: scale(1.1);
}
.dropdown-menu {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--color-top-navbar);
  border: none;
}
.dropdown-menu li a {
  color: white;
}
.dropdown-menu li:hover a {
  background-color: var(--color-shadow);
  transform: scale(1.1);
}
.btn-success {
  /* background-color: #009600; */
  background-color: var(--color-btn);
  border: none;
}
.btn-success:hover {
  /* background-color: #18bd26; */
  background-color: #9b7881;
}

/* Remove space between 'Cloths' and the dropdown arrow */
.navbar .dropdown-toggle::after {
  margin-left: 0px !important; /* completely remove gap */
  vertical-align: middle; /* keep it aligned with text */
  border-top: 0.4em solid; 
  border-right: 0.4em solid transparent;
  border-left: 0.4em solid transparent;
}
.navbar .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0px; /* ensures no spacing at all */
}


/* =================== CAROUSEL =================== */
.carousel-caption {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 10px;
}
.carousel-caption h2 {
  font-size: 2.5rem;
  color: #fff;
}
.carousel-caption p {
  color: #f8f9fa;
  font-size: 1.1rem;
}

/* =================== PRODUCT CARD =================== */
.card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card img {
  height: 300px;
  object-fit: cover;
}
.card-body {
  text-align: center;
  padding: 20px;
}
.btn-custom {
  background-color: var(--color-top-navbar);
  color: #fff;
  border-radius: 25px;
  padding: 8px 20px;
  border: none;
  transition: 0.3s ease;
}
.btn-custom:hover {
  background-color: var(--color-btn);
}
/* ================== heading-line ============================== */
.women-heading h2 {
  letter-spacing: 1px;
  position: relative;
}
.women-heading::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--color-top-navbar);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* =================== CONTACT SECTION =================== */
.contact-section h2 {
  letter-spacing: 1px;
  position: relative;
}
.contact-section h2::after {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background-color: var(--color-top-navbar);
  margin: 10px auto 0;
  border-radius: 3px;
}

/* =================== CATALOGUE =================== */
.catalogue-section {
  padding: 80px 0;
}
.catalogue-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ae4b8d;
  margin-bottom: 10px;
}
.catalogue-section h3 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  color: #902e73;
  margin: 40px 0 25px;
}

/* =================== PRODUCT PAGE =================== */
.product-container {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
}
.thumbnail-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: 400px;
  scroll-behavior: smooth;
}
.thumbnail-list img {
  width: 80px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
  border: 2px solid transparent;
}
.thumbnail-list img:hover {
  transform: scale(1.05);
  border-color: var(--color-top-navbar);
}
.scroll-btn {
  border: none;
  background: var(--color-top-navbar);
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
}
.scroll-btn:hover {
  background: var(--color-btn);
}
.main-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
}
.main-image img.fade {
  opacity: 0.4;
}
.product-details h2 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}
.price {
  font-size: 1.8rem;
  color: #28a745;
  font-weight: 700;
}
.old-price {
  text-decoration: line-through;
  color: #888;
  margin-left: 12px;
  font-size: 1rem;
}
.discount {
  color: #007bff;
  font-weight: 600;
}
.offers li {
  margin-bottom: 6px;
  color: #555;
}
.btn-cart,
.btn-buy {
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
}
.btn-cart {
  border: 1px solid #dd3547;
  color: #dd3547;
}
.btn-cart:hover {
  background-color: #87666f;
  color: white;
}
.btn-buy {
  background-color:#dd3547;
  color: white;
}
.btn-buy:hover {
  background-color: #87666f;
  color:white;
}

/* ============================================== */
/* Small custom styles to make cards look nicer */
.cards-section {
padding: 4rem 0;
background: #f8f9fa;
}
.card-img-top {
height: 180px;
object-fit: cover;
}





/* =================== WHATSAPP FLOAT =================== */
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); */
  z-index: 9999;
  transition: 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* =================== FOOTER =================== */
footer {
  font-size: 14px;
}
footer a:hover {
  color: var(--color-top-navbar) !important;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 992px) {
  .navbar-brand img {
    height: 50px;
  }
  .navbar-collapse {
    background-color: var(--color-navbar);
    padding: 15px;
    border-radius: 10px;
  }
  .main-image {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .thumbnail-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  .thumbnail-list {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: unset;
    gap: 10px;
  }
  .thumbnail-list img {
    width: 70px;
    margin: 5px;
  }
  .scroll-btn {
    display: none;
  }
  .main-image img {
    width: 100%;
  }
  .product-details h2 {
    font-size: 20px;
  }
  .product-details p,
  .product-details li {
    font-size: 14px;
  }
  .btn-buy,
  #Goback-btn {
    flex: 1 1 100%;
    font-size: 15px;
  }

}

@media (max-width: 576px) {
  .scrolling-text-item {
    font-size: 13px;
  }
  footer {
    text-align: center;
  }
  footer .col-md-4,
  footer .col-md-3,
  footer .col-md-2 {
    text-align: center;
  }
  .whatsapp-float {
    right: 10px;
    bottom: 10px;
  }
}

/* =======================
   FOOTER SECTION STYLE
   ======================= */
.footer-section {
  background-color: #111;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.footer-section h5,
.footer-section h6 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  line-height: 1.7;
}

.footer-section a {
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff !important;
}

/* Social icons hover */
.footer-section .fa-brands:hover {
  transform: scale(1.1);
  color: #fff !important;
  transition: 0.3s;
}

/* Divider */
.footer-section hr {
  border-color: #444;
}

/* Copyright */
.footer-section .text-center p a {
  color: #dbb3b1;
}
.footer-section .text-center p a:hover {
  text-decoration: underline;
}

/* =======================
   FOOTER BASE STYLING
   ======================= */
footer {
  background-color: #111 !important;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

footer h5,
footer h6 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

footer p,
footer a {
  font-size: 14px;
  line-height: 1.7;
}

footer a {
  color: #dbb3b1;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #fff !important;
}

/* Social icons hover effect */
footer .fa-brands:hover {
  transform: scale(1.1);
  color: #fff !important;
  transition: 0.3s;
}

/* Divider */
footer hr {
  border-color: #444;
}

/* Copyright text */
footer .text-center p {
  font-size: 13px;
}
footer .text-center p a {
  color: #dbb3b1;
}
footer .text-center p a:hover {
  text-decoration: underline;
}

/* ===========================
   RESPONSIVE DESIGN SECTION
   =========================== */

/* Tablet (below 992px) */
@media (max-width: 992px) {
  footer .row {
    text-align: center;
  }

  footer .col-md-4,
  footer .col-md-3,
  footer .col-md-2 {
    margin-bottom: 25px;
  }

  footer .d-flex {
    justify-content: center;
  }

  footer .btn {
    display: inline-block;
  }
}

/* Mobile (below 576px) */
@media (max-width: 576px) {
  footer {
    padding: 40px 20px !important;
  }

  footer h5,
  footer h6 {
    font-size: 16px;
  }

  footer p,
  footer a {
    font-size: 13px;
  }

  footer .d-flex {
    gap: 15px !important;
    justify-content: center;
  }

  footer .col-md-4,
  footer .col-md-2,
  footer .col-md-3 {
    text-align: center;
  }

  footer .btn {
    width: 100%;
    margin-top: 15px;
  }

  footer .text-center p {
    font-size: 12px;
    line-height: 1.5;
  }

  /* Add soft separation between sections */
  footer .col-md-4,
  footer .col-md-2,
  footer .col-md-3 {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }

  footer .col-md-3:last-child {
    border-bottom: none;
  }
}

/* ------------------------- */
@media (max-width: 768px) {
  .thumbnail-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
  }

  .thumbnail-wrapper img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
  }

  .scroll-btn {
    display: none; /* hide scroll buttons on mobile */
  }
}


