/* ============ HIDE DEFAULT SECTIONS ON HALLOWEEN & SUB-COLLECTIONS ============ */
body.mc-halloween-active #wb-main > *:not(#zeLDO3):not(#mc-halloween-page):not(footer):not([role="contentinfo"]) {
  display: none !important;
}
body.mc-halloween-product-active #wb-main > *:not(#zeLDO3):not(#mc-halloween-product-page):not(footer):not([role="contentinfo"]) {
  display: none !important;
}

/* ============ GLOBAL STYLES ============ */
#mc-halloween-page, #mc-halloween-product-page {
  font-family: 'Poppins', sans-serif;
  color: #1e293b;
  background-color: #ffffff;
}
#mc-halloween-page *, #mc-halloween-page *::before, #mc-halloween-page *::after,
#mc-halloween-product-page *, #mc-halloween-product-page *::before, #mc-halloween-product-page *::after {
  box-sizing: border-box;
}

/* ============ LANDING LAYOUT ============ */
.mc-hal-container {
  width: 100%;
}
.mc-hal-content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Banner */
.mc-hal-hero {
  position: relative;
  width: 100%;
  margin-bottom: 45px;
  overflow: hidden;
  background-color: #0f081e;
}
.mc-hal-hero-btn:hover {
  background-color: #bef264 !important;
  transform: scale(1.05) translateY(-1px);
  box-shadow: 0 6px 24px rgba(163,230,53,0.6) !important;
}
.mc-hal-hero-btn:active {
  transform: scale(0.98) translateY(0px);
}

/* Green Banner Wrapper */
.mc-hal-green-banner {
  background-color: #8fc73e; /* Bright pea green matching screenshot */
  padding: 60px 0;
  margin: 40px 0;
  width: 100%;
}

.mc-hal-cat-sec {
  margin-bottom: 60px;
}
.mc-hal-cat-sec:last-child {
  margin-bottom: 0;
}

.mc-hal-cat-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #272727;
  background-color: #fffdec;
  border-radius: 50px; /* Rounded pill shape */
  border: 1.5px solid #e5d290;
  padding: 10px 30px;
  text-align: center;
  max-width: 550px;
  margin: 0 auto 35px;
  text-transform: capitalize;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mc-hal-card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.mc-hal-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #272727; /* Dark label text under circles */
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s;
  cursor: pointer;
}

.mc-hal-cat-card:hover {
  transform: scale(1.05);
}

.mc-hal-cat-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f8e367; /* Solid yellow background */
  border: none;
  margin-bottom: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-hal-cat-circle img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.mc-hal-cat-label {
  text-align: center;
  margin-top: 4px;
  line-height: 1.2;
}

/* Grids */
.mc-hal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns matching screenshot */
  gap: 25px 20px;
}

/* Product Card */
.mc-hal-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.mc-hal-card:hover {
  transform: translateY(-4px);
}
.mc-hal-card:hover .mc-hal-img {
  transform: scale(1.04);
}
.mc-hal-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  margin-bottom: 12px;
  position: relative;
}
.mc-hal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mc-hal-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff7a00;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}
.mc-hal-info {
  display: flex;
  flex-direction: column;
}
.mc-hal-title-text {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  margin: 0 0 6px;
  line-height: 1.4;
  height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mc-hal-stars {
  color: #f59e0b;
  font-size: 11px;
  margin-bottom: 6px;
}
.mc-hal-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mc-hal-price {
  font-size: 15px;
  font-weight: 700;
  color: #ef4444;
}
.mc-hal-compare-price {
  font-size: 12px;
  text-decoration: line-through;
  color: #94a3b8;
}

/* Purple browse treats button */
.mc-hal-browse-btn {
  background-color: #7d3cbd;
  color: #ffffff;
  padding: 13px 40px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(125, 60, 189, 0.2);
}
.mc-hal-browse-btn:hover {
  background-color: #6a2fa6;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(125, 60, 189, 0.3);
}

@media (max-width: 990px) {
  .mc-hal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 550px) {
  .mc-hal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-hal-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mc-hal-cat-circle {
    width: 85px;
    height: 85px;
  }
}

/* Reviews Slideshow container */
.mc-hal-reviews {
  background-color: #ffffff;
  border-radius: 0;
  padding: 60px 0;
  margin-bottom: 0;
  border: none;
}
.mc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  display: inline-block;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mc-dot.active {
  background-color: #272727;
  width: 18px;
  border-radius: 4px;
}
.mc-hal-reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
.mc-hal-reviews-slider::-webkit-scrollbar {
  height: 6px;
}
.mc-hal-reviews-slider::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 3px;
}
.mc-hal-review-card {
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.mc-hal-review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mc-hal-review-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px;
}
.mc-hal-review-text {
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
  margin: 0;
}

/* Main Catalog Toolbar */
.mc-hal-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.mc-hal-count {
  font-size: 14px;
  color: #475569;
}
.mc-hal-sort-select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
  background-color: #fff;
  color: #334155;
  outline: none;
}

/* Pagination */
.mc-hal-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 50px;
}
.mc-hal-page-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background-color: #fff;
  color: #475569;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.mc-hal-page-btn:hover:not(.disabled) {
  border-color: #ff7a00;
  color: #ff7a00;
}
.mc-hal-page-btn.active {
  background-color: #ff7a00;
  border-color: #ff7a00;
  color: #fff;
}
.mc-hal-page-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============ PRODUCT DETAIL PAGE ============ */
.mc-hal-prod-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 80px;
}
.mc-hal-breadcrumbs {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 25px;
}
.mc-hal-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.mc-hal-breadcrumbs a:hover {
  color: #ff7a00;
}
.mc-hal-breadcrumbs span.sep {
  margin: 0 8px;
}
.mc-hal-prod-split {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.mc-hal-prod-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
}
.mc-hal-prod-main-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  margin-bottom: 15px;
  background-color: #f8fafc;
}
.mc-hal-prod-main-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.mc-hal-prod-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
}
.mc-hal-prod-thumb {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background-color: #f8fafc;
  flex-shrink: 0;
}
.mc-hal-prod-thumb.active {
  border-color: #ff7a00;
}
.mc-hal-prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-hal-prod-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mc-hal-prod-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.3;
}
.mc-hal-prod-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.mc-hal-prod-stars {
  color: #f59e0b;
  font-size: 14px;
}
.mc-hal-prod-reviews-count {
  font-size: 13px;
  color: #64748b;
}
.mc-hal-prod-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.mc-hal-prod-price {
  font-size: 24px;
  font-weight: 700;
  color: #ef4444;
}
.mc-hal-prod-compare-price {
  font-size: 16px;
  text-decoration: line-through;
  color: #94a3b8;
}

/* Variant Selector Options */
.mc-hal-prod-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.mc-hal-prod-option-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mc-hal-prod-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mc-hal-prod-option-btn {
  padding: 8px 18px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mc-hal-prod-option-btn:hover {
  border-color: #ff7a00;
  color: #ff7a00;
}
.mc-hal-prod-option-btn.selected {
  border-color: #ff7a00;
  background-color: #fffbf7;
  color: #ff7a00;
  box-shadow: 0 0 0 1px #ff7a00;
}

/* Dynamic Custom Personalizer Box */
.mc-hal-personalizer {
  border: 2px solid #ff7a00;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: #fffbf8;
}
.mc-hal-personalizer-header {
  font-size: 16px;
  font-weight: 700;
  color: #ff7a00;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  border-bottom: 1.5px dashed #ffdec4;
  padding-bottom: 10px;
}
.mc-hal-field-group {
  margin-bottom: 15px;
}
.mc-hal-field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.mc-hal-field-label span.req {
  color: #ef4444;
  margin-left: 2px;
}
.mc-hal-input-text {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  background-color: #fff !important;
  color: #1e293b !important;
  outline: none !important;
  transition: border-color 0.2s ease;
}
.mc-hal-input-text:focus {
  border-color: #ff7a00 !important;
}
.mc-hal-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  background-color: #fff;
  color: #1e293b;
  outline: none;
}
.mc-hal-select:focus {
  border-color: #ff7a00;
}

/* Pet Avatar builder block */
.mc-hal-pet-block {
  background-color: #ffffff;
  border: 1px solid #ffdec4;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 12px;
}
.mc-hal-pet-title {
  font-size: 13px;
  font-weight: 700;
  color: #ff7a00;
  margin-bottom: 10px;
}

/* Upload area */
.mc-hal-upload-box {
  border: 2px dashed #cbd5e1;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.mc-hal-upload-box:hover {
  border-color: #ff7a00;
  background-color: #fffbf8;
}
.mc-hal-upload-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.mc-hal-upload-text {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}
.mc-hal-upload-preview-wrap {
  margin-top: 10px;
  display: none;
  justify-content: center;
}
.mc-hal-upload-preview {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
}

/* Action button */
.mc-hal-add-to-cart-btn {
  background-color: #ff7a00;
  color: #ffffff;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 6px -1px rgba(255, 122, 0, 0.2), 0 2px 4px -1px rgba(255, 122, 0, 0.1);
}
.mc-hal-add-to-cart-btn:hover {
  background-color: #e06c13;
  transform: translateY(-1px);
}
.mc-hal-add-to-cart-btn:active {
  transform: translateY(0);
}

/* Spinner */
.mc-hal-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  display: none;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Accordion info */
.mc-hal-accordions {
  margin-top: 35px;
  border-top: 1px solid #e2e8f0;
}
.mc-hal-acc-item {
  border-bottom: 1px solid #e2e8f0;
}
.mc-hal-acc-trigger {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}
.mc-hal-acc-trigger:hover {
  color: #ff7a00;
}
.mc-hal-acc-trigger::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
}
.mc-hal-acc-item.active .mc-hal-acc-trigger::after {
  content: '-';
}
.mc-hal-acc-content {
  padding: 0 0 15px;
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  display: none;
}
.mc-hal-acc-item.active .mc-hal-acc-content {
  display: block;
}

/* Toast */
#mc-hal-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #10b981;
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-50px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999999;
}
#mc-hal-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* SEO Description */
.mc-hal-seo-wrap {
  background-color: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  margin-top: 60px;
}
.mc-hal-seo-title {
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  margin: 0 0 10px;
}
.mc-hal-seo-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 900px) {
  .mc-hal-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mc-hal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-hal-prod-split {
    flex-direction: column;
  }
  .mc-hal-prod-left {
    width: 100%;
    flex: none;
  }
  .mc-hal-prod-right {
    width: 100%;
    margin-top: 25px;
  }
  .mc-hal-review-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .mc-hal-hero {
    padding: 40px 20px;
  }
  .mc-hal-hero-title {
    font-size: 32px;
  }
  .mc-hal-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mc-hal-cat-circle {
    width: 100px;
    height: 100px;
  }
  .mc-hal-review-card {
    flex: 0 0 100%;
  }
}