/* =========================================
   JamenTaylor - Swimwear Homepage Styles
   ========================================= */

/* ---------- Base ---------- */
.jt-home * { box-sizing: border-box; }
.jt-home {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.jt-home h1, .jt-home h2, .jt-home h3, .jt-home h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: .02em;
}
.jt-home em { font-style: italic; color: var(--brand-gold-light); }

/* ---------- Eyebrow ---------- */
.jt-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: .8rem;
}

/* ---------- Buttons ---------- */
.jt-home .btn-primary {
  background: var(--brand-black);
  color: #fff;
  padding: 14px 36px;
  border: none;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}
.jt-home .btn-primary:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
}
.jt-home .btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 36px;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all .3s ease;
}
.jt-home .btn-outline:hover {
  background: #fff;
  color: var(--brand-black);
}

/* ---------- Hero ---------- */
.jt-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.jt-hero video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.jt-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}
.jt-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff !important;
  max-width: 800px;
  padding: 0 2rem;
  animation: jtFadeUp .8s ease-out;
}
.jt-hero-eyebrow {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.35);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--brand-gold-light) !important;
}
.jt-hero-content h1 {
  font-size: clamp(2.8rem, 5vw + 1rem, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: .04em;
  color: #fff !important;
}
.jt-hero-content p {
  color: rgba(255,255,255,.85) !important;
  font-size: 1rem;
  margin: 0 auto 2.5rem;
  max-width: 520px;
  opacity: .8;
  line-height: 1.7;
  font-weight: 300;
}
.jt-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Countdown */
.jt-hero-countdown {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.jt-hero-countdown .countdown-label {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .6;
}
.jt-countdown-timer {
  display: flex;
  gap: 12px;
}
.jt-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 14px;
  min-width: 56px;
}
.jt-countdown-unit .num {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.jt-countdown-unit .lbl {
  font-family: 'Inter', sans-serif;
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  opacity: .5;
  margin-top: 2px;
}

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

/* ---------- Section Headings ---------- */
.jt-section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.jt-section-heading h2 {
  font-size: clamp(1.8rem, 2.5vw + .5rem, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: .5rem;
  letter-spacing: .06em;
}
.jt-section-heading p {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- Swimwear Product Grid ---------- */
.jt-swim-shop {
  padding: 100px 0;
  background: var(--brand-cream);
}
.jt-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.jt-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease;
}
.jt-product-card:hover {
  transform: translateY(-4px);
}
.jt-product-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f0eb;
  margin-bottom: 1rem;
}
.jt-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.jt-product-card:hover .jt-product-img img {
  transform: scale(1.05);
}
.jt-quick-view {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: .7rem;
  background: rgba(0,0,0,.8);
  color: #fff;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.jt-product-card:hover .jt-quick-view {
  transform: translateY(0);
}
.jt-product-info {
  text-align: center;
}
.jt-product-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-primary);
  margin: 0 0 .3rem;
}
.jt-product-price {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  color: var(--text-muted);
}
.jt-product-price del {
  opacity: .5;
  margin-right: .4rem;
}
.jt-product-price ins {
  text-decoration: none;
  color: var(--brand-gold);
  font-weight: 600;
}
.jt-shop-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ---------- Editorial Banner ---------- */
.jt-editorial {
  position: relative;
  overflow: hidden;
}
.jt-editorial-inner {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 800px;
}
.jt-editorial-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.jt-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 50%, transparent 100%);
}
.jt-editorial-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 4rem;
  max-width: 600px;
  color: #fff;
}
.jt-editorial-content h2 {
  font-size: clamp(1.8rem, 3vw + .5rem, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #fff;
  letter-spacing: .04em;
}
.jt-editorial-content p {
  font-size: .95rem;
  line-height: 1.8;
  opacity: .75;
  margin-bottom: 2rem;
  color: #fff;
}

/* ---------- Why JT Swim ---------- */
.jt-why {
  padding: 100px 0;
  background: #fff;
}
.jt-why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: transform .3s ease;
}
.jt-why-card:hover {
  transform: translateY(-4px);
}
.jt-why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-gold);
  color: var(--brand-gold);
}
.jt-why-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: .75rem;
}
.jt-why-card p {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.jt-testimonials {
  padding: 100px 0;
  background: var(--brand-cream);
}
.jt-testimonial-card {
  background: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
  border-bottom: 2px solid var(--brand-gold);
}
.jt-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.jt-testimonial-stars { margin-bottom: 1.25rem; color: var(--brand-gold); font-size: 1.2rem; letter-spacing: 4px; }
.jt-testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.jt-testimonial-author h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.jt-testimonial-author span {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ---------- SMS Signup ---------- */
.jt-sms {
  padding: 80px 0;
  background: var(--brand-black);
  color: #fff;
  text-align: center;
}
.jt-sms h2 {
  font-size: clamp(1.6rem, 2.5vw + .5rem, 2.6rem);
  font-weight: 300;
  margin-bottom: .75rem;
  color: #fff;
  letter-spacing: .06em;
}
.jt-sms h2 span { color: var(--brand-gold-light); }
.jt-sms > .container-xxl > p {
  font-size: .95rem;
  opacity: .6;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.jt-sms-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.jt-sms-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  letter-spacing: .05em;
  opacity: .7;
}
.jt-sms-perk-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold-light);
}
.jt-sms-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}
.jt-sms-form input[type="tel"] {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-right: none;
  background: transparent;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s ease;
}
.jt-sms-form input::placeholder { color: rgba(255,255,255,.35); }
.jt-sms-form input:focus { border-color: var(--brand-gold); }
.jt-sms-form button {
  padding: 14px 28px;
  border: 1px solid var(--brand-gold);
  background: var(--brand-gold);
  color: var(--brand-black);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.jt-sms-form button:hover { background: var(--brand-gold-light); }
.jt-sms-legal {
  font-size: .7rem;
  opacity: .35;
  margin-top: 1rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.jt-sms-success {
  display: none;
  padding: 16px 24px;
  border: 1px solid var(--brand-gold);
  font-size: .9rem;
  max-width: 420px;
  margin: 0 auto;
  color: var(--brand-gold-light);
}

/* ---------- About ---------- */
.jt-about {
  padding: 100px 0;
  background: #fff;
}
.jt-about h2 {
  font-size: clamp(2rem, 3vw + .5rem, 3rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: .04em;
}
.jt-about p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.jt-about blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: var(--brand-gold);
  font-size: 1.3rem;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--brand-gold);
  font-weight: 400;
  line-height: 1.5;
}

/* ---------- Back to top ---------- */
.jt-to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
 visibility: hidden; transform: translateY(16px);
  width: 44px; height: 44px;
  background: var(--brand-black);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}
.jt-to-top:hover {
  background: var(--brand-gold);
  color: var(--brand-black);
  border-color: var(--brand-gold);
}
.jt-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .jt-product-grid { grid-template-columns: repeat(3, 1fr); }
  .jt-editorial-content { padding: 3rem; }
}
@media (max-width: 992px) {
  .jt-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .jt-editorial-inner { height: 60vh; min-height: 400px; }
  .jt-editorial-content { max-width: 500px; }
}
@media (max-width: 768px) {
  .jt-countdown-timer { gap: 8px; }
  .jt-countdown-unit { padding: 8px 10px; min-width: 48px; }
  .jt-countdown-unit .num { font-size: 1.1rem; }
  .jt-sms-form { flex-direction: column; }
  .jt-sms-form input[type="tel"] { border-right: 1px solid rgba(255,255,255,.2); }
  .jt-editorial-overlay { background: rgba(0,0,0,.6); }
  .jt-editorial-content { padding: 2rem; max-width: 100%; }
  .jt-product-grid { gap: 12px; }
}
@media (max-width: 576px) {
  .jt-hero-buttons { flex-direction: column; align-items: center; }
  .jt-hero-buttons a { width: 100%; max-width: 260px; text-align: center; }
  .jt-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .jt-product-info h3 { font-size: .7rem; }
  .jt-product-price { font-size: .7rem; }
  .jt-sms-perks { gap: 16px; }
  .jt-why-card { padding: 1.5rem 1rem; }
  .jt-editorial-inner { height: 50vh; min-height: 350px; }
}

/* ══════════════════════════════════════
   PRODUCT CARDS — Radical Skincare Style
   ══════════════════════════════════════ */

/* Override old card styles */
.jt-product-card,
.jt-product-img,
.jt-product-info,
.jt-quick-view { display: none !important; }

/* ── Product Card ── */
.jt-pcard { position: relative; background: #fff; border: 1px solid #eee; display: flex; flex-direction: column; transition: box-shadow .3s, border-color .3s; overflow: hidden; }
.jt-pcard:hover { border-color: #ddd; box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.jt-pcard-img { display: block; position: relative; text-decoration: none; overflow: hidden; }
.jt-pcard-img img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform .4s; }
.jt-pcard:hover .jt-pcard-img img { transform: scale(1.05); }
.jt-pcard-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.jt-pcard-actions { display: flex; gap: 0; }
.jt-btn-qv, .jt-btn-atc { flex: 1; padding: 10px 0; font-family: "Inter", sans-serif; font-size: .65rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: all .2s; -webkit-appearance: none; appearance: none; border-radius: 0; line-height: 1; }
.jt-btn-qv { background: #fff; color: #333; border: 1px solid #eee; border-right: none; }
.jt-btn-qv:hover { background: #f5f5f5; }
.jt-btn-atc { background: #1a1a1a; color: #fff; border: 1px solid #1a1a1a; }
.jt-btn-atc:hover { background: #333; }
.jt-pcard-info { padding: 14px 16px 16px; text-align: center; }
.jt-pcard-name { display: block; font-family: "Inter", sans-serif; font-size: 13px; font-weight: 500; color: #1a1a1a !important; text-decoration: none !important; line-height: 1.4; margin-bottom: 4px; }
.jt-pcard-name:hover { color: #c9a96e !important; }
.jt-pcard-price { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 600; color: #1a1a1a; margin-bottom: 6px; }
.jt-pcard-stars { color: #c9a96e; font-size: 13px; letter-spacing: 1px; }
.jt-pcard-stars .star-count { color: #999; font-size: 11px; font-family: "Inter", sans-serif; margin-left: 4px; }


/* ── Quick View Modal ── */
.jt-qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;

  visibility: hidden;
  transition: all .3s;
}
.jt-qv-overlay.open {
  opacity: 1;
  visibility: visible;
}
.jt-qv-modal {
  background: #fff;
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 0;
  animation: jtSlideUp .3s ease-out;
}
@keyframes jtSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.jt-qv-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: #999;
  cursor: pointer;
  letter-spacing: .05em;
  z-index: 2;
  transition: color .3s;
}
.jt-qv-close:hover { color: #333; }

.jt-qv-body {
  display: flex;
  gap: 0;
}
.jt-qv-img {
  flex: 0 0 40%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.jt-qv-img img {
  max-width: 100%;
  max-height: 350px;
  object-fit: contain;
}
.jt-qv-details {
  flex: 1;
  padding: 40px 36px;
}
.jt-qv-details h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.jt-qv-price {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}
.jt-qv-desc {
  font-size: .85rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.jt-qv-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.jt-qv-view {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color .3s;
}
.jt-qv-view:hover { color: var(--brand-gold); }
.jt-qv-add {
  padding: 12px 24px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
  transition: background .3s;
}
.jt-qv-add:hover { background: #333; }

/* ── Cart Sidebar ── */
.jt-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 10001;

  visibility: hidden;
  transition: all .3s;
}
.jt-cart-overlay.open {
  opacity: 1;
  visibility: visible;
}
.jt-cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  transition: right .3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,.1);
}
.jt-cart-sidebar.open {
  right: 0;
}
.jt-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
}
.jt-cart-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  transition: color .3s;
}
.jt-cart-close:hover { color: #333; }

.jt-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.jt-cart-empty {
  text-align: center;
  color: #999;
  font-size: .85rem;
  padding: 40px 0;
}
.jt-cart-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.jt-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  background: #f8f8f8;
}
.jt-cart-item-info { flex: 1; }
.jt-cart-item-name {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.jt-cart-item-price {
  font-size: .75rem;
  color: #666;
  margin-bottom: 8px;
}
.jt-cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #ddd;
  display: inline-flex;
}
.jt-qty-btn {
  width: 28px;
  height: 28px;
  background: #f8f8f8;
  border: none;
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.jt-qty-btn:hover { background: #eee; }
.jt-cart-item-qty span {
  padding: 0 10px;
  font-size: .8rem;
  font-weight: 500;
}
.jt-cart-remove {
  position: absolute;
  top: 14px;
  right: 0;
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color .3s;
}
.jt-cart-remove:hover { color: #999; }

.jt-cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
}
.jt-cart-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.jt-cart-checkout {
  display: block;
  text-align: center;
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s;
  margin-bottom: 8px;
}
.jt-cart-checkout:hover { background: #333333; }
.jt-cart-viewcart {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  color: #666;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .jt-qv-body { flex-direction: column; }
  .jt-qv-img { flex: none; padding: 20px; }
  .jt-qv-details { padding: 20px; }
  .jt-cart-sidebar { width: 100%; right: -100%; }
  .jt-pcard-actions { opacity: 1; transform: translateY(0); }
}
@media (max-width: 576px) {
  .jt-pcard { padding: 12px 12px 10px; }
  .jt-pcard-img img { max-height: 160px; }
  .jt-btn-qv, .jt-btn-atc { font-size: .55rem; padding: 8px 0; }
  .jt-btn-text { display: none !important; }
  .jt-btn-icon { display: inline-flex !important; align-items: center; justify-content: center; }
  .jt-pcard-name { font-size: .7rem; }
}

/* Product Tag Badges */
.jt-pcard-badge .jt-badge-jt { display: inline-block; background: #1a1a1a; color: #fff; font-family: Inter,sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 4px 10px; text-transform: uppercase; border-radius: 2px; }
.jt-pcard-badge .jt-badge-best { display: inline-block; background: #c9a96e; color: #0a0a0a; font-family: Inter,sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 4px 10px; text-transform: uppercase; border-radius: 2px; }
.jt-pcard-badge .jt-badge-new { display: inline-block; background: #2d2d2d; color: #fff; font-family: Inter,sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 4px 10px; text-transform: uppercase; border-radius: 2px; }
.jt-pcard-badge .jt-badge-staff { display: inline-block; background: #c9a96e; color: #0a0a0a; font-family: Inter,sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 4px 10px; text-transform: uppercase; border-radius: 2px; }
