/* =========================================================
   CandyCloud — HERO PAGE (DARK THEME EDITION)
   Modern, Clean, Responsive Design with Premium Dark Colors
========================================================= */

/* =========================================================
   DESIGN TOKENS & BASE STYLES — DARK THEME
   Using GeneratePress colors from colors.txt
========================================================= */

:root {
  --cc-max: 1200px;
  --cc-radius: 20px;
  --cc-radius-sm: 14px;
  --cc-radius-lg: 28px;
  --cc-border: rgba(242, 244, 255, 0.15);
  --cc-glass: rgba(19, 18, 26, 0.4);
  --cc-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  --cc-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
  --cc-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.5);
  --cc-primary: #FF2F92;
  --cc-primary-dark: #C77DFF;
  --cc-primary-alt: #8F5BFF;
  --cc-text: #C6C9E3;
  --cc-text-light: #8B90B6;
  --cc-text-heading: #F2F4FF;
  --cc-text-button: #F2F4FF;
  --cc-bg: #0B0B10;
  --cc-bg-alt: #12121A;
  --cc-bg-card: #191A23;
  --cc-gunmetal: #191A23;
  --cc-gunmetal-light: #1E1F2A;
  --cc-gunmetal-dark: #12121A;
  --cc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global dark theme base */
body {
  background: var(--cc-bg);
  color: var(--cc-text);
}

/* =========================================================
   SECTION & CONTAINER STYLES
========================================================= */

.cc-section {
  padding: 80px 0;
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.cc-section:nth-child(even) {
  background: var(--cc-gunmetal-dark);
}

.cc-container {
  max-width: var(--cc-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* =========================================================
   HEADING STYLES
========================================================= */

.cc-head {
  text-align: center;
  margin-bottom: 48px;
}

.cc-head h2 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--cc-text-heading);
  margin: 0 0 16px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cc-head p {
  font-size: 18px;
  color: var(--cc-text-light);
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   1) HERO — FULL WIDTH, BLACK SIDES, CENTERED CONTENT
========================================================= */

.cc-heroFinal {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--cc-gunmetal-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.cc-heroFinal__wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.cc-heroFinal__stage {
  position: relative;
  background: var(--cc-gunmetal);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--cc-shadow);
  border: none;
  border-bottom: 1px solid rgba(242, 244, 255, 0.1);
  padding: 80px 5%;
  width: 100%;
  box-sizing: border-box;
}

/* Hero Grid Layout - Text Left, Images Right */
.cc-heroFinal__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: stretch;
  min-height: 600px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Content - Left Side */
.cc-heroFinal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  z-index: 2;
}

.cc-heroFinal__tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--cc-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.cc-heroFinal__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--cc-text-heading);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cc-heroFinal__description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--cc-text);
  margin: 0;
  line-height: 1.6;
  max-width: 500px;
}

.cc-heroFinal__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Hero Media - Right Side */
.cc-heroFinal__media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero images - no container constraints */
.cc-heroFinal__slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images preserve their dimensions */
.cc-heroFinal__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.8s ease-in-out;
}

/* Fade animation */
.cc-heroFinal__slide--a {
  animation: ccFadeA 10s infinite;
  z-index: 2;
}

.cc-heroFinal__slide--b {
  animation: ccFadeB 10s infinite;
  z-index: 1;
}

@keyframes ccFadeA {
  0%, 45% { opacity: 1; }
  55%, 95% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes ccFadeB {
  0%, 45% { opacity: 0; }
  55%, 95% { opacity: 1; }
  100% { opacity: 0; }
}

/* Removed old overlay - CTA buttons now in content area */

/* =========================================================
   BUTTON STYLES
========================================================= */

.cc-btn {
  padding: 14px 28px;
  border-radius: var(--cc-radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: var(--cc-transition);
  border: none;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.01em;
}

.cc-btn--primary {
  background: linear-gradient(135deg, var(--cc-primary) 0%, var(--cc-primary-dark) 100%);
  color: var(--cc-text-button);
  box-shadow: 0 4px 15px rgba(255, 47, 146, 0.5);
}

.cc-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 47, 146, 0.7);
  color: var(--cc-text-button);
}

.cc-btn--ghost {
  background: rgba(25, 26, 35, 0.6);
  color: var(--cc-text);
  border: 1px solid rgba(242, 244, 255, 0.25);
}

.cc-btn--ghost:hover {
  background: rgba(25, 26, 35, 0.8);
  transform: translateY(-2px);
  color: var(--cc-text);
  border-color: var(--cc-primary);
}

.cc-btn--pill {
  border-radius: var(--cc-radius-sm);
}

/* =========================================================
   2) CALI MAGIC — FULL WIDTH, CLEAN SEPARATION
========================================================= */

.cc-fullBanner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--cc-gunmetal-dark);
  position: relative;
  overflow: hidden;
}

.cc-fullBanner__wrap {
  position: relative;
  display: block;
}

.cc-fullBanner__slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.cc-fullBanner__slides:active {
  cursor: grabbing;
}

.cc-fullBanner__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  transition: opacity 0.8s ease-in-out;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.cc-fullBanner__slide img {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.cc-fullBanner__slide--a {
  position: relative;
  z-index: 2;
  opacity: 1;
}

.cc-fullBanner__slide--b {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}

/* Auto-play animation (only when not manually controlled) */
.cc-fullBanner__slides:not(.cc-fullBanner__slides--manual) .cc-fullBanner__slide--a {
  animation: ccBannerFadeA 12s infinite;
}

.cc-fullBanner__slides:not(.cc-fullBanner__slides--manual) .cc-fullBanner__slide--b {
  animation: ccBannerFadeB 12s infinite;
}

@keyframes ccBannerFadeA {
  0%, 45% { opacity: 1; z-index: 2; }
  55%, 95% { opacity: 0; z-index: 1; }
  100% { opacity: 1; z-index: 2; }
}

@keyframes ccBannerFadeB {
  0%, 45% { opacity: 0; z-index: 1; }
  55%, 95% { opacity: 1; z-index: 2; }
  100% { opacity: 0; z-index: 1; }
}

/* Active slide state */
.cc-fullBanner__slide--active {
  opacity: 1 !important;
  z-index: 2 !important;
}

.cc-fullBanner__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.cc-fullBanner__slide:hover .cc-fullBanner__img {
  transform: scale(1.02);
}

.cc-fullBanner__cta {
  position: absolute;
  right: 32px;
  bottom: 32px;
  padding: 14px 28px;
  border-radius: var(--cc-radius-sm);
  background: linear-gradient(135deg, var(--cc-primary) 0%, var(--cc-primary-dark) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--cc-text-button);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: var(--cc-transition);
  box-shadow: 0 4px 20px rgba(255, 47, 146, 0.5);
  border: 1px solid rgba(255, 47, 146, 0.3);
  white-space: nowrap;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  min-height: auto;
  pointer-events: auto;
}

.cc-fullBanner__cta:hover {
  background: linear-gradient(135deg, var(--cc-primary-dark) 0%, var(--cc-primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 47, 146, 0.7);
  color: var(--cc-text-button);
  text-decoration: none;
}

/* Navigation buttons */
.cc-fullBanner__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.cc-fullBanner__nav-btn {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(19, 18, 26, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(242, 244, 255, 0.2);
  color: var(--cc-text-button);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--cc-transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 0;
  margin: 0;
}

.cc-fullBanner__nav-btn:hover {
  background: rgba(255, 47, 146, 0.9);
  border-color: var(--cc-primary);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 47, 146, 0.5);
}

.cc-fullBanner__nav-btn:active {
  transform: scale(0.95);
}

.cc-fullBanner__nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Indicators */
.cc-fullBanner__indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
  pointer-events: none;
}

.cc-fullBanner__indicator {
  pointer-events: auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(242, 244, 255, 0.4);
  border: 2px solid rgba(242, 244, 255, 0.3);
  cursor: pointer;
  transition: var(--cc-transition);
  padding: 0;
  margin: 0;
  border: none;
}

.cc-fullBanner__indicator:hover {
  background: rgba(255, 47, 146, 0.6);
  transform: scale(1.2);
}

.cc-fullBanner__indicator--active {
  background: var(--cc-primary);
  box-shadow: 0 0 10px rgba(255, 47, 146, 0.6);
  transform: scale(1.2);
}

/* =========================================================
   3) SPLIT SECTION (TEXT + VIDEO) — FIXED ALIGNMENT
========================================================= */

.cc-brandSplit {
  padding: 80px 0;
  background: var(--cc-bg);
  border-top: 1px solid rgba(242, 244, 255, 0.08);
  border-bottom: 1px solid rgba(242, 244, 255, 0.08);
}

.cc-brandSplit__grid {
  max-width: var(--cc-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.cc-brandSplit__text h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--cc-text-heading);
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cc-brandSplit__text p {
  font-size: 18px;
  color: var(--cc-text-light);
  line-height: 1.7;
  margin: 0 0 32px 0;
}

.cc-brandSplit__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-brandSplit__bullets li {
  font-size: 16px;
  color: var(--cc-text);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.cc-brandSplit__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cc-primary);
  font-weight: 700;
  font-size: 18px;
}

.cc-brandSplit__media {
  position: relative;
}

.cc-brandSplit__videoBox {
  aspect-ratio: 2 / 1;
  border-radius: var(--cc-radius-lg);
  overflow: hidden;
  box-shadow: var(--cc-shadow-soft);
  background: var(--cc-gunmetal);
  position: relative;
  border: 1px solid rgba(242, 244, 255, 0.1);
  transition: var(--cc-transition);
}

.cc-brandSplit__videoBox:hover {
  border-color: var(--cc-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 47, 146, 0.15);
}

.cc-brandSplit__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   4) SHOP BY CATEGORY — CARDS (HOVER FIX)
========================================================= */

.cc-cats--cards {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  grid-auto-flow: row;
}

.cc-cats--cards > * {
  min-width: 0;
  max-width: 100%;
}

.cc-catCard {
  padding: 32px 24px;
  border-radius: var(--cc-radius);
  background: linear-gradient(135deg, var(--cc-gunmetal) 0%, var(--cc-gunmetal-dark) 100%);
  box-shadow: var(--cc-shadow-soft);
  text-decoration: none;
  color: var(--cc-text);
  transition: var(--cc-transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(242, 244, 255, 0.12);
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

.cc-catCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--cc-primary) 0%, var(--cc-primary-dark) 100%);
  opacity: 0;
  transition: var(--cc-transition);
  z-index: 0;
}

.cc-catCard > * {
  position: relative;
  z-index: 1;
}

.cc-catCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(255, 47, 146, 0.3), var(--cc-shadow-hover);
  border-color: rgba(255, 47, 146, 0.4);
}

.cc-catCard:hover::before {
  opacity: 1;
}

.cc-catCard__kicker {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cc-text-light);
  transition: var(--cc-transition);
}

.cc-catCard__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--cc-text);
  transition: var(--cc-transition);
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
}

.cc-catCard__meta {
  font-size: 14px;
  color: var(--cc-text-light);
  transition: var(--cc-transition);
  line-height: 1.5;
}

/* Fix: All text turns light on hover */
.cc-catCard:hover .cc-catCard__kicker,
.cc-catCard:hover .cc-catCard__title,
.cc-catCard:hover .cc-catCard__meta {
  color: var(--cc-text-button) !important;
}

/* =========================================================
   5) CATEGORY BLOCKS (BEST SELLERS)
========================================================= */

.cc-categoryBlock {
  margin-top: 96px;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.cc-categoryBlock:last-child {
  margin-bottom: 0;
}

.cc-categoryBlock__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.cc-categoryBlock__top h2 {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  color: var(--cc-text-heading);
  margin: 0;
  letter-spacing: -0.01em;
}

.cc-link {
  color: var(--cc-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--cc-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 10px rgba(255, 47, 146, 0.3);
}

.cc-link::after {
  content: "→";
  transition: var(--cc-transition);
}

.cc-link:hover {
  color: var(--cc-primary-dark);
  gap: 10px;
  text-shadow: 0 0 15px rgba(255, 47, 146, 0.5);
}

/* =========================================================
   6) PRODUCT GRIDS — FIX HEIGHT & ALIGNMENT
========================================================= */

/* Target products that come after categoryBlock (WooCommerce shortcode output) */
.cc-section ul.products,
.cc-categoryBlock + ul.products {
  max-width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  grid-auto-flow: row !important;
  grid-auto-rows: auto !important;
}

/* Force grid items to stay in grid */
.cc-section ul.products::before,
.cc-section ul.products::after,
.cc-categoryBlock + ul.products::before,
.cc-categoryBlock + ul.products::after {
  display: none !important;
}

/* Add spacing after products lists (except the last one) */
.cc-section ul.products,
.cc-categoryBlock + ul.products {
  margin-bottom: 96px !important;
  margin-top: 0 !important;
}

.cc-categoryBlock:last-of-type + ul.products {
  margin-bottom: 0 !important;
}

/* Remove extra margin from last products list in section */
.cc-section > .cc-container > ul.products:last-of-type,
.cc-section ul.products:last-of-type {
  margin-bottom: 0 !important;
}

.cc-section ul.products > *,
.cc-categoryBlock + ul.products > * {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.cc-section ul.products li.product > *,
.cc-categoryBlock + ul.products li.product > * {
  max-width: 100% !important;
}

.cc-section ul.products li.product,
.cc-categoryBlock + ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 20px !important;
  border-radius: var(--cc-radius) !important;
  background: linear-gradient(135deg, var(--cc-gunmetal) 0%, var(--cc-gunmetal-light) 100%) !important;
  box-shadow: var(--cc-shadow-soft) !important;
  transition: var(--cc-transition) !important;
  border: 2px solid var(--cc-border) !important;
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.cc-section ul.products li.product:hover,
.cc-categoryBlock + ul.products li.product:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 50px rgba(255, 47, 146, 0.3), var(--cc-shadow-hover) !important;
  border-color: rgba(255, 47, 146, 0.4) !important;
  background: linear-gradient(135deg, var(--cc-gunmetal-light) 0%, rgba(30, 31, 42, 0.95) 100%) !important;
}

.cc-section ul.products li.product .woocommerce-LoopProduct-link,
.cc-categoryBlock + ul.products li.product .woocommerce-LoopProduct-link {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex: 1 1 auto !important;
  text-decoration: none !important;
  color: inherit !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Match category.css product image framing */
.cc-section ul.products li.product .wc-product-image,
.cc-categoryBlock + ul.products li.product .wc-product-image,
.cc-section ul.products li.product img.attachment-woocommerce_thumbnail,
.cc-categoryBlock + ul.products li.product img.attachment-woocommerce_thumbnail {
  flex-shrink: 0;
  /* Always-perfect square frame (fixes gaps/crop inconsistencies across widths) */
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  border-radius: var(--cc-radius-sm);
  background: var(--cc-gunmetal-dark);
  display: block;
  position: relative;
  margin: -8px -8px 12px -8px;
  padding: 0;
  width: calc(100% + 16px);
  box-sizing: border-box;
}

.cc-section ul.products li.product a.woocommerce-LoopProduct-link img,
.cc-categoryBlock + ul.products li.product a.woocommerce-LoopProduct-link img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  margin: 0 !important;
  border-radius: var(--cc-radius-sm) !important;
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  transition: var(--cc-transition) !important;
}

.cc-section ul.products li.product:hover a.woocommerce-LoopProduct-link img,
.cc-categoryBlock + ul.products li.product:hover a.woocommerce-LoopProduct-link img {
  transform: scale(1.05) !important;
}

/* Stars (rating) — match category.css visibility */
.cc-section ul.products li.product .star-rating,
.cc-categoryBlock + ul.products li.product .star-rating {
  margin: 8px 0;
  font-size: 14px;
  color: var(--cc-primary) !important;
}

.cc-section ul.products li.product .star-rating::before,
.cc-categoryBlock + ul.products li.product .star-rating::before {
  color: rgba(242, 244, 255, 0.22) !important;
}

.cc-section ul.products li.product .star-rating span,
.cc-categoryBlock + ul.products li.product .star-rating span,
.cc-section ul.products li.product .star-rating span::before,
.cc-categoryBlock + ul.products li.product .star-rating span::before {
  color: var(--cc-primary) !important;
}

.cc-section ul.products .woocommerce-loop-product__title,
.cc-categoryBlock + ul.products .woocommerce-loop-product__title {
  min-height: 48px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  margin: 0 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--cc-text) !important;
  line-height: 1.4 !important;
}

.cc-section ul.products li.product .price,
.cc-categoryBlock + ul.products li.product .price {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--cc-primary) !important;
}

.cc-section ul.products li.product .button,
.cc-section ul.products li.product .add_to_cart_button,
.cc-categoryBlock + ul.products li.product .button,
.cc-categoryBlock + ul.products li.product .add_to_cart_button {
  margin-top: auto !important;
  align-self: stretch !important;
  padding: 12px 20px !important;
  border-radius: var(--cc-radius-sm) !important;
  background: var(--cc-primary) !important;
  color: var(--cc-text-button) !important;
  font-weight: 600 !important;
  text-align: center !important;
  transition: var(--cc-transition) !important;
  border: none !important;
}

.cc-section ul.products li.product .button:hover,
.cc-section ul.products li.product .add_to_cart_button:hover,
.cc-categoryBlock + ul.products li.product .button:hover,
.cc-categoryBlock + ul.products li.product .add_to_cart_button:hover {
  background: var(--cc-primary-dark) !important;
  transform: translateY(-2px) !important;
}

/* =========================================================
   7) EXPECT SECTION (CARDS + CTA)
========================================================= */

.cc-expect {
  background: var(--cc-gunmetal-dark);
  border-top: 1px solid rgba(242, 244, 255, 0.08);
  border-bottom: 1px solid rgba(242, 244, 255, 0.08);
}

.cc-cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.cc-card {
  padding: 32px;
  border-radius: var(--cc-radius);
  background: linear-gradient(135deg, var(--cc-gunmetal) 0%, var(--cc-gunmetal-light) 100%);
  box-shadow: var(--cc-shadow-soft);
  transition: var(--cc-transition);
  border: 1px solid rgba(242, 244, 255, 0.12);
}

.cc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cc-shadow-hover);
  border-color: rgba(255, 47, 146, 0.3);
}

.cc-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--cc-text-heading);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.cc-card p {
  font-size: 16px;
  color: var(--cc-text-light);
  line-height: 1.6;
  margin: 0;
}

.cc-commit {
  padding: 40px;
  border-radius: var(--cc-radius-lg);
  background: linear-gradient(135deg, var(--cc-primary) 0%, var(--cc-primary-dark) 100%);
  color: var(--cc-text-button);
  text-align: center;
  margin-bottom: 48px;
  box-shadow: 0 10px 40px rgba(255, 47, 146, 0.4), var(--cc-shadow-soft);
  border: 1px solid rgba(255, 47, 146, 0.2);
}

.cc-commit h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: var(--cc-text-heading);
}

.cc-commit p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  color: var(--cc-text);
}

.cc-ctaBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 40px;
  border-radius: var(--cc-radius-lg);
  background: linear-gradient(135deg, var(--cc-gunmetal) 0%, var(--cc-gunmetal-dark) 100%);
  box-shadow: var(--cc-shadow-soft);
  flex-wrap: wrap;
  border: 1px solid rgba(242, 244, 255, 0.12);
  transition: var(--cc-transition);
}

.cc-ctaBox:hover {
  border-color: rgba(255, 47, 146, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 47, 146, 0.1);
}

.cc-ctaBox > div {
  flex: 1;
  min-width: 300px;
}

.cc-ctaBox h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--cc-text-heading);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.cc-ctaBox p {
  font-size: 16px;
  color: var(--cc-text-light);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   8) FAQ SECTION
========================================================= */

.cc-faq {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cc-faq__item {
  background: var(--cc-gunmetal);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow-soft);
  border: 1px solid rgba(242, 244, 255, 0.12);
  overflow: hidden;
  transition: var(--cc-transition);
}

.cc-faq__item:hover {
  box-shadow: var(--cc-shadow-hover);
  border-color: rgba(255, 47, 146, 0.3);
  background: var(--cc-gunmetal-light);
}

.cc-faq__item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--cc-text);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: var(--cc-transition);
  user-select: none;
}

.cc-faq__item summary::-webkit-details-marker {
  display: none;
}

.cc-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--cc-primary);
  transition: var(--cc-transition);
}

.cc-faq__item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.cc-faq__item[open] summary {
  color: var(--cc-primary);
}

.cc-faq__item p {
  padding: 0 24px 20px 24px;
  font-size: 16px;
  color: var(--cc-text-light);
  line-height: 1.7;
  margin: 0;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cc-about {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--cc-radius-lg);
  background: linear-gradient(135deg, var(--cc-gunmetal) 0%, var(--cc-gunmetal-dark) 100%);
  box-shadow: var(--cc-shadow-soft);
  text-align: center;
  border: 1px solid rgba(242, 244, 255, 0.12);
  transition: var(--cc-transition);
}

.cc-about:hover {
  border-color: rgba(255, 47, 146, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 47, 146, 0.1);
}

.cc-about h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--cc-text-heading);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.cc-about p {
  font-size: 16px;
  color: var(--cc-text-light);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

/* =========================================================
   SEO PARAGRAPHS (VAPES) — LAYOUT ONLY (NO TEXT CHANGES)
========================================================= */

.cc-seoVape {
  margin: 24px 0 40px;
  padding: 20px;
  border-radius: var(--cc-radius);
  background: linear-gradient(135deg, var(--cc-gunmetal) 0%, var(--cc-gunmetal-dark) 100%);
  border: 1px solid rgba(242, 244, 255, 0.12);
  box-shadow: var(--cc-shadow-soft);
  column-gap: 24px;
  columns: 2;
}

.cc-seoVape p {
  margin: 0 0 12px 0;
  break-inside: avoid;
  color: var(--cc-text-light);
  font-size: 14px;
  line-height: 1.6;
}

.cc-seoVape p:last-child {
  margin-bottom: 0;
}

.cc-readmore {
  margin-top: 14px;
}

.cc-readmore summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
}

.cc-readmore summary::-webkit-details-marker {
  display: none;
}

.cc-readmore summary::after {
  content: "+";
  font-size: 18px;
  line-height: 1;
  opacity: 0.9;
}

.cc-readmore[open] summary::after {
  content: "−";
}

.cc-readmore .cc-seoVape {
  margin: 14px 0 0;
}

/* Ensure 4 columns on desktop and large tablets */
@media (min-width: 769px) {
  .cc-cats--cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .cc-section ul.products,
  .cc-categoryBlock + ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 1024px) {
  .cc-heroFinal__stage {
    padding: 60px 4%;
  }

  .cc-heroFinal__grid {
    gap: 40px;
    min-height: 500px;
    max-width: 100%;
  }

  .cc-heroFinal__slides {
    min-height: 450px;
  }

  .cc-brandSplit__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cc-cards3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-ctaBox {
    flex-direction: column;
    text-align: center;
  }

  .cc-ctaBox > div {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .cc-seoVape {
    columns: 1;
    padding: 16px;
  }

  .cc-seoVape p {
    font-size: 14px;
  }

  .cc-section {
    padding: 60px 0;
  }

  .cc-container {
    padding: 0 20px;
  }

  .cc-heroFinal__stage {
    padding: 48px 4%;
  }

  .cc-heroFinal__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    max-width: 100%;
  }

  .cc-heroFinal__content {
    text-align: center;
    align-items: center;
  }

  .cc-heroFinal__description {
    max-width: 100%;
  }

  .cc-heroFinal__cta {
    justify-content: center;
    width: 100%;
  }

  .cc-heroFinal__slides {
    min-height: 350px;
  }

  .cc-btn {
    width: auto;
    min-width: 120px;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
  }

  .cc-fullBanner__cta {
    right: 20px;
    bottom: 20px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .cc-fullBanner__nav {
    display: none; /* Hide arrow buttons on mobile */
  }

  .cc-fullBanner__indicators {
    bottom: 20px;
    gap: 10px;
  }

  .cc-fullBanner__indicator {
    width: 10px;
    height: 10px;
  }

  .cc-cats--cards {
    grid-template-columns: 1fr;
  }

  .cc-section ul.products,
  .cc-categoryBlock + ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* Mobile card spacing fix (removes dead black area + tightens stars) */
  .cc-section ul.products li.product .woocommerce-LoopProduct-link,
  .cc-categoryBlock + ul.products li.product .woocommerce-LoopProduct-link {
    gap: 8px !important;
    flex: 0 0 auto !important;
  }

  .cc-section ul.products li.product .star-rating,
  .cc-categoryBlock + ul.products li.product .star-rating {
    display: block !important;
    margin: 2px auto 4px auto !important;
  }

  .cc-section ul.products li.product .button,
  .cc-section ul.products li.product .add_to_cart_button,
  .cc-categoryBlock + ul.products li.product .button,
  .cc-categoryBlock + ul.products li.product .add_to_cart_button {
    margin-top: 10px !important; /* was auto; caused large empty area on mobile */
  }

  /* Mobile image frame (no padding) */
  .cc-section ul.products li.product .wc-product-image,
  .cc-categoryBlock + ul.products li.product .wc-product-image,
  .cc-section ul.products li.product img.attachment-woocommerce_thumbnail,
  .cc-categoryBlock + ul.products li.product img.attachment-woocommerce_thumbnail {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }

  /* Mobile overlays: sale badge bottom-right (to match category/shop) */
  .cc-section ul.products li.product .onsale,
  .cc-categoryBlock + ul.products li.product .onsale {
    top: auto !important;
    right: 8px !important;
    bottom: 8px !important;
    left: auto !important;
    padding: 3px 8px !important;
    font-size: 10px !important;
    border-radius: 10px !important;
    background: rgba(11, 11, 16, 0.32) !important;
    color: rgba(242, 244, 255, 0.95) !important;
    border: 1px solid rgba(255, 47, 146, 0.35) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28) !important;
    pointer-events: none;
  }

  .cc-cards3 {
    grid-template-columns: 1fr;
  }

  .cc-commit {
    padding: 32px 24px;
  }

  .cc-ctaBox {
    padding: 32px 24px;
  }

  .cc-categoryBlock__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .cc-seoVape {
    padding: 14px;
  }

  .cc-heroFinal__stage {
    padding: 40px 3%;
  }

  .cc-heroFinal__grid {
    gap: 24px;
  }

  .cc-heroFinal__cta {
    flex-direction: column;
    width: 100%;
  }

  .cc-heroFinal__cta .cc-btn {
    width: 100%;
  }

  .cc-heroFinal__slides {
    min-height: 300px;
  }

  .cc-btn {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 100px;
  }

  .cc-section ul.products,
  .cc-categoryBlock + ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .cc-section ul.products li.product,
  .cc-categoryBlock + ul.products li.product {
    padding: 12px !important;
  }

  .cc-section ul.products li.product .woocommerce-LoopProduct-link,
  .cc-categoryBlock + ul.products li.product .woocommerce-LoopProduct-link {
    gap: 6px !important;
    flex: 0 0 auto !important;
  }

  .cc-section ul.products li.product .star-rating,
  .cc-categoryBlock + ul.products li.product .star-rating {
    display: block !important;
    margin: 2px auto 4px auto !important;
  }

  .cc-section ul.products li.product .button,
  .cc-section ul.products li.product .add_to_cart_button,
  .cc-categoryBlock + ul.products li.product .button,
  .cc-categoryBlock + ul.products li.product .add_to_cart_button {
    margin-top: 8px !important;
  }

  /* Mobile image frame (no padding) */
  .cc-section ul.products li.product .wc-product-image,
  .cc-categoryBlock + ul.products li.product .wc-product-image,
  .cc-section ul.products li.product img.attachment-woocommerce_thumbnail,
  .cc-categoryBlock + ul.products li.product img.attachment-woocommerce_thumbnail {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
  }

  .cc-section ul.products li.product .onsale,
  .cc-categoryBlock + ul.products li.product .onsale {
    top: auto !important;
    right: 6px !important;
    bottom: 6px !important;
    padding: 3px 7px !important;
    font-size: 10px !important;
    background: rgba(11, 11, 16, 0.28) !important;
  }

  .cc-section ul.products .woocommerce-loop-product__title,
  .cc-categoryBlock + ul.products .woocommerce-loop-product__title {
    min-height: 0 !important;
    font-size: 13px !important; /* -1px */
    line-height: 1.3 !important;
  }

  .cc-section ul.products li.product .price,
  .cc-categoryBlock + ul.products li.product .price {
    font-size: 16px !important;
  }

  .cc-section ul.products li.product .button,
  .cc-section ul.products li.product .add_to_cart_button,
  .cc-categoryBlock + ul.products li.product .button,
  .cc-categoryBlock + ul.products li.product .add_to_cart_button {
    padding: 10px 16px !important;
    font-size: 13px !important;
  }

  .cc-head h2,
  .cc-brandSplit__text h2 {
    font-size: 24px;
  }

  .cc-catCard {
    padding: 24px 20px;
  }

  .cc-catCard__title {
    font-size: 24px;
  }
}
