/*
Theme Name: TRYKORN
Theme URI: https://trykorn.com
Author: TRYKORN Studio
Author URI: https://trykorn.com
Description: Premium clothing brand theme for TRYKORN. Full WooCommerce integration with luxury editorial design, responsive layout, and conversion-optimized product and checkout pages.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Proprietary
License URI: https://trykorn.com/license
Text Domain: trykorn
Tags: e-commerce, woocommerce, fashion, clothing, luxury, responsive, custom-colors, custom-menu, featured-images, full-width-template
*/

/* ── DESIGN TOKENS ── */
:root {
  --tk-black:      #0a0a0a;
  --tk-white:      #fafaf8;
  --tk-cream:      #f5f3ee;
  --tk-warm-gray:  #8c8880;
  --tk-mid:        #c8c4bc;
  --tk-accent:     #b8995a;
  --tk-accent-dk:  #8c7040;
  --tk-danger:     #c0392b;
  --tk-serif:      'Cormorant Garamond', Georgia, serif;
  --tk-sans:       'Karla', system-ui, sans-serif;
  --tk-nav-h:      72px;
  --tk-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tk-max-w:      1600px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--tk-sans);
  background: var(--tk-white);
  color: var(--tk-black);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--tk-sans); cursor: pointer; }
input, select, textarea { font-family: var(--tk-sans); }

/* ── LAYOUT ── */
.tk-container {
  max-width: var(--tk-max-w);
  margin: 0 auto;
  padding: 0 5vw;
}
.tk-section { padding: 100px 5vw; }
.tk-section--dark { background: var(--tk-black); }
.tk-section--cream { background: var(--tk-cream); }

/* ── TYPOGRAPHY ── */
.tk-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--tk-accent);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}
.tk-heading {
  font-family: var(--tk-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.tk-heading--xl {
  font-size: clamp(52px, 7vw, 96px);
}
.tk-heading--sm {
  font-size: clamp(24px, 3vw, 36px);
}
.tk-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tk-warm-gray);
}

/* ── BUTTONS ── */
.tk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--tk-transition);
  font-family: var(--tk-sans);
  text-decoration: none;
  white-space: nowrap;
}
.tk-btn--primary {
  background: var(--tk-black);
  color: var(--tk-white);
}
.tk-btn--primary:hover {
  background: var(--tk-accent);
  color: var(--tk-white);
  transform: translateY(-1px);
}
.tk-btn--outline {
  background: transparent;
  color: var(--tk-black);
  border: 1.5px solid var(--tk-black);
  padding: 14px 30px;
}
.tk-btn--outline:hover {
  background: var(--tk-black);
  color: var(--tk-white);
}
.tk-btn--full { width: 100%; justify-content: center; }

/* ── NAVIGATION ── */
#tk-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--tk-nav-h);
  display: flex;
  align-items: center;
  padding: 0 4vw;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background var(--tk-transition), box-shadow var(--tk-transition);
  gap: 2rem;
}
#tk-nav.scrolled {
  background: rgba(250,250,248,0.98);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.tk-nav__logo {
  font-family: var(--tk-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--tk-black);
  flex-shrink: 0;
  transition: color var(--tk-transition);
}
.tk-nav__logo:hover { color: var(--tk-accent); }

.tk-nav__menu {
  display: flex;
  gap: 2.5rem;
  margin: 0 auto;
}
.tk-nav__menu li a {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tk-black);
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--tk-transition);
}
.tk-nav__menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--tk-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--tk-transition);
}
.tk-nav__menu li.current-menu-item > a,
.tk-nav__menu li a:hover { color: var(--tk-accent); }
.tk-nav__menu li.current-menu-item > a::after,
.tk-nav__menu li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tk-nav__actions { display: flex; gap: 0.8rem; align-items: center; }
.tk-nav__icon {
  background: none;
  border: none;
  padding: 8px;
  color: var(--tk-black);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color var(--tk-transition);
  position: relative;
}
.tk-nav__icon:hover { color: var(--tk-accent); }
.tk-nav__icon svg { width: 20px; height: 20px; }
.tk-nav__cart-count {
  position: absolute;
  top: 3px; right: 3px;
  width: 16px; height: 16px;
  background: var(--tk-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Burger */
.tk-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.tk-nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--tk-black);
  transition: var(--tk-transition);
}
.tk-nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.tk-nav__burger.open span:nth-child(2) { opacity: 0; }
.tk-nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
#tk-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--tk-white);
  padding-top: var(--tk-nav-h);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
#tk-mobile-nav.open { display: flex; }
#tk-mobile-nav a {
  font-family: var(--tk-serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--tk-black);
  letter-spacing: 0.04em;
  transition: color var(--tk-transition);
}
#tk-mobile-nav a:hover { color: var(--tk-accent); }

/* ── HERO ── */
.tk-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--tk-nav-h));
  margin-top: var(--tk-nav-h);
  overflow: hidden;
}
.tk-hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5vw 4vw 5vw 6vw;
  background: var(--tk-cream);
}
.tk-hero__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tk-accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.tk-hero__title {
  font-family: var(--tk-serif);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.tk-hero__title em { font-style: italic; color: var(--tk-accent); }
.tk-hero__sub {
  font-size: 15px;
  color: var(--tk-warm-gray);
  max-width: 380px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.tk-hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.tk-hero__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #1a1a18 0%, #2a2a26 100%);
}
.tk-hero__image-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tk-hero__image-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 60% 40%, rgba(184,153,90,0.12) 0%, transparent 60%);
}
.tk-hero__watermark {
  font-family: var(--tk-serif);
  font-size: clamp(120px, 18vw, 200px);
  font-weight: 300;
  color: rgba(184,153,90,0.07);
  letter-spacing: -0.06em;
  user-select: none;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.tk-hero__badge {
  position: absolute; bottom: 40px; right: 40px;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(184,153,90,0.35);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--tk-accent);
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
}
.tk-hero__scroll {
  position: absolute; bottom: 40px; left: 5vw;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.tk-hero__scroll-line {
  width: 40px; height: 1px;
  background: rgba(184,153,90,0.4);
  animation: tkScroll 2s ease-in-out infinite;
}
@keyframes tkScroll { 0%,100%{width:24px} 50%{width:48px} }

/* ── MARQUEE ── */
.tk-marquee {
  background: var(--tk-black);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.tk-marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: tkMarquee 24s linear infinite;
}
@keyframes tkMarquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.tk-marquee__item {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  font-weight: 500;
}
.tk-marquee__dot { color: var(--tk-accent); }

/* ── PRODUCT GRID ── */
.tk-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--tk-mid);
}
.tk-product-card {
  background: var(--tk-white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--tk-transition), box-shadow var(--tk-transition);
}
.tk-product-card:hover {
  z-index: 2;
  transform: scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.tk-product-card:hover .tk-card__overlay { opacity: 1; }

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

.tk-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tk-serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--tk-mid);
}
.tk-card__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--tk-black);
  color: var(--tk-white);
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px; font-weight: 500;
}
.tk-card__badge--sale { background: var(--tk-accent); }
.tk-card__overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.38);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--tk-transition);
}
.tk-card__overlay-btn {
  background: var(--tk-white);
  color: var(--tk-black);
  padding: 12px 28px;
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  border: none; cursor: pointer;
  font-family: var(--tk-sans);
  transition: background var(--tk-transition), color var(--tk-transition);
}
.tk-card__overlay-btn:hover { background: var(--tk-accent); color: var(--tk-white); }

.tk-card__info { padding: 20px; }
.tk-card__brand { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--tk-warm-gray); margin-bottom: 6px; }
.tk-card__name { font-family: var(--tk-serif); font-size: 19px; font-weight: 400; margin-bottom: 8px; }
.tk-card__price { font-size: 14px; font-weight: 500; display: flex; gap: 10px; align-items: center; }
.tk-card__price-old { text-decoration: line-through; color: var(--tk-warm-gray); font-weight: 400; }
.tk-card__price-sale { color: var(--tk-accent); }

/* ── EDITORIAL STRIP ── */
.tk-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.tk-editorial__image {
  background: linear-gradient(135deg, #1a1a18, #2e2e2a);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 500px;
}
.tk-editorial__image-text {
  font-family: var(--tk-serif);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.05em;
  user-select: none;
}
.tk-editorial__tag {
  position: absolute; top: 40px; left: 40px;
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--tk-accent); font-weight: 500;
}
.tk-editorial__content {
  background: var(--tk-cream);
  padding: 80px 6vw;
  display: flex; flex-direction: column; justify-content: center;
}
.tk-editorial__quote {
  font-family: var(--tk-serif);
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 300; font-style: italic;
  line-height: 1.25;
  margin: 1.5rem 0 2rem;
}

/* ── BLOG GRID ── */
.tk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--tk-mid);
}
.tk-blog-card {
  background: var(--tk-white);
  overflow: hidden; cursor: pointer;
  transition: background var(--tk-transition);
}
.tk-blog-card__img {
  aspect-ratio: 16/9;
  background: var(--tk-cream);
  overflow: hidden;
  position: relative;
}
.tk-blog-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.tk-blog-card:hover .tk-blog-card__img img { transform: scale(1.04); }
.tk-blog-card__img-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tk-serif); font-size: 60px;
  font-weight: 300; color: var(--tk-mid);
  transition: all var(--tk-transition);
}
.tk-blog-card:hover .tk-blog-card__img-ph { background: var(--tk-black); color: rgba(184,153,90,0.15); }
.tk-blog-card__meta { padding: 24px; }
.tk-blog-card__cat { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--tk-accent); font-weight: 500; margin-bottom: 10px; }
.tk-blog-card__title { font-family: var(--tk-serif); font-size: 22px; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.tk-blog-card__excerpt { font-size: 13px; color: var(--tk-warm-gray); line-height: 1.7; margin-bottom: 16px; }
.tk-blog-card__date { font-size: 11px; letter-spacing: 0.1em; color: var(--tk-mid); }

/* ── NEWSLETTER ── */
.tk-newsletter {
  background: var(--tk-black);
  padding: 100px 6vw;
  text-align: center;
}
.tk-newsletter__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.tk-newsletter__input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--tk-white);
  font-family: var(--tk-sans);
  font-size: 14px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--tk-transition);
}
.tk-newsletter__input:focus { border-color: var(--tk-accent); }
.tk-newsletter__input::placeholder { color: rgba(255,255,255,0.3); }

/* ── SECTION HEADER ── */
.tk-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 2rem;
  flex-wrap: wrap;
}
.tk-section-link {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--tk-black);
  font-weight: 500; border-bottom: 1px solid var(--tk-mid);
  padding-bottom: 2px;
  transition: color var(--tk-transition), border-color var(--tk-transition);
}
.tk-section-link:hover { color: var(--tk-accent); border-color: var(--tk-accent); }

/* ── FOOTER ── */
.tk-footer {
  background: var(--tk-black);
  color: rgba(255,255,255,0.55);
  padding: 80px 5vw 40px;
}
.tk-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.tk-footer__brand {
  font-family: var(--tk-serif);
  font-size: 36px; font-weight: 300;
  color: var(--tk-white); margin-bottom: 1rem;
}
.tk-footer__tagline { font-size: 13px; line-height: 1.7; max-width: 260px; margin-bottom: 2rem; }
.tk-footer__social { display: flex; gap: 12px; }
.tk-footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 600;
  transition: all var(--tk-transition);
}
.tk-footer__social a:hover { border-color: var(--tk-accent); color: var(--tk-accent); }
.tk-footer__col h4 {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--tk-white);
  margin-bottom: 1.5rem; font-weight: 500;
}
.tk-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.tk-footer__col ul li a {
  color: rgba(255,255,255,0.45); font-size: 13px;
  transition: color var(--tk-transition);
}
.tk-footer__col ul li a:hover { color: var(--tk-accent); }
.tk-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; font-size: 12px; flex-wrap: wrap; gap: 1rem;
}
.tk-footer__bottom a { color: rgba(255,255,255,0.35); }
.tk-footer__bottom a:hover { color: var(--tk-accent); }
.tk-footer__legal { display: flex; gap: 20px; }
.tk-footer__payments { display: flex; gap: 8px; align-items: center; }
.tk-pay-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px; font-size: 10px;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ── PRODUCT SINGLE ── */
.tk-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--tk-nav-h);
  min-height: calc(100vh - var(--tk-nav-h));
}
.tk-product-gallery {
  position: sticky; top: var(--tk-nav-h);
  height: calc(100vh - var(--tk-nav-h));
  background: var(--tk-cream);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.tk-product-gallery__main {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.tk-product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.tk-product-gallery__tag {
  position: absolute; top: 24px; left: 24px;
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--tk-accent); font-weight: 500;
}
.tk-product-gallery__thumbs {
  display: flex; gap: 1px; background: var(--tk-mid);
  height: 100px; flex-shrink: 0;
}
.tk-product-gallery__thumb {
  flex: 1; overflow: hidden; cursor: pointer;
  transition: opacity var(--tk-transition);
  border: 2px solid transparent;
}
.tk-product-gallery__thumb.active { border-color: var(--tk-black); }
.tk-product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.tk-product-info { padding: 60px 5vw; overflow-y: auto; }
.tk-breadcrumb {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--tk-warm-gray);
  margin-bottom: 2rem; display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.tk-breadcrumb a { color: var(--tk-warm-gray); transition: color var(--tk-transition); }
.tk-breadcrumb a:hover { color: var(--tk-black); }
.tk-product-brand { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--tk-accent); font-weight: 500; margin-bottom: 12px; }
.tk-product-name { font-family: var(--tk-serif); font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.1; margin-bottom: 1rem; }
.tk-product-price-block { display: flex; align-items: baseline; gap: 16px; margin-bottom: 2rem; flex-wrap: wrap; }
.tk-product-price { font-size: 28px; font-weight: 600; }
.tk-product-price-orig { font-size: 18px; color: var(--tk-warm-gray); text-decoration: line-through; font-weight: 400; }
.tk-product-price-save { font-size: 13px; color: var(--tk-accent); font-weight: 500; }

/* Color + Size */
.tk-option-label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 12px; display: flex;
  justify-content: space-between; align-items: center;
}
.tk-option-label a { color: var(--tk-warm-gray); font-weight: 400; text-decoration: underline; font-size: 11px; }
.tk-color-swatches { display: flex; gap: 10px; margin-bottom: 2rem; }
.tk-color-swatch {
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color var(--tk-transition);
  position: relative;
}
.tk-color-swatch.active, .tk-color-swatch:hover { border-color: var(--tk-black); }
.tk-color-swatch::after {
  content: ''; position: absolute; inset: 2px;
  border-radius: 50%; border: 1px solid rgba(0,0,0,0.1);
}
.tk-size-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.tk-size-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--tk-mid);
  background: transparent; cursor: pointer;
  font-size: 13px; font-family: var(--tk-sans);
  font-weight: 500; transition: all var(--tk-transition);
}
.tk-size-btn:hover, .tk-size-btn.active {
  border-color: var(--tk-black);
  background: var(--tk-black); color: var(--tk-white);
}
.tk-size-btn.out-of-stock {
  color: var(--tk-mid); cursor: not-allowed;
  position: relative;
}
.tk-size-btn.out-of-stock::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 150%; height: 1px;
  background: var(--tk-mid);
  transform: translate(-50%,-50%) rotate(-45deg);
}

/* Add to cart */
.tk-add-to-cart {
  width: 100%; padding: 18px;
  background: var(--tk-black); color: var(--tk-white);
  border: none; cursor: pointer;
  font-size: 12px; letter-spacing: 0.25em;
  text-transform: uppercase; font-family: var(--tk-sans);
  font-weight: 500; display: flex;
  align-items: center; justify-content: center; gap: 12px;
  transition: background var(--tk-transition);
  margin-bottom: 12px;
}
.tk-add-to-cart:hover { background: var(--tk-accent); }
.tk-wishlist-btn {
  width: 100%; padding: 16px;
  background: transparent; color: var(--tk-black);
  border: 1px solid var(--tk-mid); cursor: pointer;
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; font-family: var(--tk-sans);
  font-weight: 500; display: flex;
  align-items: center; justify-content: center; gap: 10px;
  transition: all var(--tk-transition);
  margin-bottom: 2rem;
}
.tk-wishlist-btn:hover { border-color: var(--tk-black); }

/* Product meta */
.tk-product-meta {
  border-top: 1px solid var(--tk-mid);
  padding-top: 2rem; margin-bottom: 2rem;
}
.tk-product-meta dl { display: flex; flex-direction: column; gap: 0; }
.tk-product-meta-row {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
}
.tk-product-meta-row dt { color: var(--tk-warm-gray); }
.tk-product-meta-row dd { font-weight: 500; }

/* Accordion */
.tk-accordion { border-top: 1px solid var(--tk-mid); }
.tk-accordion__item { border-bottom: 1px solid var(--tk-mid); }
.tk-accordion__trigger {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 18px 0;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; background: none; border: none; cursor: pointer;
  color: var(--tk-black); font-family: var(--tk-sans);
}
.tk-accordion__trigger svg { transition: transform var(--tk-transition); flex-shrink: 0; }
.tk-accordion__trigger.open svg { transform: rotate(45deg); }
.tk-accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.tk-accordion__body.open { max-height: 400px; }
.tk-accordion__body p { padding-bottom: 20px; font-size: 13px; color: var(--tk-warm-gray); line-height: 1.8; }

/* Trust bar */
.tk-trust-bar { display: flex; gap: 1px; background: var(--tk-mid); margin-top: 2rem; }
.tk-trust-item {
  flex: 1; background: var(--tk-cream); padding: 16px 8px;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; text-align: center;
}
.tk-trust-item__icon { font-size: 18px; }
.tk-trust-item__text { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tk-warm-gray); }

/* ── CART DRAWER ── */
#tk-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 1100;
  opacity: 0; pointer-events: none;
  transition: opacity var(--tk-transition);
}
#tk-cart-overlay.open { opacity: 1; pointer-events: auto; }
#tk-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--tk-white); z-index: 1101;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
}
#tk-cart-drawer.open { transform: translateX(0); }
.tk-cart__header {
  padding: 24px 28px; border-bottom: 1px solid var(--tk-mid);
  display: flex; justify-content: space-between; align-items: center;
}
.tk-cart__header h3 { font-family: var(--tk-serif); font-size: 22px; font-weight: 400; }
.tk-cart__close {
  background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--tk-black); line-height: 1;
  transition: color var(--tk-transition);
}
.tk-cart__close:hover { color: var(--tk-accent); }
.tk-cart__body { flex: 1; overflow-y: auto; padding: 24px 28px; }
.tk-cart__footer { padding: 24px 28px; border-top: 1px solid var(--tk-mid); }
.tk-cart__total { display: flex; justify-content: space-between; font-weight: 600; font-size: 16px; margin-bottom: 16px; }

/* ── TOAST ── */
#tk-toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--tk-black); color: var(--tk-white);
  padding: 14px 28px; font-size: 13px; letter-spacing: 0.04em;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  max-width: 90vw;
}
#tk-toast.show { transform: translateX(-50%) translateY(0); }
.tk-toast__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tk-accent); flex-shrink: 0; }

/* ── ABOUT ── */
.tk-about-hero {
  height: 55vh; min-height: 400px;
  background: var(--tk-black);
  display: flex; align-items: flex-end;
  padding: 60px 6vw; position: relative; overflow: hidden;
  margin-top: var(--tk-nav-h);
}
.tk-about-hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(184,153,90,0.09) 0%, transparent 70%);
}
.tk-about-hero h1 {
  font-family: var(--tk-serif);
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 300; color: var(--tk-white);
  letter-spacing: -0.02em;
  position: relative; z-index: 1; line-height: 1;
}
.tk-about-body {
  padding: 100px 6vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.tk-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--tk-mid);
}
.tk-value-card {
  background: var(--tk-cream); padding: 40px 32px;
}
.tk-value-card--white { background: var(--tk-white); }
.tk-value-num {
  font-family: var(--tk-serif); font-size: 48px;
  color: var(--tk-accent); font-weight: 300;
  margin-bottom: 12px; opacity: 0.5;
}
.tk-value-title { font-family: var(--tk-serif); font-size: 22px; font-weight: 400; margin-bottom: 12px; }
.tk-value-text { font-size: 13px; color: var(--tk-warm-gray); line-height: 1.7; }
.tk-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.08);
  max-width: 900px; margin: 3rem auto 0;
}
.tk-stat {
  padding: 40px 20px; text-align: center;
  background: var(--tk-black);
}
.tk-stat__num {
  font-family: var(--tk-serif); font-size: 52px;
  font-weight: 300; color: var(--tk-accent);
}
.tk-stat__label {
  font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 8px;
}

/* ── CONTACT ── */
.tk-contact-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--tk-nav-h));
  margin-top: var(--tk-nav-h);
}
.tk-contact-left {
  background: var(--tk-black); padding: 80px 6vw;
  display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
}
.tk-contact-left__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 60%, rgba(184,153,90,0.07) 0%, transparent 70%);
}
.tk-contact-left h2 {
  font-family: var(--tk-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300; color: var(--tk-white);
  line-height: 1.1; margin-bottom: 2rem;
  position: relative; z-index: 1;
}
.tk-contact-left p {
  color: rgba(255,255,255,0.45); line-height: 1.8;
  position: relative; z-index: 1; margin-bottom: 3rem;
}
.tk-contact-info { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; }
.tk-contact-info dt { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--tk-accent); margin-bottom: 4px; }
.tk-contact-info dd { color: rgba(255,255,255,0.6); font-size: 14px; }
.tk-contact-right { padding: 80px 6vw; display: flex; align-items: center; }
.tk-contact-form { width: 100%; max-width: 480px; }
.tk-contact-form h3 { font-family: var(--tk-serif); font-size: 28px; font-weight: 300; margin-bottom: 2rem; }

/* Form fields */
.tk-form-group { margin-bottom: 1.5rem; }
.tk-form-group label {
  display: block; font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; font-weight: 500;
  margin-bottom: 8px; color: var(--tk-warm-gray);
}
.tk-form-group input,
.tk-form-group textarea,
.tk-form-group select {
  width: 100%; border: 1px solid var(--tk-mid);
  background: transparent; padding: 14px 16px;
  font-size: 14px; font-family: var(--tk-sans);
  color: var(--tk-black); outline: none;
  resize: vertical; border-radius: 0;
  -webkit-appearance: none;
  transition: border-color var(--tk-transition);
}
.tk-form-group input:focus,
.tk-form-group textarea:focus,
.tk-form-group select:focus { border-color: var(--tk-black); }
.tk-form-group textarea { min-height: 120px; }
.tk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── CHECKOUT ── */
.tk-checkout {
  display: grid; grid-template-columns: 1fr 420px;
  min-height: calc(100vh - var(--tk-nav-h));
  margin-top: var(--tk-nav-h);
}
.tk-checkout__main { padding: 60px 5vw; border-right: 1px solid var(--tk-mid); }
.tk-checkout__sidebar { background: var(--tk-cream); padding: 60px 4vw; }
.tk-checkout-steps { display: flex; align-items: center; margin-bottom: 3rem; }
.tk-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 500; color: var(--tk-mid);
}
.tk-step.done { color: var(--tk-accent); }
.tk-step.active { color: var(--tk-black); }
.tk-step__num {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.tk-step.done .tk-step__num { background: var(--tk-accent); border-color: var(--tk-accent); color: var(--tk-white); font-size: 14px; }
.tk-step-divider { flex: 1; height: 1px; background: var(--tk-mid); margin: 0 8px; }
.tk-checkout-section { margin-bottom: 2.5rem; }
.tk-checkout-section h3 { font-family: var(--tk-serif); font-size: 22px; font-weight: 400; margin-bottom: 1.5rem; }

.tk-shipping-option {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--tk-mid); padding: 16px 20px;
  cursor: pointer; transition: border-color var(--tk-transition);
  margin-bottom: 10px;
}
.tk-shipping-option.active { border-color: var(--tk-black); border-width: 1.5px; }
.tk-shipping-option label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 14px; }

.tk-payment-methods {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 1.5rem;
}
.tk-payment-method {
  border: 1.5px solid var(--tk-mid); padding: 14px 12px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; cursor: pointer;
  transition: all var(--tk-transition);
  font-size: 13px; font-weight: 500;
}
.tk-payment-method.active { border-color: var(--tk-black); background: rgba(0,0,0,0.02); }
.tk-payment-method:hover { border-color: var(--tk-mid); background: rgba(0,0,0,0.01); }

/* Order summary */
.tk-order-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.tk-order-item__img {
  width: 70px; height: 88px;
  background: var(--tk-white); flex-shrink: 0;
  overflow: hidden; position: relative;
}
.tk-order-item__img img { width: 100%; height: 100%; object-fit: cover; }
.tk-order-item__qty {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: var(--tk-black); color: var(--tk-white);
  border-radius: 50%; font-size: 10px;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.tk-order-item__info { flex: 1; }
.tk-order-item__name { font-family: var(--tk-serif); font-size: 17px; font-weight: 400; margin-bottom: 4px; }
.tk-order-item__meta { font-size: 12px; color: var(--tk-warm-gray); }
.tk-order-item__price { font-weight: 500; font-size: 15px; align-self: flex-start; white-space: nowrap; }

.tk-promo-row { display: flex; gap: 8px; margin-bottom: 2rem; }
.tk-promo-input {
  flex: 1; border: 1px solid var(--tk-mid);
  padding: 12px 14px; font-size: 13px; font-family: var(--tk-sans);
  outline: none; background: var(--tk-white); border-radius: 0;
  transition: border-color var(--tk-transition);
}
.tk-promo-input:focus { border-color: var(--tk-black); }

.tk-order-totals { display: flex; flex-direction: column; gap: 10px; }
.tk-total-row { display: flex; justify-content: space-between; font-size: 14px; }
.tk-total-row dt { color: var(--tk-warm-gray); }
.tk-total-row--grand { font-weight: 700; font-size: 18px; padding-top: 14px; border-top: 1.5px solid var(--tk-black); }
.tk-total-row--grand dt, .tk-total-row--grand dd { color: var(--tk-black); }
.tk-total-savings { color: var(--tk-accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .tk-product-grid { grid-template-columns: repeat(3, 1fr); }
  .tk-footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .tk-checkout { grid-template-columns: 1fr 380px; }
}

@media (max-width: 1024px) {
  .tk-product-grid { grid-template-columns: repeat(2, 1fr); }
  .tk-single-product { grid-template-columns: 1fr; }
  .tk-product-gallery { position: relative; height: 70vw; }
  .tk-checkout { grid-template-columns: 1fr; }
  .tk-checkout__sidebar { order: -1; }
  .tk-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --tk-nav-h: 60px; }
  .tk-nav__menu { display: none; }
  .tk-nav__burger { display: flex; }
  .tk-hero { grid-template-columns: 1fr; }
  .tk-hero__image { display: none; }
  .tk-hero__text { padding: 60px 6vw; min-height: 80vh; }
  .tk-editorial { grid-template-columns: 1fr; }
  .tk-editorial__image { min-height: 300px; }
  .tk-about-body { grid-template-columns: 1fr; gap: 40px; }
  .tk-values-grid { grid-template-columns: 1fr; }
  .tk-blog-grid { grid-template-columns: 1fr; }
  .tk-contact-layout { grid-template-columns: 1fr; }
  .tk-contact-left { min-height: 300px; }
  .tk-form-row { grid-template-columns: 1fr; }
  .tk-payment-methods { grid-template-columns: repeat(2, 1fr); }
  .tk-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tk-section { padding: 60px 5vw; }
}

@media (max-width: 480px) {
  .tk-product-grid { grid-template-columns: 1fr 1fr; }
  .tk-footer__top { grid-template-columns: 1fr; }
  .tk-checkout-steps { gap: 4px; }
  .tk-step__label { display: none; }
  .tk-stats-grid { grid-template-columns: 1fr 1fr; }
  .tk-hero__ctas { flex-direction: column; }
}

/* ── WooCommerce overrides ── */
.woocommerce .woocommerce-breadcrumb { padding: 1rem 5vw; font-size: 12px; margin-top: var(--tk-nav-h); }
.woocommerce .entry-summary .price { font-size: 28px; font-weight: 600; color: var(--tk-black); }
.woocommerce .entry-summary .price del { font-size: 18px; color: var(--tk-warm-gray); font-weight: 400; }
.woocommerce .entry-summary .price ins { color: var(--tk-black); text-decoration: none; }
.woocommerce button.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--tk-black) !important;
  color: var(--tk-white) !important;
  border-radius: 0 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
  padding: 16px 32px !important;
  font-family: var(--tk-sans) !important;
  font-weight: 500 !important;
  transition: background var(--tk-transition) !important;
}
.woocommerce button.button.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--tk-accent) !important;
}
.woocommerce-page #payment #place_order {
  background: var(--tk-black) !important;
  color: var(--tk-white) !important;
}
.woocommerce form .form-row label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tk-warm-gray); }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  border: 1px solid var(--tk-mid) !important;
  border-radius: 0 !important;
  padding: 14px 16px !important;
  font-size: 14px !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--tk-black) !important;
  outline: none !important;
  box-shadow: none !important;
}
