body {
  padding-top: 90px;
  width: 100%;
}
* {
  box-sizing: border-box;
}

/* Images */

.img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.card-img-top {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  width: 100%;
  height: 200px;
}
.card-img-top {
  object-fit: cover;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 100%;
  height: 200px;
}

/* Custom Cosmetic Theme */
.navbar-custom {
  background: linear-gradient(90deg, #273dbb, #0628bd);
}

.navbar-custom .navbar-brand {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
}
.navbar-brand img {
  width: 50px;
  height: 40px;
}
.navbar-custom .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.navbar-custom .nav-link:hover {
  color: #ffe6f0 !important;
}

.search-input {
  border-radius: 20px;
}

.cart-icon {
  background: #fff;
  color: #ff6f91;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon:hover {
  background: #ffe6f0;
  color: #ff6f91;
}

.cart-btn {
  background-color: #fff;
  color: #ff6f91;
  border-radius: 20px;
  padding: 6px 15px;
  font-weight: 600;
}

.cart-btn:hover {
  background-color: #ffe6f0;
  color: #ff6f91;
}

/* Search Bar Styles */
.search-group .form-control {
  border-radius: 25px 0 0 25px;
  border: none;
  padding-left: 15px;
}

.search-group .search-btn {
  border-radius: 0 25px 25px 0;
  background-color: #fff;
  color: #ff6f91;
  border: none;
  padding: 0 18px;
  font-weight: 600;
}

.search-group .search-btn:hover {
  background-color: #ffe6f0;
  color: #ff6f91;
}

.search-group .form-control:focus {
  box-shadow: none;
}

/* Marquee Overlay Styles */
.marquee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 10;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.9); /* Semi-transparent dark background */
}

.marquee {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: roll 30s linear infinite;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee-content i {
  margin: 100px;
}

@keyframes roll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Ensure navbar content doesn't overlap marquee */
.navbar-custom {
  padding-top: 50px; /* Matches marquee height + padding */
}

/* Pause on hover */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .marquee-overlay {
    height: 35px;
  }
  .marquee-content {
    font-size: 12px;
  }
  .navbar-custom {
    padding-top: 45px;
  }
}

.search-bar {
  display: flex;
  flex-direction: row;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 300px;
}
.search-bar input {
  background-color: white;
  width: 80%;
  border: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-left: 10px;
}
.search-bar button {
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-right: 10px;
}
.search-bar input,
.search-bar button,
.search-bar input:focus,
.search-bar button:focus {
  border: none;
  background-color: white;
  height: 35px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.top-a {
  color: white;
  margin: auto 3px;
  border-radius: 10px;
  padding: 5px;
  border: 1px solid rgba(162, 216, 212, 0.9);
}
.top-a:hover {
  background-color: rgba(162, 216, 212, 0.9);
}

/* ///////////////////////////////////////////
------------------------_STORE MENU
*/
.store-menu {
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: rgba(200, 200, 200, 0.5);
}

.store-menu a {
  text-decoration: none;
  background-color: transparent;
  padding: 5px 7px;
  font-size: 15px;
}
.store-menu .active {
  border-bottom: 3px solid black;
}
.cart-count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  border-radius: 50%;
  background-color: red;
  color: white;
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.store-buttons {
  display: flex;
  flex-direction: row;
}
.store-buttons .btn-cart {
  width: 70%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.store-buttons .btn-view {
  width: 30%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.store-buttons .btn-full {
  width: 100%;
  border-radius: 8px;
}
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}
.card-img-container {
  height: 280px;
}
.card-img-container img {
  transition: transform 0.3s ease;
}

.card-img-container:hover img {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .card-img-container {
    height: 200px;
  }
}
.btn-group-lg .btn {
  transition: all 0.2s ease;
}

.btn-group-lg .btn:hover:not(.active) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ///////////////////////////////////////////
------------------------ FOOTER
*/
.a-no-decor {
  text-decoration: none;
}
footer {
  margin-top: 80px;
  background-color: black;
}
footer .row {
  margin: 0;
  padding: 0;
}
.footer-details,
.footer-subscribe {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 30px 0;
  padding: 0 50px;
}

.footer-details label,
.footer-details label i {
  font-size: 16px;
}
.footer-details label {
  margin: 5px 0;
}
.footer-details label i {
  margin-right: 10px;
}

.footer-subscribe a {
  color: white;
}
.footer-subscribe form {
  width: 100%;
}
.footer-subscribe * {
  margin: 6px 2px;
}
.footer-subscribe input,
.footer-subscribe input:focus {
  border: 1px solid rgba(19, 19, 19, 0.9);
  background-color: rgba(100, 100, 100, 0.5);
  padding: 10px;
  color: white;
  width: 100%;
}

.footer-subscribe button {
  width: 100%;
}

.social {
  display: flex;
  flex-direction: row;
}
.social a {
  margin: 5px 15px;
  font-size: 30px;
}
.floating-whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 1;
  pointer-events: auto;
}

.floating-whatsapp-button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp-button svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* Optional: hide the button when not needed (e.g., via JS class) */
.floating-whatsapp-button[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

/* ///////////////////////////////////////////
------------------------ RETURN POLICY
*/
 .return-policy {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.return-policy h2 {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 10px;
}

.return-policy h3 {
  font-size: 1.2rem;
  color: #444;
  margin-top: 20px;
  margin-bottom: 10px;
}

.return-policy p {
  margin-bottom: 12px;
}

.return-policy ol {
  margin-bottom: 16px;
}

.return-policy address {
  font-style: normal;
  font-weight: 500;
  color: #555;
}
