/* ============================================
   CURTEC - Premium Fashion Store CSS
   A completely original design system
   ============================================ */

/* === CSS Variables === */
:root {
  --ct-black: #0a0a0a;
  --ct-charcoal: #1c1c1c;
  --ct-slate: #3a3a3a;
  --ct-warm: #c45d3e;
  --ct-gold: #c45d3e;
  --ct-terra: #c45d3e;
  --ct-forest: #2d4a3e;
  --ct-cream: #f3efe9;
  --ct-ivory: #f9f7f4;
  --ct-white: #ffffff;
  --ct-gray-100: #f5f4f2;
  --ct-gray-200: #e8e6e3;
  --ct-gray-300: #d0cec9;
  --ct-gray-400: #9c9a95;
  --ct-gray-500: #6e6c67;
  --ct-gray-600: #4a4845;
  --ct-red: #c0392b;
  --ct-green: #2d7a4f;
  --ct-blue: #3a6b8c;
  --ct-font-display: 'Cormorant Garamond', 'Georgia', serif;
  --ct-font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --ct-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --ct-transition: cubic-bezier(0.4, 0, 0.2, 1);
  --ct-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --ct-shadow-md: 0 4px 20px rgba(0,0,0,0.07);
  --ct-shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
  --ct-shadow-xl: 0 20px 60px rgba(0,0,0,0.13);
  --ct-radius-sm: 2px;
  --ct-radius: 4px;
  --ct-radius-lg: 8px;
  --ct-radius-xl: 12px;
}

/* === Base Reset === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: all 0.3s var(--ct-transition); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--ct-font-display); font-weight: 600; line-height: 1.2; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* === Announcement Bar === */
.ct-announce {
  background: var(--ct-charcoal);
  color: var(--ct-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.ct-announce a { color: var(--ct-warm); text-decoration: underline; }

/* === Navigation === */
.ct-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s var(--ct-transition);
}
.ct-nav.scrolled { box-shadow: var(--ct-shadow-md); }
.ct-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
}
.ct-logo {
  font-family: var(--ct-font-body);
  font-size: 22px;
  font-weight: 600;
  color: var(--ct-charcoal);
  letter-spacing: 6px;
  text-transform: uppercase;
}
.ct-logo span { color: var(--ct-warm); }
.ct-nav-links { display: flex; gap: 36px; align-items: center; }
.ct-nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ct-gray-600);
  position: relative;
  padding: 4px 0;
}
.ct-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ct-warm);
  transition: width 0.3s var(--ct-transition);
}
.ct-nav-links a:hover { color: var(--ct-charcoal); }
.ct-nav-links a:hover::after { width: 100%; }
.ct-nav-icons { display: flex; gap: 20px; align-items: center; }
.ct-nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s;
  position: relative;
  cursor: pointer;
}
.ct-nav-icon:hover { background: var(--ct-gray-100); }
.ct-nav-icon svg { width: 22px; height: 22px; stroke: var(--ct-charcoal); fill: none; stroke-width: 1.5; }
.ct-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--ct-charcoal);
  color: white;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.ct-menu-toggle { display: none; cursor: pointer; }
.ct-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ct-white);
  z-index: 2000;
  padding: 80px 30px 30px;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ct-transition);
}
.ct-mobile-menu.open { display: flex; transform: translateX(0); }
.ct-mobile-menu a {
  font-size: 24px;
  font-family: var(--ct-font-display);
  padding: 16px 0;
  border-bottom: 1px solid var(--ct-gray-200);
  color: var(--ct-charcoal);
}
.ct-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Hero Section (Full-Width Cinematic) === */
.ct-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1100px;
  overflow: hidden;
  background: var(--ct-charcoal);
}
.ct-hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ct-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 8s ease-out;
  transform: scale(1.08);
  background-size: cover;
  background-position: center;
  background-color: var(--ct-charcoal);
}
.ct-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.ct-hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}
.ct-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 8%;
  z-index: 2;
}
.ct-hero-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ct-warm);
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
  padding-left: 50px;
}
.ct-hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 1px;
  background: var(--ct-warm);
}
.ct-hero-title {
  font-family: var(--ct-font-display);
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 400;
  color: var(--ct-white);
  line-height: 1.05;
  max-width: 700px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.ct-hero-title em {
  font-style: italic;
  color: var(--ct-warm);
}
.ct-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.ct-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: var(--ct-white);
  color: var(--ct-charcoal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s var(--ct-transition);
}
.ct-hero-cta:hover {
  background: var(--ct-warm);
  color: var(--ct-white);
  gap: 20px;
}
.ct-hero-dots {
  position: absolute;
  bottom: 40px;
  left: 8%;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.ct-hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.4s;
}
.ct-hero-dot.active {
  background: var(--ct-white);
  width: 48px;
}
.ct-hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 8%;
  z-index: 3;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: scrollHint 2s ease infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* === Marquee Banner === */
.ct-marquee {
  background: var(--ct-charcoal);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ct-marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  gap: 0;
}
.ct-marquee-item {
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0 40px;
}
.ct-marquee-item span { color: var(--ct-warm); }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Section Styles === */
.ct-section {
  padding: 100px 0;
}
.ct-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.ct-section-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ct-warm);
  margin-bottom: 16px;
  font-weight: 500;
}
.ct-section-title {
  font-family: var(--ct-font-display);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 400;
  color: var(--ct-charcoal);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.ct-section-desc {
  font-size: 15px;
  color: var(--ct-gray-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === Product Grid === */
.ct-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.ct-product-card {
  background: var(--ct-white);
  overflow: hidden;
  transition: all 0.5s var(--ct-transition);
}
.ct-product-card:hover {
  transform: translateY(-3px);
}
.ct-product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ct-gray-100);
}
.ct-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ct-transition);
}
.ct-product-card:hover .ct-product-img img { transform: scale(1.06); }
.ct-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ct-warm);
  color: var(--ct-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  text-transform: uppercase;
}
.ct-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ct-charcoal);
  color: white;
  text-align: center;
  padding: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s var(--ct-transition);
  cursor: pointer;
}
.ct-product-card:hover .ct-quick-add { transform: translateY(0); }
.ct-product-info { padding: 18px 4px; }
.ct-product-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--ct-charcoal);
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.01em;
}
.ct-product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-price-current {
  font-size: 16px;
  font-weight: 600;
  color: var(--ct-charcoal);
}
.ct-price-original {
  font-size: 13px;
  color: var(--ct-gray-400);
  text-decoration: line-through;
}
.ct-price-discount {
  font-size: 11px;
  font-weight: 600;
  color: var(--ct-warm);
}

/* === Collection Banner (Full-Width Stacked) === */
.ct-collection-banner {
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-color: var(--ct-charcoal);
  transition: background-size 0.8s var(--ct-transition);
}
.ct-collection-banner:hover {
  background-size: 103%;
}
.ct-collection-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.ct-collection-banner.right-align::after {
  background: linear-gradient(270deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
}
.ct-collection-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 8%;
}
.ct-collection-banner.right-align .ct-collection-inner { text-align: right; }
.ct-collection-tag {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ct-warm);
  margin-bottom: 12px;
}
.ct-collection-title {
  font-family: var(--ct-font-display);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 400;
  font-style: italic;
  color: var(--ct-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.ct-collection-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 360px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.ct-collection-banner.right-align .ct-collection-desc { margin-left: auto; }
.ct-collection-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ct-white);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.ct-collection-link:hover { gap: 16px; border-color: var(--ct-warm); color: var(--ct-warm); }

/* === Brand Values (Text-Driven) === */
.ct-values {
  background: var(--ct-cream);
  padding: 100px 0;
}
.ct-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ct-gray-300);
}
.ct-value-item {
  padding: 40px 30px;
  border-right: 1px solid var(--ct-gray-300);
  border-bottom: 1px solid var(--ct-gray-300);
}
.ct-value-item:last-child { border-right: none; }
.ct-value-num {
  font-family: var(--ct-font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--ct-warm);
  margin-bottom: 12px;
  line-height: 1;
}
.ct-value-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ct-charcoal);
  margin-bottom: 8px;
}
.ct-value-desc {
  font-size: 13px;
  color: var(--ct-gray-500);
  line-height: 1.6;
}

/* === Newsletter (Inline Band) === */
.ct-newsletter {
  background: var(--ct-charcoal);
  padding: 50px 0;
}
.ct-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.ct-newsletter h2 {
  font-family: var(--ct-font-display);
  font-size: 28px;
  color: white;
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
}
.ct-newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  max-width: 480px;
}
.ct-newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-right: none;
  font-size: 14px;
  font-family: var(--ct-font-body);
  background: transparent;
  color: white;
}
.ct-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.ct-newsletter-form input:focus { outline: none; border-color: var(--ct-warm); }
.ct-newsletter-form button {
  padding: 16px 32px;
  background: var(--ct-warm);
  color: white;
  border: 1px solid var(--ct-warm);
  font-weight: 600;
  font-size: 11px;
  font-family: var(--ct-font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.ct-newsletter-form button:hover { background: transparent; color: var(--ct-warm); }

/* === Footer === */
.ct-footer {
  background: var(--ct-black);
  color: var(--ct-gray-400);
  padding: 60px 0 0;
}
.ct-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ct-footer-brand .ct-logo { color: white; margin-bottom: 16px; display: inline-block; }
.ct-footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.ct-footer h4 {
  color: white;
  font-family: var(--ct-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ct-footer-links a {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: var(--ct-gray-400);
  transition: color 0.3s;
}
.ct-footer-links a:hover { color: var(--ct-warm); }
.ct-footer-legal {
  font-size: 13px;
  line-height: 1.8;
}
.ct-footer-legal strong { color: white; }
.ct-footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.ct-footer-bottom a { color: var(--ct-gray-400); }
.ct-footer-bottom a:hover { color: var(--ct-warm); }

/* === Buttons === */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--ct-radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ct-transition);
}
.ct-btn-primary {
  background: var(--ct-charcoal);
  color: white;
}
.ct-btn-primary:hover { background: var(--ct-slate); transform: translateY(-1px); box-shadow: var(--ct-shadow-md); }
.ct-btn-outline {
  background: transparent;
  color: var(--ct-charcoal);
  border: 2px solid var(--ct-charcoal);
}
.ct-btn-outline:hover { background: var(--ct-charcoal); color: white; }
.ct-btn-warm {
  background: var(--ct-warm);
  color: var(--ct-charcoal);
}
.ct-btn-warm:hover { background: var(--ct-gold); }
.ct-btn-lg { padding: 18px 48px; font-size: 14px; }
.ct-btn-full { width: 100%; }
.ct-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* === Forms === */
.ct-form-group { margin-bottom: 20px; }
.ct-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ct-charcoal);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.ct-form-input, .ct-form-select, .ct-form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--ct-gray-300);
  border-radius: var(--ct-radius);
  font-size: 15px;
  color: var(--ct-charcoal);
  background: var(--ct-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.ct-form-input:focus, .ct-form-select:focus, .ct-form-textarea:focus {
  border-color: var(--ct-charcoal);
  box-shadow: 0 0 0 3px rgba(26,26,46,0.08);
}
.ct-form-input.error { border-color: var(--ct-red); }
.ct-form-error { color: var(--ct-red); font-size: 12px; margin-top: 4px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* === Cart & Checkout Layout === */
.ct-cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.ct-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

/* === Cart Page === */
.ct-cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--ct-gray-200);
}
.ct-cart-item-img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--ct-radius);
  background: var(--ct-gray-100);
}
.ct-cart-item-name { font-weight: 500; font-size: 15px; }
.ct-cart-item-variant { font-size: 13px; color: var(--ct-gray-500); }
.ct-qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--ct-gray-300);
  border-radius: var(--ct-radius-sm);
  overflow: hidden;
}
.ct-qty-btn {
  width: 36px;
  height: 36px;
  background: var(--ct-gray-100);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ct-qty-btn:hover { background: var(--ct-gray-200); }
.ct-qty-value {
  width: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  border: none;
  background: none;
}
.ct-cart-remove {
  cursor: pointer;
  color: var(--ct-gray-400);
  transition: color 0.3s;
}
.ct-cart-remove:hover { color: var(--ct-red); }

/* === Order Summary === */
.ct-summary {
  background: var(--ct-ivory);
  border-radius: var(--ct-radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.ct-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}
.ct-summary-row.total {
  border-top: 2px solid var(--ct-charcoal);
  margin-top: 10px;
  padding-top: 16px;
  font-size: 18px;
  font-weight: 700;
}
.ct-gst-note {
  font-size: 12px;
  color: var(--ct-gray-500);
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(0,0,0,0.03);
  border-radius: var(--ct-radius-sm);
}

/* === Payment Method === */
.ct-payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--ct-gray-300);
  border-radius: var(--ct-radius);
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 12px;
}
.ct-payment-option:hover { border-color: var(--ct-charcoal); }
.ct-payment-option.selected {
  border-color: var(--ct-charcoal);
  background: rgba(26,26,46,0.03);
}
.ct-payment-option input[type="radio"] { display: none; }
.ct-payment-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ct-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.ct-payment-option.selected .ct-payment-radio {
  border-color: var(--ct-charcoal);
}
.ct-payment-option.selected .ct-payment-radio::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--ct-charcoal);
  border-radius: 50%;
}
.ct-payment-label { font-weight: 600; font-size: 15px; }
.ct-payment-desc { font-size: 13px; color: var(--ct-gray-500); }

/* === UPI Payment Page === */
.ct-payment-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--ct-ivory);
}
.ct-payment-card {
  background: white;
  border-radius: var(--ct-radius-xl);
  padding: 50px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--ct-shadow-xl);
  text-align: center;
}
.ct-payment-amount {
  font-size: 40px;
  font-weight: 700;
  color: var(--ct-charcoal);
  margin: 20px 0;
  font-family: var(--ct-font-display);
}
.ct-upi-btns { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.ct-upi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: var(--ct-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.ct-upi-btn.gpay { background: #4285f4; color: white; }
.ct-upi-btn.phonepe { background: #5f259f; color: white; }
.ct-upi-btn.paytm { background: #00b9f1; color: white; }
.ct-upi-btn.generic { background: var(--ct-charcoal); color: white; }
.ct-upi-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.ct-payment-timer {
  font-size: 24px;
  font-weight: 700;
  color: var(--ct-charcoal);
  margin: 16px 0;
  font-family: var(--ct-font-mono);
}
.ct-payment-status { font-size: 14px; color: var(--ct-gray-500); margin-top: 16px; }

/* === Order Success === */
.ct-success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.ct-success-card { text-align: center; max-width: 560px; }
.ct-success-check {
  width: 80px;
  height: 80px;
  background: var(--ct-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 40px;
  animation: ct-pop 0.5s var(--ct-transition);
}
@keyframes ct-pop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* === Track Order === */
.ct-track-timeline {
  position: relative;
  padding-left: 30px;
}
.ct-track-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ct-gray-200);
}
.ct-track-step {
  position: relative;
  padding: 0 0 30px 20px;
}
.ct-track-step::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ct-gray-300);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--ct-gray-300);
}
.ct-track-step.active::before { background: var(--ct-green); box-shadow: 0 0 0 2px var(--ct-green); }
.ct-track-step.current::before { background: var(--ct-blue); box-shadow: 0 0 0 2px var(--ct-blue); animation: ct-pulse 2s infinite; }
@keyframes ct-pulse { 0%, 100% { box-shadow: 0 0 0 2px var(--ct-blue); } 50% { box-shadow: 0 0 0 6px rgba(41,128,185,0.3); } }

/* === Page Header / Banner === */
.ct-page-header {
  background: var(--ct-charcoal);
  padding: 60px 0;
  text-align: center;
}
.ct-page-header h1 {
  font-family: var(--ct-font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: white;
  margin-bottom: 8px;
}
.ct-page-header p { color: var(--ct-gray-400); font-size: 15px; }
.ct-breadcrumb { font-size: 13px; color: var(--ct-gray-400); margin-bottom: 16px; }
.ct-breadcrumb a { color: var(--ct-warm); }
.ct-breadcrumb span { margin: 0 8px; }

/* === Legal Pages === */
.ct-legal { padding: 60px 0; }
.ct-legal-content { max-width: 800px; margin: 0 auto; }
.ct-legal-content h2 { font-size: 22px; margin: 30px 0 14px; color: var(--ct-charcoal); }
.ct-legal-content h3 { font-size: 18px; margin: 24px 0 10px; }
.ct-legal-content p { margin-bottom: 14px; color: var(--ct-gray-600); line-height: 1.8; }
.ct-legal-content ul { margin: 10px 0 14px 24px; list-style: disc; }
.ct-legal-content li { margin-bottom: 6px; color: var(--ct-gray-600); line-height: 1.7; }
.ct-legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.ct-legal-content th, .ct-legal-content td { padding: 10px 14px; border: 1px solid var(--ct-gray-200); font-size: 14px; }
.ct-legal-content th { background: var(--ct-gray-100); font-weight: 600; }

/* === Product Detail === */
.ct-pdp { padding: 40px 0 80px; }
.ct-pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.ct-pdp-gallery { position: sticky; top: 100px; }
.ct-pdp-main-img {
  aspect-ratio: 3/4;
  border-radius: var(--ct-radius-lg);
  overflow: hidden;
  background: var(--ct-gray-100);
  margin-bottom: 12px;
}
.ct-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.ct-pdp-thumbs { display: flex; gap: 8px; overflow-x: auto; }
.ct-pdp-thumb {
  width: 70px;
  height: 90px;
  border-radius: var(--ct-radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.ct-pdp-thumb.active, .ct-pdp-thumb:hover { border-color: var(--ct-charcoal); }
.ct-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ct-pdp-info h1 {
  font-family: var(--ct-font-display);
  font-size: 28px;
  margin-bottom: 16px;
}
.ct-pdp-sku { font-size: 13px; color: var(--ct-gray-500); margin-bottom: 20px; }
.ct-pdp-price .ct-price-current { font-size: 28px; }
.ct-pdp-price .ct-price-original { font-size: 18px; }
.ct-variant-group { margin: 24px 0; }
.ct-variant-group label { font-size: 14px; font-weight: 600; margin-bottom: 10px; display: block; }
.ct-variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.ct-variant-btn {
  padding: 10px 20px;
  border: 1.5px solid var(--ct-gray-300);
  border-radius: var(--ct-radius-sm);
  background: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.ct-variant-btn:hover { border-color: var(--ct-charcoal); }
.ct-variant-btn.selected { background: var(--ct-charcoal); color: white; border-color: var(--ct-charcoal); }
.ct-pdp-actions { display: flex; gap: 12px; margin-top: 30px; }
.ct-pdp-desc { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--ct-gray-200); }
.ct-pdp-desc h3 { font-size: 16px; margin-bottom: 12px; }
.ct-pdp-desc p { color: var(--ct-gray-600); line-height: 1.8; }

/* === Empty States === */
.ct-empty {
  text-align: center;
  padding: 80px 20px;
}
.ct-empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.3; }
.ct-empty h3 { font-size: 22px; margin-bottom: 8px; }
.ct-empty p { color: var(--ct-gray-500); margin-bottom: 24px; }

/* === Toast/Notifications === */
.ct-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--ct-charcoal);
  color: white;
  padding: 16px 24px;
  border-radius: var(--ct-radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--ct-shadow-xl);
  z-index: 9999;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s var(--ct-transition);
}
.ct-toast.show { transform: translateY(0); opacity: 1; }
.ct-toast.success { background: var(--ct-green); }
.ct-toast.error { background: var(--ct-red); }

/* === Loading / Skeleton === */
.ct-loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: ct-spin 0.6s linear infinite;
}
@keyframes ct-spin { to { transform: rotate(360deg); } }

.ct-skeleton {
  background: linear-gradient(90deg, var(--ct-gray-100) 25%, var(--ct-gray-200) 50%, var(--ct-gray-100) 75%);
  background-size: 200% 100%;
  animation: ct-shimmer 1.5s infinite;
  border-radius: var(--ct-radius-sm);
}
@keyframes ct-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* === Responsive === */
@media (max-width: 1024px) {
  .ct-hero { height: 80vh; }
  .ct-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .ct-pdp-grid { gap: 30px; }
  .ct-values-grid { grid-template-columns: 1fr 1fr; }
  .ct-newsletter-inner { flex-direction: column; text-align: center; }
  .ct-newsletter-form { max-width: 100%; }
  .ct-collection-banner { height: 55vh; }
}

@media (max-width: 768px) {
  .ct-nav-links { display: none; }
  .ct-menu-toggle { display: flex; }
  .ct-hero { height: 85vh; min-height: 500px; }
  .ct-hero-content { padding: 0 6%; }
  .ct-hero-title { font-size: 36px; }
  .ct-values-grid { grid-template-columns: 1fr 1fr; }
  .ct-value-item { padding: 24px 16px; }
  .ct-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ct-pdp-grid { grid-template-columns: 1fr; }
  .ct-pdp-gallery { position: static; }

  /* Cart & Checkout - single column stacking */
  .ct-cart-layout,
  .ct-checkout-layout { grid-template-columns: 1fr !important; gap: 24px; }

  /* Summary box - no sticky on mobile */
  .ct-summary { position: static; padding: 24px 20px; }

  /* Cart item - compact mobile layout */
  .ct-cart-item {
    grid-template-columns: 70px 1fr auto;
    gap: 10px 12px;
    padding: 16px 0;
  }
  .ct-cart-item-img { width: 70px; height: 85px; }
  .ct-cart-item-name {
    font-size: 13px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .ct-cart-remove { grid-column: 3; grid-row: 1; }
  .ct-qty-control { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  .ct-qty-btn { width: 32px; height: 32px; font-size: 14px; }
  .ct-qty-value { width: 36px; font-size: 13px; }

  /* Form fields full-width */
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-form-input, .ct-form-select, .ct-form-textarea { font-size: 16px; }

  /* Payment options */
  .ct-payment-option { padding: 14px 16px; gap: 12px; }
  .ct-payment-label { font-size: 14px; }
  .ct-payment-desc { font-size: 12px; }
  .ct-payment-card { padding: 30px 20px; }

  /* Page header */
  .ct-page-header h1 { font-size: 28px; }

  /* Footer & other */
  .ct-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .ct-footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .ct-section { padding: 60px 0; }
  .ct-collection-banner { height: 50vh; min-height: 350px; }
  .ct-collection-title { font-size: 36px; }
  .ct-newsletter-form { flex-direction: column; gap: 8px; }
  .ct-newsletter-form input, .ct-newsletter-form button { border: 1px solid rgba(255,255,255,0.2); }
}

@media (max-width: 480px) {
  .ct-products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ct-product-info { padding: 10px 2px; }
  .ct-product-name { font-size: 13px; }
  .ct-price-current { font-size: 14px; }
  .ct-values-grid { grid-template-columns: 1fr; }
  .ct-value-item { border-right: none; }
  .ct-nav-inner { height: 60px; }
  .ct-logo { font-size: 20px; letter-spacing: 4px; }
  .ct-announce { font-size: 11px; padding: 8px 12px; }
  .ct-hero-scroll { display: none; }
  .ct-collection-banner { height: 45vh; }
}

/* === Scroll Animations === */
.ct-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s var(--ct-transition);
}
.ct-fade-up.visible { opacity: 1; transform: translateY(0); }

/* === Print Styles === */
@media print {
  .ct-nav, .ct-announce, .ct-footer, .ct-newsletter { display: none !important; }
  body { color: black; }
}
