/*
Theme Name: Custom Print 4 U
Theme URI: https://customprint4u.com
Author: Custom Print 4 U
Author URI: https://customprint4u.com
Description: A sleek, modern WooCommerce theme for a custom printing business. Features elegant typography, smooth animations, and a fully responsive design optimized for selling custom-printed t-shirts, hoodies, caps, mugs, and accessories.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: customprint4u
Tags: e-commerce, woocommerce, custom-printing, one-column, two-columns, custom-menu, featured-images, theme-options

Custom Print 4 U — Print Your Imagination On Anything
*/

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --ink-black: #0a0a0a;
  --cream: #f5f0e8;
  --hot-coral: #ff3c38;
  --electric-yellow: #ffe74c;
  --deep-teal: #0a6c74;
  --soft-white: #fafaf7;
  --muted-sage: #8a9a8e;
  --gradient-hero: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  --card-shadow: 0 20px 60px rgba(0,0,0,0.12);
  --card-hover-shadow: 0 30px 80px rgba(0,0,0,0.2);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Sora', sans-serif;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--soft-white);
  color: var(--ink-black);
  overflow-x: hidden;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ============================================
   LOADER
============================================ */
.cp-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink-black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
.cp-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.cp-loader__text {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--cream);
  overflow: hidden;
  letter-spacing: -0.02em;
}
.cp-loader__text span {
  display: inline-block;
  animation: loadBounce 0.6s ease forwards;
  opacity: 0;
  transform: translateY(80px);
}
@keyframes loadBounce {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CUSTOM CURSOR
============================================ */
.cursor-dot {
  position: fixed; width: 8px; height: 8px;
  background: var(--hot-coral); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform 0.1s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 2px solid var(--hot-coral); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
  mix-blend-mode: difference;
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   NAVBAR
============================================ */
.cp-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s;
}
.cp-navbar.scrolled {
  padding: 0.7rem 3rem;
  background: rgba(10,10,10,0.95);
}
.cp-navbar__logo {
  font-family: var(--font-display);
  font-weight: 400; font-size: 1.4rem;
  color: var(--cream);
  display: flex; align-items: center; gap: 0.6rem;
  letter-spacing: -0.01em;
}
.cp-navbar__logo-icon {
  width: 38px; height: 38px;
  background: var(--hot-coral);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(2deg); }
}
.cp-navbar__menu {
  display: flex; gap: 2.2rem; align-items: center;
}
.cp-navbar__menu a {
  color: rgba(245,240,232,0.65);
  font-weight: 300; font-size: 0.88rem;
  position: relative; letter-spacing: 0.3px;
}
.cp-navbar__menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--hot-coral);
  transition: width 0.3s;
}
.cp-navbar__menu a:hover { color: var(--cream); }
.cp-navbar__menu a:hover::after { width: 100%; }

.cp-navbar__actions {
  display: flex; gap: 1rem; align-items: center;
}
.cp-navbar__cart {
  position: relative; background: none; border: none;
  color: var(--cream); font-size: 1.3rem; cursor: pointer;
  transition: transform 0.3s;
}
.cp-navbar__cart:hover { transform: scale(1.15); }
.cp-navbar__cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--hot-coral); color: white;
  font-size: 0.6rem; font-weight: 500;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cp-navbar__cta {
  background: var(--hot-coral); color: white;
  padding: 0.6rem 1.5rem; border-radius: 50px;
  font-weight: 400; font-size: 0.82rem;
  transition: all 0.3s; border: none; cursor: pointer;
  letter-spacing: 0.5px; font-family: var(--font-body);
}
.cp-navbar__cta:hover {
  background: var(--electric-yellow); color: var(--ink-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,60,56,0.3);
}

/* Mobile menu toggle */
.cp-navbar__toggle {
  display: none; background: none; border: none;
  color: var(--cream); font-size: 1.5rem; cursor: pointer;
}

/* Mobile nav */
.cp-mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.cp-mobile-nav.active { display: flex; }
.cp-mobile-nav a {
  font-family: var(--font-display);
  font-weight: 200; font-size: 2rem;
  color: var(--cream);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.cp-mobile-nav a:hover { color: var(--hot-coral); }
.cp-mobile-nav__close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--cream); font-size: 2rem; cursor: pointer;
}

@media (max-width: 768px) {
  .cp-navbar { padding: 0.8rem 1.5rem; }
  .cp-navbar__menu { display: none; }
  .cp-navbar__toggle { display: block; }
}

/* ============================================
   HERO SECTION
============================================ */
.cp-hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 7rem 3rem 4rem;
}
/* Grain overlay */
.cp-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}
.cp-hero__bg-shapes {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.cp-hero__shape {
  position: absolute; border-radius: 50%; opacity: 0.07;
  animation: floatShape 20s ease-in-out infinite;
}
.cp-hero__shape:nth-child(1) {
  width: 600px; height: 600px;
  background: var(--hot-coral);
  top: -200px; right: -100px;
}
.cp-hero__shape:nth-child(2) {
  width: 400px; height: 400px;
  background: var(--electric-yellow);
  bottom: -100px; left: -50px;
  animation-delay: -7s;
}
.cp-hero__shape:nth-child(3) {
  width: 300px; height: 300px;
  background: var(--deep-teal);
  top: 50%; left: 50%;
  animation-delay: -14s;
}
@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.cp-hero__inner {
  max-width: 1400px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.cp-hero__text { max-width: 640px; }
.cp-hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,60,56,0.12);
  border: 1px solid rgba(255,60,56,0.25);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  color: var(--hot-coral); font-size: 0.72rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s ease forwards;
  opacity: 0;
}
.cp-hero__badge .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--hot-coral);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.cp-hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  color: var(--cream);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.8s ease 0.15s forwards;
  opacity: 0;
  letter-spacing: -0.03em;
  font-weight: 200;
}
.cp-hero__title .highlight {
  color: var(--hot-coral);
  position: relative; display: inline-block;
}
.cp-hero__title .highlight::after {
  content: ''; position: absolute;
  bottom: 5px; left: 0; width: 100%; height: 10px;
  background: rgba(255,60,56,0.15);
  transform: skewX(-12deg); z-index: -1;
}
.cp-hero__desc {
  font-size: 1.05rem; line-height: 1.8;
  color: rgba(245,240,232,0.5);
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
  opacity: 0; font-weight: 300;
}
.cp-hero__buttons {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual */
.cp-hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeSlideUp 1s ease 0.5s forwards;
  opacity: 0;
}
.cp-hero__mockup {
  position: relative; width: 100%; max-width: 500px;
}
.cp-hero__display {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(145deg, #1e1e3a 0%, #2a2a4a 50%, #1a1a35 100%);
  border-radius: 30px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  overflow: hidden;
}
.cp-hero__display::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px; pointer-events: none;
}
.cp-hero__display svg {
  width: 65%;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  animation: tshirtFloat 6s ease-in-out infinite;
}
@keyframes tshirtFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}
.cp-hero__tag {
  position: absolute;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1.1rem;
  border-radius: 14px;
  font-size: 0.76rem; font-weight: 400;
  color: var(--ink-black);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  animation: tagFloat 4s ease-in-out infinite;
  display: flex; align-items: center; gap: 0.4rem;
}
.cp-hero__tag:nth-child(1) { top: 12%; left: -8%; animation-delay: -1s; }
.cp-hero__tag:nth-child(2) { top: 58%; right: -8%; animation-delay: -2s; }
.cp-hero__tag:nth-child(3) { bottom: 8%; left: 5%; animation-delay: -3s; }
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  .cp-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .cp-hero__visual { display: none; }
  .cp-hero__text { max-width: 100%; }
  .cp-hero__buttons { justify-content: center; }
}
@media (max-width: 768px) {
  .cp-hero { padding: 6rem 1.5rem 3rem; }
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--hot-coral); color: white;
  padding: 1rem 2.4rem; border-radius: 60px;
  font-weight: 400; font-size: 0.92rem;
  border: none; cursor: pointer;
  transition: all 0.4s; position: relative; overflow: hidden;
  font-family: var(--font-body); letter-spacing: 0.5px;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,60,56,0.35);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--cream);
  padding: 1rem 2.4rem; border-radius: 60px;
  font-weight: 300; font-size: 0.92rem;
  border: 1.5px solid rgba(245,240,232,0.18);
  cursor: pointer; transition: all 0.4s;
  font-family: var(--font-body); letter-spacing: 0.5px;
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(245,240,232,0.05);
  transform: translateY(-3px);
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--ink-black); color: white;
  padding: 0.9rem 1.8rem; border-radius: 12px;
  font-weight: 400; font-size: 0.85rem;
  border: none; cursor: pointer; transition: all 0.3s;
  font-family: var(--font-body); letter-spacing: 0.5px;
  width: 100%;  justify-content: center;
}
.btn-dark:hover {
  background: var(--hot-coral);
  transform: translateY(-2px);
}

/* ============================================
   SCROLLING MARQUEE
============================================ */
.cp-marquee {
  background: var(--hot-coral);
  padding: 0.8rem 0;
  overflow: hidden;
}
.cp-marquee__inner {
  display: flex; gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap; width: max-content;
}
.cp-marquee__inner span {
  font-family: var(--font-display);
  font-weight: 300; font-size: 0.82rem;
  color: white; text-transform: uppercase;
  letter-spacing: 5px;
  display: flex; align-items: center; gap: 1.5rem;
}
.cp-marquee__inner span::after {
  content: '✦'; font-size: 0.5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS — SHARED
============================================ */
.cp-section {
  padding: 6rem 3rem;
}
.cp-section--dark {
  background: var(--ink-black); color: var(--cream);
}
.cp-section--cream {
  background: var(--cream);
}
.cp-container {
  max-width: 1300px; margin: 0 auto;
}
.cp-section__header {
  text-align: center; margin-bottom: 4rem;
}
.cp-section__label {
  font-size: 0.7rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--hot-coral); margin-bottom: 1rem;
  display: block; font-family: var(--font-body);
}
.cp-section__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  font-weight: 200;
}
.cp-section__sub {
  font-size: 1rem; opacity: 0.55;
  max-width: 560px; margin: 0 auto;
  line-height: 1.7; font-weight: 300;
}

@media (max-width: 768px) {
  .cp-section { padding: 4rem 1.5rem; }
}

/* ============================================
   CATEGORIES GRID
============================================ */
.cp-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.cp-cat-card {
  position: relative; border-radius: 24px;
  overflow: hidden; cursor: pointer;
  aspect-ratio: 1;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.cp-cat-card:hover { transform: scale(1.03); }
.cp-cat-card__bg {
  position: absolute; inset: 0;
  transition: transform 0.6s;
}
.cp-cat-card:hover .cp-cat-card__bg { transform: scale(1.1); }
.cp-cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
}
.cp-cat-card__icon {
  font-size: 2.5rem; margin-bottom: 0.8rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.cp-cat-card h3 {
  font-family: var(--font-display);
  font-weight: 300; font-size: 1.25rem;
  color: white; margin-bottom: 0.3rem;
  letter-spacing: 0.01em;
}
.cp-cat-card p {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.cp-cat-card__arrow {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  color: white; font-size: 1rem;
  transition: all 0.3s;
}
.cp-cat-card:hover .cp-cat-card__arrow {
  background: var(--hot-coral);
  transform: rotate(-45deg);
}

/* ============================================
   PRODUCT FILTER TABS
============================================ */
.cp-filters {
  display: flex; gap: 0.7rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 3rem;
}
.cp-filter-btn {
  padding: 0.6rem 1.5rem; border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.08);
  background: white; cursor: pointer;
  font-weight: 400; font-size: 0.8rem;
  font-family: var(--font-body);
  transition: all 0.3s;
  color: #666; letter-spacing: 0.3px;
}
.cp-filter-btn.active,
.cp-filter-btn:hover {
  background: var(--ink-black);
  color: white; border-color: var(--ink-black);
}

/* ============================================
   PRODUCTS GRID
============================================ */
.cp-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.cp-product {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.cp-product:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-hover-shadow);
}
.cp-product__badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.3rem 0.85rem; border-radius: 50px;
  font-size: 0.63rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.cp-product__badge--hot { background: var(--hot-coral); color: white; }
.cp-product__badge--new { background: var(--electric-yellow); color: var(--ink-black); }
.cp-product__badge--sale { background: var(--deep-teal); color: white; }

.cp-product__image {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.cp-product__image .emoji-icon {
  font-size: 5rem;
  transition: transform 0.5s;
}
.cp-product:hover .cp-product__image .emoji-icon {
  transform: scale(1.1) rotate(-3deg);
}
.cp-product__quick {
  position: absolute; bottom: 1rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0; transition: all 0.4s;
  display: flex; gap: 0.5rem;
}
.cp-product:hover .cp-product__quick {
  opacity: 1; transform: translateX(-50%) translateY(0);
}
.cp-product__quick-btn {
  width: 40px; height: 40px;
  background: white; border: none;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  transition: all 0.3s;
}
.cp-product__quick-btn:hover {
  background: var(--hot-coral); color: white;
  transform: scale(1.1);
}

.cp-product__info { padding: 1.5rem; }
.cp-product__cat {
  font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 3px; color: var(--muted-sage);
  font-weight: 400; margin-bottom: 0.5rem;
}
.cp-product__name {
  font-family: var(--font-display);
  font-weight: 400; font-size: 1.02rem;
  margin-bottom: 0.4rem; line-height: 1.3;
  letter-spacing: -0.01em;
}
.cp-product__desc {
  font-size: 0.78rem; color: #999;
  margin-bottom: 0.5rem; font-weight: 300;
}
.cp-product__bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: 0.7rem;
}
.cp-product__price {
  font-size: 1.15rem; font-weight: 400;
  color: var(--hot-coral);
  font-family: var(--font-display);
}
.cp-product__price .original {
  font-size: 0.82rem; color: #bbb;
  text-decoration: line-through;
  margin-left: 0.4rem; font-weight: 300;
}
.cp-product__rating {
  color: var(--electric-yellow);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .cp-products { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}
@media (max-width: 480px) {
  .cp-products { grid-template-columns: 1fr; }
  .cp-categories { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   HOW IT WORKS
============================================ */
.cp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.cp-step {
  text-align: center; padding: 2.5rem 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: all 0.4s;
}
.cp-step:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-5px);
}
.cp-step__num {
  font-family: var(--font-display);
  font-weight: 200; font-size: 4rem;
  color: rgba(255,60,56,0.1);
  position: absolute; top: 1rem; left: 1.5rem;
}
.cp-step__icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--hot-coral), #ff6b6b);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(255,60,56,0.2);
}
.cp-step h3 {
  font-weight: 400; font-size: 1.05rem;
  margin-bottom: 0.8rem; color: var(--cream);
  letter-spacing: 0.01em;
}
.cp-step p {
  font-size: 0.83rem; line-height: 1.7;
  color: rgba(245,240,232,0.45); font-weight: 300;
}

/* ============================================
   FEATURES BANNER
============================================ */
.cp-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--deep-teal) 0%, #0a8c96 100%);
}
.cp-feature {
  text-align: center; color: white;
  padding: 1.5rem;
}
.cp-feature__icon {
  font-size: 2.3rem; margin-bottom: 1rem;
  display: block;
  animation: featureBounce 3s ease-in-out infinite;
}
.cp-feature:nth-child(2) .cp-feature__icon { animation-delay: -0.5s; }
.cp-feature:nth-child(3) .cp-feature__icon { animation-delay: -1s; }
.cp-feature:nth-child(4) .cp-feature__icon { animation-delay: -1.5s; }
@keyframes featureBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cp-feature h4 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 0.92rem;
  margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
.cp-feature p {
  font-size: 0.8rem; opacity: 0.65;
  line-height: 1.5; font-weight: 300;
}

/* ============================================
   TESTIMONIALS
============================================ */
.cp-testimonials {
  display: flex; gap: 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
}
.cp-testimonials::-webkit-scrollbar { display: none; }
.cp-testimonial {
  min-width: 340px; max-width: 400px;
  background: white; border-radius: 24px;
  padding: 2.5rem;
  scroll-snap-align: start;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s;
  flex-shrink: 0;
}
.cp-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}
.cp-testimonial__stars {
  color: var(--electric-yellow);
  font-size: 0.95rem; margin-bottom: 1rem;
}
.cp-testimonial__text {
  font-size: 0.95rem; line-height: 1.75;
  margin-bottom: 1.5rem; color: #555;
  font-style: italic; font-weight: 300;
}
.cp-testimonial__author {
  display: flex; align-items: center; gap: 1rem;
}
.cp-testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--hot-coral), var(--electric-yellow));
}
.cp-testimonial__name {
  font-weight: 500; font-size: 0.88rem;
  font-family: var(--font-display);
}
.cp-testimonial__role {
  font-size: 0.75rem; color: #999;
}

/* ============================================
   CTA SECTION
============================================ */
.cp-cta {
  padding: 8rem 3rem;
  background: var(--ink-black);
  position: relative; overflow: hidden;
  text-align: center;
}
.cp-cta::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,60,56,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cp-cta__inner { position: relative; z-index: 2; }
.cp-cta__title {
  font-size: clamp(2rem, 5vw, 4.2rem);
  color: var(--cream); margin-bottom: 1.5rem;
  font-weight: 200; letter-spacing: -0.03em;
}
.cp-cta__sub {
  font-size: 1rem; color: rgba(245,240,232,0.45);
  margin-bottom: 2.5rem; max-width: 500px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7; font-weight: 300;
}

/* Newsletter form */
.cp-newsletter {
  display: flex; gap: 0.5rem;
  max-width: 480px; margin: 0 auto;
}
.cp-newsletter input {
  flex: 1; padding: 1rem 1.5rem;
  border: 1.5px solid rgba(245,240,232,0.1);
  border-radius: 60px; font-size: 0.88rem;
  background: rgba(255,255,255,0.03);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  transition: border-color 0.3s;
}
.cp-newsletter input::placeholder { color: rgba(245,240,232,0.25); }
.cp-newsletter input:focus {
  outline: none; border-color: var(--hot-coral);
}
.cp-newsletter button {
  padding: 1rem 2rem; background: var(--hot-coral);
  color: white; border: none; border-radius: 60px;
  font-weight: 400; font-size: 0.88rem;
  cursor: pointer; font-family: var(--font-body);
  transition: all 0.3s; white-space: nowrap;
  letter-spacing: 0.5px;
}
.cp-newsletter button:hover {
  background: var(--electric-yellow);
  color: var(--ink-black);
}

@media (max-width: 768px) {
  .cp-newsletter { flex-direction: column; }
}

/* ============================================
   FOOTER
============================================ */
.cp-footer {
  background: #050505;
  padding: 5rem 3rem 2rem;
  color: rgba(245,240,232,0.45);
}
.cp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; max-width: 1300px;
  margin: 0 auto 4rem;
}
.cp-footer__brand .cp-navbar__logo { margin-bottom: 1.5rem; }
.cp-footer__desc {
  font-size: 0.85rem; line-height: 1.75;
  max-width: 320px; margin-bottom: 1.5rem;
  font-weight: 300;
}
.cp-footer__social {
  display: flex; gap: 0.8rem;
}
.cp-footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 0.9rem;
  transition: all 0.3s;
}
.cp-footer__social a:hover {
  background: var(--hot-coral);
  transform: translateY(-3px);
}
.cp-footer__col h4 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 0.8rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 2px; text-transform: uppercase;
}
.cp-footer__col li { margin-bottom: 0.7rem; }
.cp-footer__col a {
  font-size: 0.85rem; font-weight: 300;
  transition: color 0.3s;
}
.cp-footer__col a:hover { color: var(--hot-coral); }
.cp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  text-align: center; font-size: 0.8rem;
  max-width: 1300px; margin: 0 auto;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .cp-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cp-footer { padding: 3rem 1.5rem 2rem; }
  .cp-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================
   SCROLL ANIMATIONS
============================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================
   TOAST NOTIFICATION
============================================ */
.cp-toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--ink-black); color: var(--cream);
  padding: 1rem 2rem; border-radius: 14px;
  font-weight: 400; font-size: 0.83rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 9999; display: flex; align-items: center; gap: 0.8rem;
  border-left: 3px solid var(--hot-coral);
}
.cp-toast.show { transform: translateY(0); opacity: 1; }

/* ============================================
   BACK TO TOP
============================================ */
.cp-back-top {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 46px; height: 46px;
  background: var(--hot-coral); color: white;
  border: none; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(20px);
  transition: all 0.4s; z-index: 999;
}
.cp-back-top.show { opacity: 1; transform: translateY(0); }
.cp-back-top:hover {
  background: var(--electric-yellow);
  color: var(--ink-black);
  transform: translateY(-3px) !important;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
============================================ */
.woocommerce ul.products li.product a img {
  border-radius: 16px;
}
.woocommerce ul.products li.product .price {
  color: var(--hot-coral);
  font-family: var(--font-display);
  font-weight: 400;
}
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--ink-black) !important;
  color: white !important;
  border-radius: 12px !important;
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  transition: all 0.3s !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--hot-coral) !important;
}
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info {
  border-top-color: var(--hot-coral);
}
.woocommerce .woocommerce-message::before {
  color: var(--hot-coral);
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: 8px;
  font-family: var(--font-body);
}
