html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #000;
  overflow-x: hidden;
  box-sizing: border-box;
}

.page-wrapper,
.image-row,
.banner-search,
.mcm-nav {
  max-width: none;
  width: 100%;
  box-sizing: border-box;
}

p, img, div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mcm-top-banner {
  background-color: #000!important;
}

/* ============================================
   GLOBAL BACKGROUND & BASELINE
   ============================================ */
.mcm-top-banner,
.mcm-nav,
.banner-search {
  max-width: none;
}

.mcm-top-banner {
  align-items: flex-start; /* prevents vertical stretching */
  height: auto;            /* lets the banner shrink naturally */
}

body {
  overflow-x: hidden;
  font-size: 15px;
}

p {
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}
.page-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================================
   TOP BANNER WITH SEARCH
   ============================================ */


.banner-search {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 2px;
  padding: 3px 0;
  
}
.banner-search,
.mcm-nav {
  flex-wrap: wrap;
}

/* ============================================
   PAGE WRAPPER
   ============================================ */
.page-wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.mcm-banner {
  text-align: center;
  padding: 5px 0;
}

.mcm-banner h1 {
  margin: 10px 0 5px 0;
}

.mcm-banner p {
  margin: 0;        /* no centering*/
  max-width: none;      /* boutique width */
  text-align: center;    /* keeps text centered */
  line-height: 1.4;
}
.mcm-top-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 5px 0;
  background-color: #000;
}



.mcm-tagline {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}


.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px; /* space between logos */
}
.payment-logos img {
  height: 15px;
  width: auto;
  object-fit: contain;
  display: block;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  }


.search-input {
  width: 220px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 12px;
  background-color: #f9f9f9;
}

.search-button {
  background-color: #d5d53f;
  color: #000;
  border: none;
  padding: 5px 9px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.search-button:hover {
  background-color: #e0e04f;
}

/* ============================================
   Mobile (phones + tablets)
   ============================================ */
@media (max-width: 600px) {

  /* Payment logos */
  .payment-logos {
    gap: 6px;
  }

  .payment-logos img {
    height: 16px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
  }

  /* Image row container */
  .image-row {
    flex-wrap: wrap;        /* allow stacking/wrapping */
    justify-content: center;
    gap: 10px;
    overflow-x: visible;    /* remove forced scroll */
    padding: 0 10px;
  }

  /* Image row images */
  .image-row img {
    width: 90px;            /* or 45px if you want small */
    height: auto;
    max-height: none;
    object-fit: contain;
    flex: 0 0 auto;
  }
}

/* ============================================
   HEADINGS (H1–H10)
   ============================================ */

h1 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 42;     /* keep it big */
  font-weight: 700;
  color: #d5d53f;
  text-align: center;
  margin: 8px auto 4px auto;
  line-height: 1.1;

  max-width: 600px;     /* <-- THIS is the magic */
  width: 100%;
}


h2 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #4b3f72;
  text-align: center;
  margin: 25px 0 10px 0;
}

h3 {
  font-size: 28px;
  font-weight: 600;
  color: #4b3f72;
  margin: 20px 0 10px 0;
}

h4 {
  font-size: 24px;
  font-weight: 600;
  color: #4b3f72;
  margin: 18px 0 8px 0;
}

h5 {
  font-size: 20px;
  font-weight: 600;
  color: #4b3f72;
  margin: 16px 0 8px 0;
}

h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4b3f72;
  margin: 14px 0 6px 0;
}

h7, h8, h9, h10 {
  display: block;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color: #4b3f72;
  margin: 12px 0 6px 0;
  font-size: 16px;
}

/* ============================================
   GLOBAL SITE BANNER
   ============================================ */
.mcm-tagline {
  text-align: center;
  color: #ffffff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  margin: 6px 0 5px 0;
  letter-spacing: 0.5px;
}

.banner-image {
  filter: saturate(1.1) brightness(0.92);
  box-shadow: 0 0 40px rgba(75, 63, 114, 0.55);
  border-radius: 4px;
}

.image-row {
  display: flex;
  flex-wrap: wrap;       /* desktop: NO wrapping */
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: none;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #000;
}

.image-row img {
  max-width: none;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  display: block;
}
/* ============================================
   NAVIGATION BAR
   ============================================ */
.mcm-nav {
  display: flex;
  justify-content: center ;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background-color: #000;
  border-top: 2px solid #d5d53f;
  border-bottom: 2px solid #d5d53f;
  padding: 10px 0;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.mcm-nav a {
  color: #d5d53f;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.mcm-nav a:hover {
  border-bottom: 2px solid #d5d53f;
}

/* ============================================
   PAGE WRAPPER
   ============================================ */


.page-wrapper p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.4;
  max-width: none;   /* narrower, boutique */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin: 40px auto;
  max-width: none;
}

.product-grid-item {
  width: 180px;
  text-align: center;
  padding-bottom: 20px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-grid-item img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
}

.product-title {
  font-size: 1.8em;
  margin-top: 10px;
  margin-bottom: 8px;
}

/* ============================================
   COPY EMAIL BUTTON (Contact Page)
   ============================================ */

.copy-email-button {
  background-color: #d5d53f;
  color: #000;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}

.copy-email-button:hover {
  background-color: #e0e04f;
}

/* ============================================
   Checkout pages (checkout)
   ============================================ */

.banner-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; /* centers everything horizontally */
  gap: 10px;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #f5d142; /* warm gold tone */
  font-weight: bold;
  font-size: 1.1em;
  margin-left: 10px;
}

.cart-link:hover .cart-text {
  text-shadow: 0 0 6px gold;
}

.cart-icon {
  width: 30px;
  height: 30px;
  margin-right: 6px;
  filter: drop-shadow(0 0 3px gold);
}

.cart-text {
  vertical-align: middle;
}
.search-form {
  display: flex;
  justify-content: center;
  width: 100%;
}
.checkout-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5d142, #d4b020);
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 10px gold;
  margin-top: 20px;
}

.checkout-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.checkout-cat {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 8px gold);
  transition: transform 0.2s ease;
}

.checkout-cat:hover {
  transform: scale(1.05);
}

.checkout-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #3a2e00;
  text-shadow: 0 0 4px #fff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .banner-search {
    flex-direction: column;
    align-items: center;
  }

  .search-form {
    width: 90%;
  }
}
.checkout-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f5d142, #d4b020);
  padding: 12px 18px; /* slightly smaller */
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 0 10px gold;
  margin: 30px auto; /* centers horizontally */
  text-align: center;
  width: fit-content; /* keeps button tight around content */
}

.checkout-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkout-cat {
  width: 50px; /* smaller mascot */
  height: auto;
  filter: drop-shadow(0 0 6px gold);
}

.checkout-text {
  font-size: 1.2em;
  font-weight: bold;
  color: #3a2e00;
  text-shadow: 0 0 4px #fff;
}
.checkout-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 14px gold;
}

