/* ===== MUUMA BRAND COLORS ===== */

:root {
  --bs-primary: #c6d9dd;
  --bs-primary-rgb: 198, 217, 221;

  --bs-secondary: #8ED1B2;
  --bs-secondary-rgb: 142, 209, 178;

  --bs-link-color: #c6d9dd;
  --bs-link-color-rgb: 198, 217, 221;

  /* Slightly darker hover shade for depth */
  --bs-link-hover-color: #aebfc4;
  --bs-link-hover-color-rgb: #343a40c4;

  --bs-focus-ring-color: rgba(198, 217, 221, 0.25);
  --bs-icon-color: #2B2B2B;
  
  --footer-background-color: #c6d9dd;
  --footer-text-color: #2b2b2b;
  --footer-link-color: #2b2b2b;
  --footer-link-hover-color: #000000;
}

.footer{
      --footer-background-color: #c6d9dd;
  --footer-text-color: #2b2b2b;
  --footer-link-color: #2b2b2b;
  --footer-link-hover-color: #000000;
  --footer-heading-color: #2b2b2b;
}

body {
  font-family: "Quicksand", sans-serif;
  color: #2B2B2B;
  background-color: #fff;   /* softer than pure white */
}

main {
  padding-top: 10px;
}

h1, h2, h3 {
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--bs-link-hover-color);
}

.card,
.btn,
a {
  transition: all 0.25s ease;
}

#header {
  background: white;
}

.header-top{
    border-bottom: none;
}

.header-bottom{
    border-bottom: none;
}

section {
  margin-bottom: 40px;
}

#left-column{
    display: none;
}

/* ===== BUTTONS ===== */
.btn {
  --bs-btn-border-radius: 8px;
  --bs-btn-font-weight: 500;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
}


.btn-primary {
  --bs-btn-color: #2B2B2B;              /* Dark text works better on light blue-grey */
  --bs-btn-bg: #c6d9dd;
  --bs-btn-border-color: #c6d9dd;

  --bs-btn-hover-color: #2B2B2B;
  --bs-btn-hover-bg: #aebfc4;
  --bs-btn-hover-border-color: #aebfc4;

  --bs-btn-focus-shadow-rgb: 198, 217, 221;
  --bs-btn-active-bg: #aebfc4;
  --bs-btn-active-border-color: #aebfc4;

  background-color: #c6d9dd !important;
  border-color: #c6d9dd !important;
  color: #2B2B2B !important;

  box-shadow: 0 4px 10px rgba(198, 217, 221, 0.35);
}

.btn-primary:hover {
  background-color: #aebfc4 !important;
  border-color: #aebfc4 !important;
  box-shadow: 0 6px 14px rgba(174, 191, 196, 0.45);
}


.btn-primary:active {
  transform: scale(0.97);
}

.product-miniature {
  padding: 6px;
}


.product-miniature .wishlist-button:hover {
  transform: scale(1.15);
}



/* ===== PRODUCT CARDS ===== */
.card {
  border-radius: 16px;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}


/* ===== BADGE ===== */

.badge {
  border-radius: 10px;
  font-weight: 500;
  padding: 6px 10px;
}

.badge.new {
  background-color: var(--bs-secondary);
}

.badge.discount {
  background-color: var(--bs-primary);
  color: #2B2B2B;
}

/* ===== BADGE ===== */
.carousel {
  border-radius: 18px;
  overflow: hidden;
}

.product-price {
  font-weight: 600;
  color: #E85C5C;
}

.products-section,
.featured-products,
.new-products {
  margin-bottom: 24px;
}


/* ===== WISHLIST ===== */
.wishlist-button {
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.wishlist-button:hover {
  transform: scale(1.15);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: #FFF5F5;
  border: none;
  border-radius: 18px;
}



.main-menu {
    order: unset;
}

/* ===== LOGO ===== */
.header-bottom .navbar-brand .logo {
  transition: all 0.3s ease;
}

body#index .header-bottom .navbar-brand .logo {
  max-height: 140px;
  margin-top: -18px;
}

body:not(#index) .header-bottom .navbar-brand .logo {
  max-height: 86px;
  margin-top: -12px;
}

/* Mobile breakpoint */
@media (max-width: 767px) {
  body#index .header-bottom .navbar-brand .logo {
    max-height: 80px; 
    margin-top: -18px; 
    position: absolute; 
    top: -10%;
  }
}

/* ===== Main Menu ===== */

.main-menu__tree > li > a{
    font-weight: bold;
    text-transform: uppercase;
}


/* ===== Top Bar Sign In and Cart  ===== */
#_desktop_user_info, #_desktop_cart{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C6D9DD;
  border-radius: 10px;
  margin: 0 8px;
}

#_desktop_user_info .header-block__action-btn{
    width: 100%;
    display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C6D9DD;
  border-radius: 10px;
}

.header-block__icon{
    margin: 0;
    color: var(--bs-icon-color) !important;
}

.header-block__badge{
    position: absolute;
  top: -8px;
  right: -8px;
  border: 1px solid var(--bs-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
    .header-block__badge{
        top: -4px;
        right: -4px;
    }
}

/* ===== Responsive Home Slider Fix ===== */

/* Remove fixed height */
.ratio-homeSlider,
.carousel,
#carousel {
  height: auto !important;
}

/* Make images fully responsive */
#carousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain; /* prevents crop */
}

/* Keep desktop height nice */
@media (min-width: 992px) {
  #carousel .carousel-item img {
    height: 663px;
    object-fit: cover; /* fills nicely on desktop */
  }
}

@media (min-width: 992px) {
  #carousel .carousel-item img {
    height: 663px;
    object-fit: cover; /* fills nicely on desktop */
  }
}
.carousel .carousel-caption{
   display: none;
}

.carousel .carousel-caption{
    max-width: 420px;
    left: 13%;
}
.carousel .carousel-caption .caption-description{
  position: relative;
  min-height: 260px;
}

.carousel .carousel-caption .h2, .carousel .carousel-caption h2{
    font-size: 2rem;
    color: #2B2B2B;
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  color: #000;
  animation: heroFadeSlide 1.2s ease forwards;
  opacity: 0;
}

.hero-caption .hero-badge {
  display: inline-block;
  background: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 18px;
  box-shadow: 3px 3px 0 #000;
}
.hero-caption .list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.hero-caption .list li {
  font-size: 18px;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}

/* Custom bullet */
.hero-caption .list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-size: 16px;
}

.hero-caption .hero-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 26px;
}

.hero-caption .hero-btn {
    color: #2b2b2b;
  display: inline-block;
  background: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 5px 5px 0 #000;
  transition: all 0.2s ease;
}

.hero-caption .hero-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {

  .hero-caption {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    padding: 20px;
  }

  .hero-caption .hero-title {
    font-size: 28px;
  }

  .hero-caption .list li {
    font-size: 14px;
  }

  .carousel .carousel-caption {
    max-width: 100%;
    left: 0;
    right: 0;
  }
}

/* Keyframes */
@keyframes heroFadeSlide {
  from {
    opacity: 0;
    transform: translateY(-40%) translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}


/* ===== Home - Section Title  ===== */
.section-title{
    font-size: calc(26px + (41 - 26) * ((100vw - 280px) / (1920 - 280)));
  position: relative;
  margin-bottom: 0;
  display: inline-block;
  z-index: 1;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #222;
}

.product-miniature .product-miniature__title{
margin-bottom: 17px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  color: #000;
}


.cart-icon{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* ===== Category  ===== */
#category-description .muuma-category-banner {
  width: 100%;
  height: 330px;
  border-radius: 16px;
  margin-bottom: 25px;
  background-image: url('/themes/muuma/assets/img/c/10-cloth-diapers-langots.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

#category-description .muuma-banner-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: white;
  z-index: 2;
}

#category-description .muuma-banner-content h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

#category-description .muuma-banner-content p {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.9;
  color: black;
}

/* Description styling */
.category-desc {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.highlight {
  font-weight: 600;
  color: #003366;
}

