/* ✅ FINAL CLEANED & RENAMED CRITICAL HOMEPAGE CSS */

/* GLOBAL RESET */
.product-grid * {
  box-sizing: border-box;
}
/* HERO CONTAINER */
.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* SHOP BUTTON */
.shop-now-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  width: 100%;
}
.shop-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #e9008a;
  color: #ffffff !important;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 40px;
  min-width: 240px;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Outfit', sans-serif;
  border-radius: 10px;
  line-height: 1.2;
  box-shadow: 2px 3px 0px 1px rgba(0, 0, 0, 0.98) !important;
  transition: all 0.2s ease;
}
.shop-now-btn:hover {
  box-shadow: 3px 4px 0px 1px rgba(255, 255, 255, 0.98) !important;
  background-color: #000;
  transform: translateY(-2px);
}
.shop-now-btn:active {
  transform: translateY(1px);
  box-shadow: 1px 2px 0px rgba(0, 0, 0, 0.8);
}

/* MOBILE WHY AWESOME ONE-LINER (HIDDEN ON DESKTOP) */
.mobile-why-awesome {
  display: none;
}

/* PINK INFO BOX (DESKTOP ONLY) */
.pink-info-box {
  background: #fff0f7;
  border-left: 4px solid #e9008a;
  padding: 10px;
  border-radius: 16px;
  max-width: 680px;
  margin: 20px 0 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* MASCOT */
.mascot-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  position: bottom;
  z-index: 2;
}
.canada-badge {
  width: 70px;
  height: auto;
}
.lady-image {
  width: 120px;
  height: auto;
}

/* HERO H1 */
h1 {
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  color: #000;
  margin: 0;
  text-align: left;
}

/* PINK FEATURE BAR TOGGLE SECTION */
.feature-toggle-wrapper {
  text-align: center;
}

.feature-toggle-btn {
  display: none !important;
}

.feature-toggle-content {
  display: block;
}

.feature-bar {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #fff0f7;
  border-left: 6px solid #e9008a;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 10px 5px;
  margin-left: 10px;
  margin-right: 10px;
  overflow-x: auto;
}

.icon-item {
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
}

.icon-emoji {
  font-size: 24px;
  margin-bottom: 4px;
}

.icon-item strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.icon-item span {
  font-size: 13px;
  color: #333;
  display: block;
}
  .about-headshot {
    position: static !important;
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    transform: none !important;
  }
.about-section {
  background: #fff0f7;
  border-left: 6px solid #e9008a;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  max-width: 1200px;
  margin: 50px auto;
  text-align: center;
  position: relative;
}

.about-headshot-link {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-headshot {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transform: rotate(-6deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.about-welcome {
  font-size: 22px;
  margin: 0;
}

.about-title {
  font-size: 28px;
  margin: 10px 0;
}

.about-text {
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  margin: 10px 0;
}

.about-story-link {
  color: #e9008a;
  text-decoration: none;
  font-weight: bold;
}

.about-shop-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 36px;
  font-size: 25px;
  font-weight: bold;
  background-color: #e9008a;
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
  justify-content:center;
}

.about-shop-btn:hover {
  background-color: #000;
}

.about-shop-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@media only screen and (min-width: 768px) and (max-width: 1366px) {

  #hero-home h1 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  #hero-home h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
  }

  #hero-home h3 {
    font-size: 20px;
    margin-bottom: 0;
  }

  #hero-home .shop-now-btn {
    padding: 14px 18px;
    font-size: 20px;
    font-weight: bold;
  }
  #hero-home .shop-now-wrapper {
    width: 80%;
    display: flex;
    justify-content: left;
    margin-bottom: 10px;
  }
  #hero-home .pink-info-box {
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 70%;
    position: relative;
    z-index: 2;
    
  }

  #hero-home .mascot-wrapper {
    position: absolute;
    bottom: 0;
    left: 40px;
    display: flex;
    align-items: flex-end;
    gap: 40px;
    width: auto;
    margin: 0;
    padding-bottom: 10px;
  }

  #hero-home .lady-image {
    width: 50px;
    height: auto;
  }

  #hero-home .canada-badge {
    width: 40px !important;
    height: auto !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (orientation: portrait) {

    .shop-now-wrapper {
    width: 80%;
    display: flex;
    justify-content: left;
    margin-bottom: 10px;
  }
    .pink-info-box {
    background: #fff0f7;
    border-left: 4px solid #e9008a;
    padding: 10px;
    border-radius: 16px;
    width: 50%;
    margin: 20px 0 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .feature-bar {
    flex-wrap: wrap;
    width: 96%;
    justify-content: center;
    padding: 12px 16px;
    margin-left: 10px;
    margin-right: 10px;
  }

}

/* MOBILE HERO — show full image without cropping */
@media (max-width: 767px) { .hero-container { background-image: none !important; padding: 05px 5px 5px !important; overflow: visible; aspect-ratio: auto; display: block !important; text-align: center !important; } .hero-container::before { content: ""; display: block; width: 100%; height: auto; padding-top: clamp(300px, 35vw, 350px); /* keeps responsive height */ background: url('https://carlacookiebox.com/wp-content/uploads/2025/10/mobile3-3.webp') center top / cover no-repeat; /* full image in view */ background-color: #f5f2ef; /* match site background behind transparent edges */ border-radius: 12px; }
  .hero-container > * {
    position: relative;
    z-index: 1;                        /* keep content above the image */
  }

  .hero-container h1,
  .hero-container h2,
  .hero-container h3 {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    text-align: center !important;
    line-height: 1.25 !important;

  /* 3D box styling */
  background-color: #fff; /* box background */
  border: 2px solid #fff; /* main border color */
  border-radius: 4px; /* soften the corners */
  padding: 8px 16px; /* space inside the box */

  /* 3D shadow effect */
  box-shadow: 3px 3px 6px rgba(0,0,0,0.2),
              -3px -3px 6px rgba(255,255,255,0.7);
}

  .hero-container h1 {
    margin: 8px 0 4px;
    font-family: "Outfit", sans-serif;
    font-size: 24px !important;
    font-weight: 600;
    color: #000;
    line-height: 1.2 !important;
  }

  .hero-container h2 {
    font-size: 16px !important;
    margin: 2px 0 8px;
  }

  .hero-container h3 {
    font-size: 13px;
    margin: 2px 0 8px;
  }

  .hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .shop-now-wrapper{
    order:1;
    width:100%;
    display:flex;
    justify-content:center;
    margin-bottom:8px;          /* tighter */
  }
  .shop-now-btn{
    width:100%;
    max-width:320px;
    padding:12px 18px;          /* smaller */
    font-size:18px;
    font-weight:700;
  }

  /* Other mobile UI */
  .pink-info-box{ display:none !important; }

  .mobile-why-awesome{
    display:block;
    font-family:'Outfit', sans-serif;
    font-size:14px;
    font-weight:600;
    text-align:center;
    margin:6px 0 8px;          /* was 80px bottom */
    color:#000;
    order:2;
      /* 3D box styling */
  background-color: #fff; /* box background */
  border: 2px solid #fff; /* main border color */
  border-radius: 4px; /* soften the corners */
  padding: 8px 16px; /* space inside the box */

  /* 3D shadow effect */
  box-shadow: 3px 3px 6px rgba(0,0,0,0.2),
              -3px -3px 6px rgba(255,255,255,0.7);
  }

  .feature-toggle-btn{
    display:inline-block !important;
    background-color:#e9008a;
    color:#ffffff;
    border:3px solid #000;
    padding:12px 20px;         /* smaller */
    border-radius:12px;
    cursor:pointer;
    font-family:'Outfit', sans-serif;
    font-size:18px;
    font-weight:700;
    margin:0 auto 10px;
    text-align:center;
    box-shadow:0 4px 8px rgba(0,0,0,0.3);
    text-transform:uppercase;
    transition:all 0.3s ease-in-out;
  }
  .feature-toggle-content{ display:none; width:100%; }

  .mascot-wrapper{ display:none; } /* hide clutter on mobile */
  .canada-badge{ width:40px; height:40px; }

  .feature-bar{
    flex-wrap:wrap;
    justify-content:center;
    padding:10px 12px;         /* tighter */
    margin-left:10px;
    margin-right:10px;
  }
  .icon-item{ flex:0 0 45%; margin:4px; padding:0 8px; }

  .about-headshot {
    position: static !important;
    width: 100px !important;
    height: 100px !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    transform: none !important;
  }

.about-section {
  background: #fff0f7;
  border-left: 6px solid #e9008a;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  max-width: 1200px;
  margin: 10px auto;
  text-align: center;
  position: relative;
}

.about-headshot-link {
    display: flex;
    justify-content: center;
    width: 100%;
}

.about-headshot {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transform: rotate(-6deg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.about-welcome {
  font-size: 22px;
  margin: 0;
}

.about-title {
  font-size: 28px;
  margin: 10px 0;
}

.about-text {
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  margin: 10px 0;
}

.about-story-link {
  color: #e9008a;
  text-decoration: none;
  font-weight: bold;
}

.about-shop-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 16px 36px;
  font-size: 25px;
  font-weight: bold;
  background-color: #e9008a;
  color: #fff !important;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
  justify-content: center;
}

.about-shop-btn:hover {
  background-color: #000;
}

.about-shop-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
}
