/** Shopify CDN: Minification failed

Line 607:12 Expected identifier but found whitespace
Line 607:14 Unexpected "{"
Line 607:23 Expected ":"
Line 607:63 Expected ":"

**/

:root {
  --cream:#F4EFE8;
  --red:#E4544F;
  --brown:#3E2A26;
  --blush:#F8CFCF;
}

body {
  background: linear-gradient(180deg,var(--cream),var(--blush));
  font-family:'Nunito',sans-serif;
  margin:0;
}

h1,h2,h3 {
  font-family:'Fredoka',sans-serif;
  color:var(--brown);
}

.container {
  max-width:1200px;
  margin:auto;
  padding:40px 20px;
}

.site-header {
  background:var(--cream);
  padding:20px 0;
}

.site-header nav a {
  margin:0 15px;
  text-decoration:none;
  color:var(--brown);
  font-weight:600;
}

.hero {
  background:var(--blush);
  text-align:center;
  padding:100px 20px;
  border-radius:0 0 60px 60px;
}

.btn {
  background:var(--red);
  color:white;
  padding:14px 28px;
  border:none;
  border-radius:40px;
  text-decoration:none;
  display:inline-block;
}

.btn.full { width:100%; }

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card {
  background:white;
  padding:20px;
  border-radius:30px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  text-align:center;
}

.price { color:var(--red); font-weight:700; }

.trust {
  background:white;
  text-align:center;
  font-weight:600;
}

.trust-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.site-footer {
  background:var(--brown);
  color:white;
  text-align:center;
  padding:60px 20px;
  border-radius:60px 60px 0 0;
}


/* Header Alignment Fix */
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header nav {
  display: flex;
  gap: 25px;
}

.site-header nav a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
}

/* Newsletter Upgrade */
.newsletter {
  background: linear-gradient(135deg, #F8CFCF, #FFD8C2);
  padding: 70px 20px;
  border-radius: 60px;
  margin: 80px auto;
}

.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
}

.newsletter input {
  padding: 14px 18px;
  border-radius: 40px;
  border: none;
  min-width: 250px;
}

/* Footer Compact */
.site-footer {
  padding: 30px 20px;
  border-radius: 40px 40px 0 0;
  margin-top: 60px;
}

.footer-inner p {
  margin: 5px 0;
  font-size: 14px;
}

.footer-tagline {
  opacity: 0.8;
}


/* Logo looks non-clickable but is clickable */
.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}


/* Header Layout */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  gap: 25px;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: white;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  padding: 80px 30px;
  gap: 25px;
  transition: right 0.3s ease;
  z-index: 1000;
}

.mobile-menu a {
  font-size: 20px;
  text-decoration: none;
  color: var(--brown);
  font-weight: 600;
}

.mobile-menu.active {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}


/* Ensure ONLY hamburger shows on mobile */
@media (max-width: 768px) {

  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: block !important;
  }

}


/* ================= MOBILE UPGRADES ================= */

@media (max-width: 768px) {

  /* Sticky header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--cream);
  }

  /* Center logo */
  .header-inner {
    justify-content: center;
    position: relative;
  }

  .logo {
    text-align: center;
  }

  /* Position hamburger right */
  .hamburger {
    position: absolute;
    right: 20px;
  }

  /* Mobile Menu Styling */
  .mobile-menu {
    padding-top: 100px;
  }

  .close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 28px;
    cursor: pointer;
  }

}


/* ================= PREMIUM MOBILE MENU ================= */

@media (max-width: 768px) {

  /* Sticky header with shadow */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: var(--cream);
    transition: box-shadow 0.3s ease;
  }

  .site-header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }

  /* Center logo */
  .header-inner {
    justify-content: center;
    position: relative;
  }

  .hamburger {
    position: absolute;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: var(--brown);
    transition: all 0.3s ease;
  }

  /* Animate hamburger to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 2000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu Panel */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(180deg, #F8CFCF, #FFD8C2);
    box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 110px 40px;
    gap: 35px;
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
    z-index: 2500;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--brown);
  }

  .close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    cursor: pointer;
    font-weight: bold;
    color: var(--brown);
  }

  body.menu-open {
    overflow: hidden;
  }

}


/* ================= MOBILE NAV SYSTEM (STABLE) ================= */

/* Default state */
.hamburger {
  display: none;
}

.desktop-nav {
  display: flex;
  gap: 25px;
}

/* Mobile layout */
@media (max-width: 768px) {

  /* Sticky Header */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: var(--cream);
    transition: box-shadow 0.3s ease;
  }

  .site-header.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }

  /* Center logo */
  .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  /* Hide desktop nav */
  .desktop-nav {
    display: none !important;
  }

  /* Show hamburger */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 20px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: var(--brown);
    transition: all 0.3s ease;
  }

  /* Animate to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 2000;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: linear-gradient(180deg, #F8CFCF, #FFD8C2);
    box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    padding: 110px 40px;
    gap: 35px;
    transition: right 0.35s cubic-bezier(.77,0,.18,1);
    z-index: 2500;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu a {
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    color: var(--brown);
  }

  .close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    cursor: pointer;
    font-weight: bold;
    color: var(--brown);
  }

  body.menu-open {
    overflow: hidden;
  }

}


/* ===== Dynamic Theme Variables ===== */

body {
  background: var(--bg);
}

.container {
  max-width: var(--container-width);
}

section {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

.btn {
  border-radius: var(--btn-radius);
  background: var(--primary);
}

.btn:hover {
  background: var(--accent);
}

.mobile-menu {
  background: var(--mobile-bg) !important;
}


/* ===== PRO Dynamic Controls ===== */

body {
  background: var(--bg);
}

.site-header {
  background: var(--header-bg);
}

.container {
  max-width: var(--container-width);
}

section {
  padding-top: var(--section-spacing);
  padding-bottom: var(--section-spacing);
}

.card {
  border-radius: var(--card-radius);
}

.btn {
  border-radius: var(--btn-radius);
  background: var(--primary);
}

.btn:hover {
  background: var(--accent);
}

.mobile-menu {
  background: var(--mobile-bg) !important;
}

.site-logo {
  max-width: {{ section.settings.logo_width | default: 180 }}px;
  height: auto;
}


/* ===== CLEAN HEADER ALIGNMENT ===== */

/* Desktop */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  display: flex;
  align-items: center;
}

.site-logo {
  display: block;
  height: auto;
}

/* Mobile */
@media (max-width: 768px) {

  .header-inner {
    justify-content: center;
    position: relative;
  }

  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    position: absolute;
    right: 20px;
  }

}


/* ===== HEADER SIZE FIX ===== */

/* Reduce header vertical padding */
.site-header {
  padding: 12px 0;
}

/* Constrain logo height to prevent header expansion */
.site-logo {
  max-height: 60px;
  width: auto;
  display: block;
}

/* Ensure proper vertical alignment */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Optional: Slightly smaller header on mobile */
@media (max-width: 768px) {
  .site-logo {
    max-height: 48px;
  }

  .site-header {
    padding: 10px 0;
  }
}



/* ===== LOGO SCALING FIX ===== */

/* Remove height restriction so width slider works */
.site-logo {
  max-height: none !important;
  height: auto;
  width: auto;
  display: block;
}

/* Balanced header padding */
.site-header {
  padding: 16px 0;
}

/* Keep alignment clean */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .site-header {
    padding: 14px 0;
  }
}



/* ===== PRODUCT PAGE CLEAN LAYOUT ===== */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-description {
  margin-top: 30px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CART ===== */

.cart-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.cart-link {
  position: relative;
  text-decoration: none;
  font-size: 22px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 20px;
}



/* ===== VARIANT STYLING ===== */

.variant-option {
  margin-bottom: 15px;
}

.variant-option label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.variant-select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
}



/* ===== CLEAN VARIANT STYLING ===== */

.variant-option {
  margin-bottom: 18px;
}

.variant-option label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.variant-option select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: white;
}



/* ===== CART REMOVE BUTTON ===== */

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 14px;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.cart-remove:hover {
  text-decoration: underline;
}



/* ===== AJAX CART STYLING ===== */

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
}

.quantity-controls input {
  width: 50px;
  text-align: center;
  padding: 6px;
}

.qty-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.qty-btn:hover {
  opacity: 0.8;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.cart-remove:hover {
  text-decoration: underline;
}



/* ===== PREMIUM CART ===== */

.free-shipping-bar {
  margin-bottom: 25px;
}

.progress {
  background: #eee;
  height: 8px;
  border-radius: 20px;
  margin-top: 8px;
}

.progress-fill {
  background: var(--primary);
  height: 100%;
  border-radius: 20px;
}

.cart-summary {
  margin-top: 40px;
}

.sticky-checkout {
  margin-top: 20px;
}

.empty-cart {
  text-align: center;
  padding: 60px 0;
}



/* ================= PRETTIER CART PAGE ================= */

.cart-page {
  max-width: 900px;
}

.cart-item {
  display: flex;
  gap: 25px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  margin-bottom: 20px;
  align-items: center;
}

.cart-item img {
  border-radius: 15px;
}

.cart-item-info h3 {
  margin-bottom: 6px;
}

.item-price {
  font-weight: 600;
  margin-bottom: 10px;
}

/* ================= PRETTIER INPUTS ================= */

input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  font-size: 14px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(228,84,79,0.15);
}

textarea {
  min-height: 90px;
  resize: vertical;
  margin-top: 15px;
}

/* ================= QUANTITY CONTROLS ================= */

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-controls input {
  width: 60px;
  text-align: center;
  font-weight: 600;
}

.qty-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.2s ease;
}

.qty-btn:hover {
  opacity: 0.9;
}

.qty-btn:active {
  transform: scale(0.95);
}

/* ================= CART SUMMARY ================= */

.cart-summary {
  margin-top: 40px;
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.cart-summary h2 {
  margin-bottom: 20px;
}

.cart-summary form {
  margin-top: 15px;
}

.cart-summary .btn {
  margin-top: 15px;
}

/* ================= EMPTY STATE ================= */

.empty-cart {
  background: #fff;
  padding: 60px 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}



/* ================= RESPONSIVE CART LAYOUT ================= */

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 30px;
}

/* Cart Item Card */
.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  align-items: center;
}

.cart-item img {
  border-radius: 15px;
}

.cart-item-info {
  flex: 1;
}

/* Summary Card */
.cart-summary {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  position: sticky;
  top: 100px;
  height: fit-content;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.cart-summary-row strong {
  font-size: 22px;
}

/* Discount Row */
.discount-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.discount-row input {
  flex: 1;
}

/* Mobile Responsive */
@media (max-width: 900px) {

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-summary {
    position: relative;
    top: 0;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item img {
    width: 100%;
    max-width: 220px;
  }

  .quantity-controls {
    margin-top: 10px;
  }

}



/* ================= MODERN PREMIUM CART ================= */

.cart-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 70px;
  margin-top: 40px;
}

.cart-title {
  margin-bottom: 20px;
}

/* Cart Item */
.cart-item {
  display: flex;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f1f1f1;
  margin-bottom: 18px;
  align-items: center;
}

.cart-image img {
  border-radius: 12px;
}

.cart-details {
  flex: 1;
}

.cart-details h3 {
  margin-bottom: 6px;
  font-weight: 600;
}

.item-price {
  font-weight: 600;
  margin-bottom: 10px;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quantity-controls input {
  width: 55px;
  text-align: center;
  font-weight: 600;
}

.qty-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cart-remove {
  background: none;
  border: none;
  color: #999;
  font-size: 14px;
  cursor: pointer;
}

.cart-remove:hover {
  color: var(--primary);
}

/* Summary */
.cart-summary {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #f1f1f1;
  height: fit-content;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.cart-summary-row strong {
  font-size: 22px;
}

.discount-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.discount-row input {
  flex: 1;
}

.checkout-btn {
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-actions {
    width: 100%;
  }

}



/* ================= CLEAN CART RESET ================= */

.cb-cart { padding: 50px 0; }

.cb-cart-title { margin-bottom: 30px; }

.cb-cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}

.cb-cart-item {
  display: flex;
  gap: 20px;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 16px;
  margin-bottom: 18px;
  background: #fff;
}

.cb-cart-img img {
  border-radius: 12px;
}

.cb-cart-info { flex: 1; }

.cb-price {
  font-weight: 600;
  margin: 8px 0;
}

.cb-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cb-qty input {
  width: 50px;
  text-align: center;
}

.cb-minus, .cb-plus {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cb-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
}

.cb-remove:hover {
  color: var(--primary);
}

.cb-summary {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 18px;
  background: #fff;
  height: fit-content;
}

.cb-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 20px;
}

.cb-discount {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.cb-discount input { flex: 1; }

.cb-checkout { margin-top: 20px; }

/* Responsive */

@media (max-width: 900px) {

  .cb-cart-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cb-cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

}



/* ================= PREMIUM CART v6 ================= */

.cb-cart { padding: 50px 0; }

.cb-free-ship {
  margin-bottom: 35px;
}

.cb-free-ship p {
  margin-bottom: 8px;
  font-weight: 500;
}

.cb-free-success {
  color: var(--primary);
  font-weight: 600;
}

.cb-progress {
  height: 8px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.cb-progress-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 20px;
}

.cb-cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
}

.cb-cart-item {
  display: flex;
  gap: 20px;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 16px;
  margin-bottom: 18px;
  background: #fff;
}

.cb-cart-img img { border-radius: 12px; }

.cb-cart-info { flex: 1; }

.cb-price { font-weight: 600; margin: 8px 0; }

.cb-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-qty { display: flex; gap: 8px; }

.cb-qty input {
  width: 50px;
  text-align: center;
}

.cb-minus, .cb-plus {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cb-remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
}

.cb-remove:hover { color: var(--primary); }

.cb-summary {
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 18px;
  background: #fff;
  height: fit-content;
  overflow: hidden;
}

.cb-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 20px;
}

.cb-discount {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.cb-discount input { flex: 1; }

.cb-checkout {
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {

  .cb-cart-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cb-cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

}





/* =====================================================
   CLEAN MOBILE HEADER SYSTEM (v7.2 RESET)
   ===================================================== */

@media (max-width: 768px) {

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 14px 20px;
    position: relative;
  }

  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    grid-column: 1;
    justify-self: start;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: var(--brown);
    display: block;
  }

  .logo {
    grid-column: 2;
    justify-self: center;
    margin: 0;
  }

  .cart-link {
    grid-column: 3;
    justify-self: end;
  }

}

/* ================= NEWSLETTER MOBILE POLISH ================= */

@media (max-width: 768px) {

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .newsletter input {
    width: 100%;
  }

  .newsletter .btn {
    width: 100%;
  }

}



/* =====================================================
   v7.3 MINIMAL MOBILE HEADER POSITION FIX
   (Does NOT remove or override previous systems)
   ===================================================== */

@media (max-width: 768px) {

  .header-inner {
    grid-template-columns: 40px 1fr 40px !important;
  }

  .hamburger {
    grid-column: 1 !important;
    justify-self: start !important;
  }

  .logo {
    grid-column: 2 !important;
    justify-self: center !important;
  }

  .cart-link {
    grid-column: 3 !important;
    justify-self: end !important;
  }

}



/* =====================================================
   v7.4 ABSOLUTE MOBILE HEADER FIX (CONFLICT PROOF)
   ===================================================== */

@media (max-width: 768px) {

  .header-inner {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .desktop-nav {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .cart-link {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

}



/* =====================================================
   v7.5 SAFE IMAGE + PRODUCT RESPONSIVE FIX
   (Does NOT touch header system)
   ===================================================== */

/* Restore natural image behaviour */
.card img,
.product-grid img,
.grid img,
.featured img,
.collection img {
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  max-width: 100%;
}

/* Product page mobile stability */
@media (max-width: 768px) {

  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .product-grid img {
    width: 100%;
    height: auto !important;
  }

  .product-description {
    margin-top: 20px;
  }

}



/* =====================================================
   Collection filters & sort (lightweight)
   ===================================================== */
.cb-collection__toolbar { margin: 10px 0 25px; }
.cb-collection__toolbar-row { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.cb-filters { background: #fff; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.04); padding: 10px 14px; }
.cb-filters__summary { cursor:pointer; font-weight:700; color: var(--brown); }
.cb-filters__content { margin-top: 12px; display:flex; flex-direction:column; gap:16px; min-width: 260px; }
.cb-filter__title { font-weight:700; margin-bottom:8px; }
.cb-filter__options { display:flex; flex-direction:column; gap:10px; }
.cb-filter__option { display:flex; gap:10px; align-items:center; font-size:14px; }
.cb-filter__price { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.cb-filter__price label span { display:block; font-size:12px; opacity:.7; margin-bottom:6px; }
.cb-filters__actions { display:flex; align-items:center; gap:14px; }
.cb-filters__clear { text-decoration:none; color: var(--brown); opacity:.75; font-weight:600; }
.cb-sort { display:flex; align-items:center; gap:10px; }
.cb-sort__select { padding: 12px 14px; border-radius: 14px; border:1px solid #e5e5e5; background:#fff; font-weight:600; }
.cb-pagination { margin: 30px 0 10px; }
.cb-pagination__inner { display:flex; justify-content:space-between; align-items:center; gap:12px; }
.cb-pagination__link { text-decoration:none; font-weight:700; color: var(--brown); }
.cb-pagination__status { font-weight:600; opacity:.8; }

@media (max-width: 768px) {
  .cb-collection__toolbar-row { justify-content: flex-start; }
  .cb-filters__content { min-width: auto; width: 100%; }
  .cb-sort { width: 100%; justify-content: space-between; }
  .cb-sort__select { width: 100%; }
  .cb-pagination__inner { flex-direction:column; }
}
