/*
Theme Name: CattacKids
Theme URI: https://cattackids.com
Author: CattacKids
Author URI: https://cattackids.com
Description: TR/EN Bilingual Baby & Kids Clothing Store with Retail/Wholesale modes
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 7.0
WC tested up to: 9.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cattackids
Tags: e-commerce, woocommerce, bilingual, kids, baby, clothing
*/

/* =========================================
   CSS VARIABLES & ROOT
========================================= */
:root {
  --orange:    #FF6B2B;
  --orange-lt: #FF8F5E;
  --orange-dk: #E55520;
  --green:     #3DBE7A;
  --green-lt:  #6FD89D;
  --green-dk:  #2A9A5E;
  --blue:      #3B9EE8;
  --blue-lt:   #6DBFF5;
  --blue-dk:   #2278C4;
  --purple:    #9B6FE8;
  --purple-lt: #BF9DF5;
  --purple-dk: #7A4EC9;

  --white:     #FFFFFF;
  --off-white: #F9F7F4;
  --gray-50:   #F5F5F5;
  --gray-100:  #EBEBEB;
  --gray-200:  #D6D6D6;
  --gray-400:  #9E9E9E;
  --gray-600:  #666666;
  --gray-800:  #333333;
  --black:     #1A1A1A;

  --font-display: 'Nunito', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-full:9999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);

  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);

  --header-height: 72px;
  --container-max: 1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.wholesale-mode {
  --mode-accent: var(--blue);
  --mode-accent-lt: var(--blue-lt);
}
body.retail-mode {
  --mode-accent: var(--orange);
  --mode-accent-lt: var(--orange-lt);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* =========================================
   TYPOGRAPHY
========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,107,43,0.35);
}
.btn-primary:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,43,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(61,190,122,0.35);
}
.btn-green:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(59,158,232,0.35);
}
.btn-blue:hover {
  background: var(--blue-dk);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  font-size: 1rem;
  padding: 14px 32px;
}
.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.btn-whatsapp svg { width: 22px; height: 22px; }

.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* =========================================
   BADGES & TAGS
========================================= */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-orange { background: rgba(255,107,43,0.12); color: var(--orange-dk); }
.badge-green  { background: rgba(61,190,122,0.12); color: var(--green-dk); }
.badge-blue   { background: rgba(59,158,232,0.12); color: var(--blue-dk); }
.badge-purple { background: rgba(155,111,232,0.12); color: var(--purple-dk); }

/* =========================================
   HEADER
========================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  height: var(--header-height);
  transition: all var(--transition);
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.logo-text span { color: var(--orange); }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.current {
  color: var(--orange);
  background: rgba(255,107,43,0.08);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mode Toggle */
.mode-toggle {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
  position: relative;
}
.mode-toggle .mode-btn {
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--gray-600);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}
.mode-toggle .mode-btn.active {
  color: var(--white);
}
.mode-toggle .mode-btn[data-mode="retail"].active {
  background: var(--orange);
  box-shadow: 0 2px 10px rgba(255,107,43,0.4);
}
.mode-toggle .mode-btn[data-mode="wholesale"].active {
  background: var(--blue);
  box-shadow: 0 2px 10px rgba(59,158,232,0.4);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 4px;
}
.lang-btn {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--gray-600);
  transition: all var(--transition);
}
.lang-btn.active {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}

/* Cart Icon */
.cart-icon-btn {
  position: relative;
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--gray-800);
}
.cart-icon-btn:hover { background: var(--orange); color: var(--white); }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* User Icon */
.user-icon-btn {
  width: 42px; height: 42px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--gray-800);
}
.user-icon-btn:hover { background: var(--purple); color: var(--white); }

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--gray-100);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Wholesale Banner */
.wholesale-banner {
  display: none;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.88rem;
  font-weight: 600;
}
.wholesale-banner a {
  color: var(--white);
  text-decoration: underline;
  margin-left: 8px;
}
body.wholesale-mode .wholesale-banner { display: block; }

/* =========================================
   MOBILE NAV
========================================= */
#mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--white);
  z-index: 999;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition);
}
#mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
#mobile-nav a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF5F0 0%, #F0F8FF 50%, #F5F0FF 100%);
  padding: 80px 0 60px;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.hero-shape-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -200px; right: -100px;
}
.hero-shape-2 {
  width: 350px; height: 350px;
  background: var(--blue);
  bottom: -150px; left: -80px;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--green);
  top: 50%; right: 20%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.1);
  color: var(--orange-dk);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-title { margin-bottom: 16px; }
.hero-title .accent { color: var(--orange); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat-item { }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--gray-600); margin-top: 4px; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 440px;
}
.hero-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  animation: floatUp 0.6s ease both;
}
.hero-product-card:nth-child(2) { animation-delay: 0.1s; margin-top: 24px; }
.hero-product-card:nth-child(3) { animation-delay: 0.2s; margin-top: -24px; }
.hero-product-card:nth-child(4) { animation-delay: 0.3s; }
.hero-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hero-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-100);
  overflow: hidden;
}
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.hero-card-info { padding: 12px; }
.hero-card-info .name { font-weight: 700; font-size: 0.82rem; margin-bottom: 4px; }
.hero-card-info .price { color: var(--orange); font-weight: 800; font-size: 0.9rem; }

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

/* Wholesale hero variation */
body.wholesale-mode .hero-section {
  background: linear-gradient(135deg, #F0F8FF 0%, #F0F0FF 50%, #F5F8FF 100%);
}
body.wholesale-mode .hero-eyebrow {
  background: rgba(59,158,232,0.1);
  color: var(--blue-dk);
}
body.wholesale-mode .hero-title .accent { color: var(--blue); }

/* =========================================
   SECTION COMMONS
========================================= */
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-600); max-width: 560px; margin: 0 auto; }

.section-bg-white { background: var(--white); }
.section-bg-light { background: var(--gray-50); }

/* =========================================
   CATEGORY GRID (Main Home Boxes)
========================================= */
.category-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.category-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.category-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.category-box-header {
  padding: 32px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cat-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}
.category-box.monthly .cat-icon { background: rgba(255,107,43,0.12); }
.category-box.age .cat-icon { background: rgba(59,158,232,0.12); }

.category-box-title {
  padding: 20px 32px 0;
}
.category-box-title h3 { margin-bottom: 6px; }
.category-box-title p { font-size: 0.9rem; color: var(--gray-600); }

.age-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px 32px 32px;
}
.age-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-50);
  transition: all var(--transition);
  aspect-ratio: 1.2;
}
.age-card:hover { transform: scale(1.03); }
.age-card .age-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: var(--white);
  padding: 20px 12px 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}
.age-card .age-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.age-card .age-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
}

/* Hover overlay with gender options */
.age-card .gender-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-md);
}
.age-card:hover .gender-overlay { opacity: 1; }
.gender-overlay .age-range-label {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.gender-btns { display: flex; gap: 8px; }
.gender-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.78rem;
  border: 2px solid;
  transition: all var(--transition);
  background: transparent;
}
.gender-btn.boy {
  color: var(--blue);
  border-color: var(--blue);
}
.gender-btn.boy:hover {
  background: var(--blue);
  color: var(--white);
}
.gender-btn.girl {
  color: var(--purple);
  border-color: var(--purple);
}
.gender-btn.girl:hover {
  background: var(--purple);
  color: var(--white);
}

/* Monthly specific */
.category-box.monthly { background: linear-gradient(145deg, #FFF5F0, #FFFAF7); }
.category-box.age     { background: linear-gradient(145deg, #F0F8FF, #F7FBFF); }

/* =========================================
   PRODUCT GRID
========================================= */
.product-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-100);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
}
.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.product-wishlist:hover { color: #FF4466; background: var(--white); }
.product-wishlist.active { color: #FF4466; }

.product-card-info { padding: 16px; }
.product-card-info .product-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
  margin-bottom: 6px;
}
.product-card-info .product-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--black);
  line-height: 1.3;
}
.product-card-info .product-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-info .product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--orange);
}
.product-price-old {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 6px;
}
.add-to-cart-btn {
  width: 34px; height: 34px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.add-to-cart-btn:hover { background: var(--orange-dk); transform: scale(1.1); }

/* Wholesale product card - no price */
body.wholesale-mode .product-price-row { display: none; }
body.wholesale-mode .product-card-info { padding-bottom: 20px; }
body.wholesale-mode .product-card-info::after {
  content: '';
  display: block;
}

/* WhatsApp CTA on product (wholesale) */
.product-card-wholesale-cta {
  display: none;
  padding: 0 16px 16px;
}
body.wholesale-mode .product-card-wholesale-cta { display: block; }
.product-card-wholesale-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25D366;
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
}
.product-card-wholesale-cta a:hover { background: #1DA851; }

/* =========================================
   WHOLESALE SECTION
========================================= */
.wholesale-cta-section {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.wholesale-cta-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  top: -150px; right: -80px;
}
.wholesale-cta-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  bottom: -100px; left: -60px;
}
.wholesale-cta-section .container { position: relative; z-index: 1; }
.wholesale-cta-section h2 { color: var(--white); margin-bottom: 16px; }
.wholesale-cta-section p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.wholesale-cta-section .whatsapp-number {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wholesale-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.wholesale-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wholesale-feature .icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.wholesale-feature span {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.9;
}

/* =========================================
   FEATURES / USP
========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}
.feature-card:nth-child(1) .feature-icon { background: rgba(255,107,43,0.12); }
.feature-card:nth-child(2) .feature-icon { background: rgba(61,190,122,0.12); }
.feature-card:nth-child(3) .feature-icon { background: rgba(59,158,232,0.12); }
.feature-card:nth-child(4) .feature-icon { background: rgba(155,111,232,0.12); }
.feature-card h4 { margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-600); }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}
.testimonial-stars { color: #FFBB00; margin-bottom: 12px; font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-lt), var(--purple-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--gray-600); }

/* =========================================
   NEWSLETTER
========================================= */
.newsletter-section {
  background: linear-gradient(135deg, #FFF5F0, #FFF0F8);
  text-align: center;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 32px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--orange); }

/* =========================================
   FOOTER
========================================= */
#site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .site-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--orange); }

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.footer-contact-item .icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-whatsapp-cta {
  margin-top: 20px;
}
.footer-whatsapp-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
}
.footer-whatsapp-cta a:hover { background: #1DA851; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--orange); }

/* =========================================
   STICKY WHATSAPP BUTTON
========================================= */
.sticky-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  animation: pulse-wa 2s ease infinite;
}
.sticky-whatsapp a {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: all var(--transition);
}
.sticky-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.65);
}
.sticky-whatsapp svg { width: 28px; height: 28px; color: white; }
@keyframes pulse-wa {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =========================================
   WOOCOMMERCE OVERRIDES
========================================= */
.woocommerce-page .woocommerce-breadcrumb {
  font-size: 0.85rem;
  color: var(--gray-400);
  padding: 12px 0;
}
.woocommerce-page .woocommerce-breadcrumb a:hover { color: var(--orange); }

/* Single Product */
.woocommerce div.product .product_title {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
}
.woocommerce div.product .price {
  color: var(--orange) !important;
  font-weight: 900 !important;
  font-size: 1.6rem !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border: none !important;
  transition: all var(--transition) !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--orange-dk) !important;
  transform: translateY(-2px) !important;
}
.woocommerce .star-rating span::before { color: #FFBB00; }

/* Wholesale mode hides prices in WooCommerce */
body.wholesale-mode .woocommerce div.product .price { display: none !important; }
body.wholesale-mode .woocommerce div.product form.cart { display: none !important; }
body.wholesale-mode .woocommerce-Price-amount { display: none !important; }

/* Cart & Checkout */
.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.woocommerce .cart-collaterals .cart_totals {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* =========================================
   ACCOUNT PAGES
========================================= */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: rgba(255,107,43,0.1);
  color: var(--orange);
}

/* Login / Register Forms */
.cattackids-auth-wrap {
  max-width: 900px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.auth-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.auth-card h2 { margin-bottom: 8px; }
.auth-card .auth-sub { color: var(--gray-600); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--gray-800);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus { border-color: var(--orange); }

.social-login { margin-bottom: 24px; }
.social-login-title {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  position: relative;
}
.social-login-title::before,
.social-login-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--gray-200);
}
.social-login-title::before { left: 0; }
.social-login-title::after  { right: 0; }
.social-btns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--white);
  color: var(--gray-800);
  transition: all var(--transition);
}
.social-login-btn:hover { border-color: var(--orange); color: var(--orange); }

/* =========================================
   BREADCRUMB
========================================= */
.page-breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-breadcrumb a:hover { color: var(--orange); }
.page-breadcrumb .sep { color: var(--gray-400); }
.page-breadcrumb .current { color: var(--gray-800); font-weight: 600; }

/* =========================================
   PRODUCT ARCHIVE PAGE
========================================= */
.archive-header {
  background: linear-gradient(135deg, #FFF5F0, #F0F8FF);
  padding: 48px 0;
  margin-bottom: 48px;
}
.archive-header h1 { margin-bottom: 8px; }
.archive-header p { color: var(--gray-600); }
.archive-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.archive-count { font-size: 0.9rem; color: var(--gray-600); }
.archive-sort {
  padding: 8px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  transition: border-color var(--transition);
}
.archive-sort:focus { border-color: var(--orange); }

/* =========================================
   PAGINATION
========================================= */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-num {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all var(--transition);
}
.page-num.current,
.page-num:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* =========================================
   NOTICES / ALERTS
========================================= */
.woocommerce-notice,
.woocommerce-error,
.woocommerce-info {
  border-radius: var(--radius-md) !important;
  border: none !important;
}
.woocommerce-notice { background: rgba(61,190,122,0.1) !important; color: var(--green-dk) !important; }
.woocommerce-error  { background: rgba(255,80,80,0.1) !important; color: #CC2200 !important; }
.woocommerce-info   { background: rgba(59,158,232,0.1) !important; color: var(--blue-dk) !important; }

/* =========================================
   COOKIE NOTICE
========================================= */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  color: rgba(255,255,255,0.9);
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { font-size: 0.88rem; margin: 0; }
.cookie-notice a { color: var(--orange); text-decoration: underline; }
.cookie-notice-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--green); color: var(--white); border: none; padding: 8px 20px; border-radius: var(--radius-full); font-weight: 700; font-size: 0.85rem; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); padding: 8px 20px; border-radius: var(--radius-full); font-size: 0.85rem; }

/* =========================================
   LOADING SPINNER
========================================= */
.loading-spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 3px solid rgba(255,107,43,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================
   SCROLL ANIMATIONS
========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

@media (max-width: 768px) {
  :root { --header-height: 62px; }
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .category-boxes { grid-template-columns: 1fr; }
  .hero-section { padding: 48px 0 40px; }
  .hero-stats { gap: 20px; }
  .hero-actions .btn { padding: 12px 22px; font-size: 0.9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .cattackids-auth-wrap { grid-template-columns: 1fr; }
  .lang-toggle { display: none; }
  .wholesale-features { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mode-toggle .mode-btn { padding: 6px 12px; font-size: 0.75rem; }
  .sticky-whatsapp { bottom: 16px; right: 16px; }
  .sticky-whatsapp a { width: 50px; height: 50px; }
}

/* =========================================
   COLLECTION TABS
========================================= */
.collection-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 6px;
    width: fit-content;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}
.col-tab {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    background: transparent;
    color: var(--gray-600);
    transition: all var(--transition);
    cursor: pointer;
}
.col-tab.active {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(255,107,43,0.35);
}
.col-tab:not(.active):hover {
    background: var(--gray-100);
    color: var(--gray-800);
}
.col-pane { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* =========================================
   TESTIMONIALS SLIDER
========================================= */
.testimonials-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 8px 0 24px;
}
.testimonials-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite;
    padding: 0 24px;
}
.testimonials-track:hover { animation-play-state: paused; }
.testimonial-slide {
    width: 320px;
    flex-shrink: 0;
}
@keyframes scrollTestimonials {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    line-height: 1;
}
.slider-nav:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.testimonial-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
}

/* =========================================
   NEWSLETTER V2
========================================= */
.newsletter-section { background: linear-gradient(135deg, #FFF5F0, #FFF0F8); }
.newsletter-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.newsletter-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    margin-bottom: 12px;
}
.newsletter-inner h2 { margin-bottom: 16px; }
.newsletter-inner p { color: var(--gray-600); margin-bottom: 28px; }
.newsletter-form-v2 { display: flex; flex-direction: column; gap: 12px; max-width: 480px; }
.nl-input-wrap {
    position: relative;
}
.nl-input-wrap input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition);
    background: var(--white);
}
.nl-input-wrap input:focus,
.nl-input-wrap input:not(:placeholder-shown) {
    border-color: var(--orange);
}
.nl-input-wrap label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--gray-400);
    pointer-events: none;
    transition: all var(--transition);
    background: var(--white);
    padding: 0 4px;
}
.nl-input-wrap input:focus ~ label,
.nl-input-wrap input:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.72rem;
    color: var(--orange);
    font-weight: 600;
}
.nl-privacy { font-size: 0.78rem; color: var(--gray-400); margin: 0; }

/* Newsletter visual */
.nl-badge-stack { display: flex; flex-direction: column; gap: 14px; }
.nl-badge {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-800);
    transition: transform var(--transition);
}
.nl-badge:hover { transform: translateX(6px); }
.nl-badge-1 {
    background: linear-gradient(135deg, var(--orange), var(--purple));
    color: var(--white);
}
.nl-pct { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.nl-badge-1 > div:last-child { font-size: 0.82rem; opacity: 0.9; }

/* =========================================
   ABOUT PAGE RESPONSIVE
========================================= */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
@media (max-width: 768px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 32px; }
    .newsletter-visual { display: none; }
    .testimonial-slide { width: 280px; }
    .collection-tabs { width: 100%; justify-content: center; }
    .col-tab { padding: 9px 16px; font-size: 0.82rem; }
}

/* =========================================
   LOGIN / REGISTER PAGE UPDATED
========================================= */
.ck-auth-page {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #FFF5F0 0%, #F0F8FF 100%);
    min-height: 80vh;
}
.ck-auth-tabs {
    display: flex;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 4px;
    width: fit-content;
    margin: 0 auto 32px;
    gap: 2px;
}
.auth-tab-btn {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-600);
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
}
.auth-tab-btn.active {
    background: var(--white);
    color: var(--orange);
    box-shadow: var(--shadow-sm);
}
.ck-auth-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.auth-type-btn {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
}
.auth-type-btn:hover,
.auth-type-btn.active {
    border-color: var(--orange);
    background: rgba(255,107,43,0.04);
}
.auth-type-btn.active-wholesale { border-color: var(--blue); background: rgba(59,158,232,0.04); }
.auth-type-icon { font-size: 1.8rem; margin-bottom: 8px; }
.auth-type-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.auth-type-desc { font-size: 0.75rem; color: var(--gray-600); }

/* =========================================
   WOOCOMMERCE TURKISH OVERRIDES (classes)
========================================= */
.woocommerce-cart-form .shop_table thead th,
.woocommerce-cart .cart-collaterals h2 {
    font-family: var(--font-display);
}

/* PayTR badge */
.paytr-secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59,158,232,0.08);
    color: var(--blue-dk);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    margin-top: 12px;
}

/* =========================================
   COLLECTION TABS (Ana Sayfa - 3 tab)
========================================= */
.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    background: var(--white);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 6px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}
.collection-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--gray-600);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
}
.collection-tab .tab-icon { font-size: 1.2rem; }
.collection-tab.active {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(255,107,43,0.35);
}
.collection-tab:not(.active):hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

/* Collection cards grid - 4 col */
.collection-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.collection-cards-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
    margin: 0 auto;
}
.collection-card {
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
    cursor: default;
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.collection-card-lg { padding: 36px 28px; }

.cc-emoji {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}
.cc-label {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--gray-800);
    margin-bottom: 16px;
}
.collection-card-lg .cc-label { font-size: 1.6rem; }

.cc-btns {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 14px;
}
.cc-all {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gray-800);
    opacity: 0.7;
    transition: opacity var(--transition);
    text-align: center;
}
.cc-all:hover { opacity: 1; color: var(--orange); }

/* All tab - compact grid */
.collection-all-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}
.cag-card {
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.cag-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cag-emoji { font-size: 2rem; }
.cag-label { font-weight: 800; font-size: 0.9rem; color: var(--gray-800); text-align: center; }
.cag-btns { display: flex; gap: 6px; }
.cag-btn-boy, .cag-btn-girl, .cag-btn-all {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 2px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all var(--transition);
}
.cag-btn-boy:hover  { background: var(--blue);   border-color: var(--blue);   }
.cag-btn-girl:hover { background: var(--purple); border-color: var(--purple); }
.cag-btn-all:hover  { background: var(--orange); border-color: var(--orange); color: white; }

/* =========================================
   TESTIMONIAL CAROUSEL
========================================= */
.testimonials-section { overflow: hidden; }
.testimonial-carousel-wrap {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
}
.testimonial-track {
    display: flex;
    gap: 20px;
    animation: scrollLeft 40s linear infinite;
    width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-slide { flex-shrink: 0; width: 340px; }

.testimonial-card-new {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid var(--gray-100);
}
.tc-top { display: flex; align-items: center; justify-content: space-between; }
.tc-stars { color: #FFBB00; font-size: 1.1rem; letter-spacing: 1px; }
.tc-source {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
    background: var(--gray-50);
    padding: 3px 8px;
    border-radius: var(--radius-full);
}
.tc-text {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin: 0;
}
.tc-author { display: flex; align-items: center; gap: 10px; }
.tc-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.tc-avatar-photo {
    width: 40px; height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.tc-avatar-photo img { width: 100%; height: 100%; object-fit: cover; }
.tc-name { font-weight: 700; font-size: 0.88rem; }
.tc-loc  { font-size: 0.75rem; color: var(--gray-500); }

/* Overall rating */
.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.rating-score {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--black);
}
.rating-stars { color: #FFBB00; font-size: 1.4rem; }
.rating-count { font-size: 0.88rem; color: var(--gray-600); font-weight: 600; }
.rating-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.r-badge {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gray-700);
}

/* =========================================
   NEWSLETTER - NEW DESIGN
========================================= */
.newsletter-section-new {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    padding: 0;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}
.newsletter-left {
    padding: 72px 60px 72px 0;
    color: white;
}
.nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,107,43,0.2);
    border: 1px solid rgba(255,107,43,0.4);
    color: #FFB899;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.newsletter-left h2 {
    color: white;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 16px;
}
.newsletter-left p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.nl-perks { display: flex; flex-direction: column; gap: 10px; }
.nl-perk {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.newsletter-right {
    background: white;
    padding: 48px 40px;
}
.nl-form { }
.nl-emoji { font-size: 2.5rem; margin-bottom: 12px; text-align: center; }
.nl-form h3 { text-align: center; margin-bottom: 24px; font-size: 1.2rem; }
.nl-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
}
.nl-input:focus { border-color: var(--orange); }
.nl-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 12px;
    margin-bottom: 0;
}

/* =========================================
   WOOCOMMERCE - TURKISH TEXT OVERRIDES
========================================= */
/* Cart page title override */
.woocommerce-cart h1.entry-title::before { content: '🛒 '; }
.woocommerce-checkout h1.entry-title::before { content: '💳 '; }
.woocommerce-account h1.entry-title::before { content: '👤 '; }

/* PayTR payment gateway styling */
.payment_method_paytr label { font-weight: 700 !important; }
.payment_method_paytr .payment_box {
    background: rgba(59,158,232,0.05) !important;
    border-radius: var(--radius-md) !important;
}

/* =========================================
   CART PAGE MINI STYLES
========================================= */
.ck-cart-wrapper {
    padding: 40px 0 72px;
    min-height: 60vh;
}
.ck-cart-wrapper .woocommerce { max-width: 960px; margin: 0 auto; }

/* =========================================
   RESPONSIVE UPDATES
========================================= */
@media (max-width: 1024px) {
    .collection-cards-grid { grid-template-columns: repeat(2,1fr); }
    .newsletter-inner { grid-template-columns: 1fr; }
    .newsletter-left { padding: 48px 24px 0; }
    .newsletter-right { padding: 40px 24px 48px; }
}

@media (max-width: 768px) {
    .collection-cards-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .collection-cards-2 { grid-template-columns: 1fr; }
    .testimonial-slide { width: 280px; }
    .collection-tab { padding: 10px 18px; font-size: 0.88rem; }
    .collection-tabs { padding: 4px; }
    .overall-rating { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .collection-cards-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .cc-label { font-size: 1rem; }
    .cc-emoji { font-size: 2rem; }
    .newsletter-left h2 { font-size: 1.4rem; }
}
