/** Shopify CDN: Minification failed

Line 208:12 Expected identifier but found whitespace
Line 208:13 Unexpected "10px"

**/
/* ---------------------------------------------------
   Step 1: Import Google Fonts
   --------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Poppins:wght@400;500;600&display=swap');

/* ---------------------------------------------------
   Step 2: Global Styles (background, font, text color)
   --------------------------------------------------- */
/* Force background to apply */
body {
  background-color: #ffffff !important; /* Clean white */
  font-family: 'Poppins', sans-serif !important;
  color: #22313a !important;
  margin: 0 !important;
  padding: 0 !important;
}





/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2b2b2b;
}

/* ---------------------------------------------------
   Step 3: Buttons Styling
   --------------------------------------------------- */
.button, 
.shopify-payment-button__button, 
.slideshow__button {
  background: #2b6f77; /* Primary teal */
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button:hover, 
.slideshow__button:hover {
  background: #ff6f61; /* Coral hover */
  transform: translateY(-2px);
}

/* ---------------------------------------------------
   Step 4: Links
   --------------------------------------------------- */
a {
  color: #2b6f77;
  text-decoration: none;
}
a:hover {
  color: #ff6f61;
}

/* ---------------------------------------------------
   Step 5: Section Styling
   --------------------------------------------------- */
.section {
  padding: 60px 20px;
  background: #ffffff;
}
.section:nth-child(even) {
  background: #f7f9fa; /* Alternate light background */
}






/* HABA-style horizontal header - bigger version */
.header-wrapper {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px; /* increased padding top/bottom and left/right */
    background: #fffefc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    font-size: 18px; /* base font size bigger */
}

/* Logo container */
.header__logo-container {
    flex: 0 0 auto;
    order: 2; /* logo in center */
}

.header__logo-container img {
    max-width: 280px; /* bigger logo */
    height: auto;
}

/* Navigation menu left and right */
.header__menu-left,
.header__menu-right {
    display: flex;
    gap: 40px; /* more spacing between links */
    align-items: center;
    flex: 1;
}

.header__menu-left {
    justify-content: flex-start;
}

.header__menu-right {
    justify-content: flex-end;
}

/* Menu links */
.header__menu a {
    font-weight: 600;
    font-size: 18px; /* bigger text */
    color: #22313a;
    text-decoration: none;
    padding: 10px 0; /* taller clickable area */
    transition: color 0.3s;
}

.header__


    
    /* Product cards HABA style */
.card-wrapper, .product-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(16,24,40,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-wrapper:hover, .product-card:hover {
    transform: translateY(-6px);
}

.card__image {
    border-radius: 14px 14px 0 0;
    object-fit: cover;
}

.card__badge, .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    background: #ffecec;
    color: #b91c1c;
    border: 1px solid rgba(185,28,28,0.06);
}

.card__content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card__title {
    font-weight: 700;
    font-size: 15px;
    color: #0b2b2e;
    margin: 0;
}

.card__price {
    font-weight: 800;
    color: #2b6f77;
}

.card__compare-at {
    font-size: 13px;
    text-decoration: line-through;
    color: #6b6b6b;
}

.button.card__button {
    margin-top: 6px;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 700;
    text-align: center;
}

    padding: 10px 8px;
    border-radius: 12px;
}

.header__menu a:hover {
    background: rgba(43,111,119,0.06);
}

.header__logo img {
    height: 50px;
    object-fit: contain;
}


FOOTER

.hb-footer-columns .footer-column {
    min-width: 200px;
}

.hb-footer-columns h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 16px;
}

.hb-footer-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hb-footer-columns ul li {
    margin-bottom: 8px;
}

.hb-footer-columns ul li a {
    color: #22313a;
    text-decoration: none;
    font-size: 14px;
}

.hb-footer-columns ul li a:hover {
    color: #2b6f77;
}




.featured-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card img {
  width: 100%;
  height: auto;
  display: block;
}

.category-card h3 {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(43,111,119,0.85);
  color: #fff;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
}

.category-card:hover {
  transform: scale(1.03);
}


body, p, li, span {
    color: #2C3E50; /* dark professional text */
}

h1, h2, h3, h4, h5, h6 {
    color: #2C3E50;
}

.subtext, small, .caption {
    color: #7F8C8D; /* lighter text for captions */
}




/* Links */
a {
    color: #4A90E2;
    text-decoration: none;
}

a:hover {
    color: #F5A623;
}


/* -----------------------------
   Featured Products / Bestsellers
----------------------------- */
.featured-collection .product-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 60px; /* space for button */
  margin: 10px;
}

.featured-collection .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.featured-collection .product-card img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.featured-collection .product-card:hover img {
  transform: scale(1.05);
}

.featured-collection .product-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #2C3E50;
  margin: 12px 0 6px 0;
}

.featured-collection .product-price {
  font-family: 'Poppins', sans-serif;
  color: #4A90E2;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Add to Cart Button */
.featured-collection .add-to-cart-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #4A90E2;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.featured-collection .product-card:hover .add-to-cart-btn {
  opacity: 1;
}

/* Sale / New Badges */
.featured-collection .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #F5A623;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 8px;
}


