/* ═══════════════════════════════════════════════════════════
   DTF PORTUGAL — V3 Theme CSS
   Good Vibes · Pastel · Natural · Professional
   ═══════════════════════════════════════════════════════════ */

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --white: #FFFFFF;
  --cream: #FBF9F6;
  --sand: #F5F0EB;
  --peach: #FDEEE4;
  --mint: #E8F5EE;
  --lavender: #EDE8F5;
  --sky: #E4F0FB;
  --gray-100: #F0EEEA;
  --gray-200: #E8E6E1;
  --gray-300: #CCC8C2;
  --gray-400: #A9A49E;
  --gray-500: #7D7872;
  --gray-700: #4A4541;
  --gray-900: #1D1B18;
  --green: #2D9D6F;
  --green-hover: #258a60;
  --green-soft: #D4EDE0;
  --coral: #E87461;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 50px;
  --font: 'Inter', -apple-system, sans-serif;
  --font-d: 'Outfit', 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); color: var(--gray-700); background: var(--white); line-height: 1.65; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── LOADER ─────────────────────────────────────────────── */
.dtf-loader {
  position: fixed; inset: 0; background: var(--cream); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.dtf-loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.dtf-loader-inner { text-align: center; }
.dtf-loader-logo { height: 36px; margin: 0 auto 20px; }
.dtf-loader-bar {
  width: 100px; height: 3px; background: var(--gray-200); border-radius: 3px;
  overflow: hidden; margin: 0 auto;
}
.dtf-loader-bar::after {
  content: ''; display: block; height: 100%; width: 0; background: var(--green);
  border-radius: 3px; animation: loaderFill 1.2s var(--ease) forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ─── ANNOUNCEMENT BAR ───────────────────────────────────── */
body { padding-top: 44px; }

.dtf-announcement-sticky {
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  z-index: 998;
}

.dtf-announcement {
  background: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%);
  background-size: 200% auto;
  animation: bgPan 4s ease-in-out infinite alternate;
  color: #FFFFFF;
  padding: 10px 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(127, 0, 255, 0.4);
}
@keyframes bgPan {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.dtf-announcement-marquee {
  display: flex;
  white-space: nowrap;
}
.dtf-announcement-track {
  display: inline-flex;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.dtf-announcement-track:hover {
  animation-play-state: paused;
}
.dtf-announcement-content {
  display: inline-flex;
  align-items: center;
  padding-right: 40px;
  font-family: var(--font-d);
  font-size: 15px;
  letter-spacing: 0.3px;
}
.dtf-announcement-content strong {
  font-weight: 800;
  color: #FFFFFF;
}
.dtf-announcement-coupon {
  display: inline-block;
  background: #FFFFFF;
  color: #7F00FF;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  margin: 0 6px;
  font-family: monospace;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.boom-icon {
  margin: 0 12px;
  animation: pulse-boom 1s infinite alternate;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}
@keyframes pulse-boom {
  0% { transform: scale(1); filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4)); }
  100% { transform: scale(1.2) rotate(5deg); filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)); }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HEADER ─────────────────────────────────────────────── */
.dtf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, background 0.3s;
}
.dtf-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.05); background: rgba(255,255,255,0.95); }
.dtf-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.dtf-header-logo img { height: 30px; transition: transform 0.3s var(--ease); }
.dtf-header-logo:hover img { transform: scale(1.03); }

.dtf-nav { display: flex; gap: 32px; }
.dtf-nav-link {
  font-size: 14px; font-weight: 500; color: var(--gray-500);
  padding: 6px 0; position: relative; transition: color 0.25s;
}
.dtf-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--green); transition: width 0.3s var(--ease), left 0.3s var(--ease);
  border-radius: 2px;
}
.dtf-nav-link:hover { color: var(--gray-900); }
.dtf-nav-link:hover::after { width: 100%; left: 0; }

/* ─── MEGAMENU (inline — @import not reliable with WP enqueue) ─── */
/* Trigger wrapper */
.dtf-has-mega { display: flex; align-items: center; }
/* Panel — hidden by default */
.dtf-mega {
  position: absolute; top: 100%; left: 0; width: 100%;
  background: var(--white);
  border-top: 2px solid var(--gray-200);
  box-shadow: 0 20px 50px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.04);
  padding: 40px 0 32px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 999;
}
.dtf-mega.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}
/* 3-column grid */
.dtf-mega-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 24px; }
/* Column cards */
.dtf-mega-col {
  background: #f9fbfc;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dtf-mega-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.08);
}
/* Category heading */
.dtf-mega-heading { 
  margin-bottom: 16px; 
  padding-bottom: 12px; 
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dtf-mega-heading a {
  font-family: var(--font-d); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.6px; color: var(--gray-900);
  text-decoration: none; transition: color 0.15s;
}
.dtf-mega-heading a:hover { color: var(--green); }
.dtf-mega-icon { display: block; }
.dtf-badge {
  display: inline-block;
  background: #E100FF;
  color: white;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 1.2;
  vertical-align: middle;
  margin-left: 6px;
  letter-spacing: 0.5px;
}
/* Product list */
.dtf-mega-list { list-style: none; padding: 0; margin: 0; }
.dtf-mega-list li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; font-size: 14px; font-weight: 500;
  color: var(--gray-600); text-decoration: none;
  transition: color 0.15s, transform 0.15s;
}
.dtf-mega-list li a:hover { color: var(--green); transform: translateX(4px); }
/* Footer CTA */
.dtf-mega-foot { margin-top: 0; padding-top: 16px; border-top: 1px solid var(--gray-100); text-align: center; }
.dtf-mega-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--green);
  text-decoration: none; transition: gap 0.2s, color 0.15s;
}
.dtf-mega-all:hover { gap: 12px; color: var(--green-hover); }
.dtf-mega-all span { font-size: 16px; }
/* Mobile sub-categories */
.dtf-mobile-sub { font-size: 22px !important; font-weight: 500 !important; color: var(--gray-500) !important; padding-left: 20px; }

/* Footer social */
.dtf-footer-social { display: flex; gap: 12px; margin-top: 16px; }
.dtf-footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.dtf-footer-social-link:hover { background: var(--green); color: white; }

/* Footer payment icons */
.dtf-footer-payments { display: flex; align-items: center; gap: 8px; }
.dtf-footer-payments svg { opacity: 0.6; transition: opacity 0.2s; }
.dtf-footer-payments svg:hover { opacity: 1; }

.dtf-header-right { display: flex; align-items: center; gap: 16px; }
.dtf-header-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--gray-400); transition: color 0.2s;
}
.dtf-header-phone:hover { color: var(--gray-700); }
.dtf-header-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  color: var(--gray-500); transition: all 0.2s; position: relative;
}
.dtf-header-icon:hover { color: var(--gray-900); background: var(--gray-100); }
.dtf-cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--green); color: white; font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.dtf-cart-count:empty { display: none; }
.dtf-header-cta {
  font-size: 13px; font-weight: 600; padding: 10px 24px;
  background: var(--green); color: white; border-radius: var(--r-pill);
  transition: all 0.25s;
}
.dtf-header-cta:hover { background: var(--green-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,157,111,0.25); }

/* Burger */
.dtf-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.dtf-burger span { width: 22px; height: 2px; background: var(--gray-900); border-radius: 2px; transition: all 0.3s var(--ease); display: block; }
.dtf-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dtf-burger.active span:nth-child(2) { opacity: 0; }
.dtf-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .dtf-nav, .dtf-header-phone { display: none; }
  .dtf-burger { display: flex; }
  .dtf-mega { display: none !important; }
}
@media (max-width: 640px) {
  .dtf-header-cta { display: none; }
}

/* Mobile Menu */
.dtf-mobile-menu {
  position: fixed; inset: 0; background: var(--white); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease);
  padding-top: 72px;
}
.dtf-mobile-menu.active { opacity: 1; pointer-events: all; }
.dtf-mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.dtf-mobile-nav a {
  font-family: var(--font-d); font-size: 28px; font-weight: 700; color: var(--gray-900);
  opacity: 0; transform: translateY(16px); transition: all 0.4s var(--ease);
}
.dtf-mobile-menu.active .dtf-mobile-nav a { opacity: 1; transform: none; }
.dtf-mobile-menu.active .dtf-mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.dtf-mobile-menu.active .dtf-mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.dtf-mobile-menu.active .dtf-mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.dtf-mobile-menu.active .dtf-mobile-nav a:nth-child(4) { transition-delay: 0.2s; }
.dtf-mobile-menu.active .dtf-mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.dtf-mobile-menu.active .dtf-mobile-nav a:nth-child(6) { transition-delay: 0.3s; }
.dtf-mobile-cta {
  font-size: 16px !important; padding: 16px 40px;
  background: var(--green); color: white !important;
  border-radius: var(--r-pill); margin-top: 8px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.dtf-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 14px 32px; border-radius: var(--r-pill);
  transition: all 0.3s var(--ease); cursor: pointer; border: none;
}
.dtf-btn--primary { background: var(--green); color: white; }
.dtf-btn--primary:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(45,157,111,0.2); }
.dtf-btn--secondary { background: var(--white); color: var(--gray-700); border: 1.5px solid var(--gray-300); }
.dtf-btn--secondary:hover { border-color: var(--gray-500); background: var(--cream); }
.dtf-btn--lg { padding: 18px 40px; font-size: 16px; }

/* ─── HERO ───────────────────────────────────────────────── */
.dtf-hero {
  padding: 150px 0 80px;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.dtf-hero-blobs { position: absolute; inset: 0; pointer-events: none; }
.dtf-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.dtf-blob--peach { width: 450px; height: 450px; background: var(--peach); top: -120px; right: -80px; }
.dtf-blob--mint { width: 350px; height: 350px; background: var(--mint); bottom: -100px; left: -60px; }
.dtf-blob--lavender { width: 250px; height: 250px; background: var(--lavender); top: 50%; left: 40%; }

.dtf-hero-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.dtf-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 20px;
}
.dtf-dot-pulse {
  width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.dtf-hero h1 {
  font-family: var(--font-d); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.1; color: var(--gray-900); margin-bottom: 20px;
}
.dtf-highlight { color: var(--green); position: relative; }

.dtf-hero-sub {
  font-size: 17px; line-height: 1.75; color: var(--gray-500);
  max-width: 460px; margin-bottom: 32px;
}
.dtf-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.dtf-hero-images { position: relative; }
.dtf-hero-img-main {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.04);
}
.dtf-hero-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.dtf-hero-img-float {
  position: absolute; border-radius: var(--r); overflow: hidden;
  border: 5px solid var(--white); box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.dtf-hero-img-float--1 {
  bottom: -20px; left: -30px; width: 120px; padding: 16px;
  background: white; transform: rotate(-3deg);
}
.dtf-hero-img-float--1 img { width: 100%; height: auto; object-fit: contain; }

@media (max-width: 960px) {
  .dtf-hero { padding: 120px 0 60px; }
  .dtf-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .dtf-hero-images { order: -1; max-width: 500px; }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.dtf-trust-bar {
  padding: 40px 0; background: var(--white);
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
}
.dtf-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.dtf-trust-stat strong {
  font-family: var(--font-d); font-size: 32px; font-weight: 800;
  color: var(--gray-900); display: block;
}
.dtf-trust-stat span { font-size: 13px; color: var(--gray-400); margin-top: 2px; display: block; }
@media (max-width: 640px) { .dtf-trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── SECTION INTRO ──────────────────────────────────────── */
.dtf-section-intro { max-width: 560px; margin-bottom: 56px; }
.dtf-section-intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.dtf-section-intro h2 {
  font-family: var(--font-d); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; line-height: 1.12; color: var(--gray-900); margin-bottom: 12px;
}
.dtf-section-intro p { font-size: 16px; color: var(--gray-500); line-height: 1.7; }

/* ─── SERVICES ───────────────────────────────────────────── */
.dtf-services { padding: 100px 0; }
.dtf-service-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; margin-bottom: 72px;
}
.dtf-service-row:last-child { margin-bottom: 0; }
.dtf-service-row--reverse .dtf-service-photo { order: 2; }

.dtf-service-photo { border-radius: var(--r-xl); overflow: hidden; }
.dtf-service-photo img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dtf-service-photo:hover img { transform: scale(1.04); }
.dtf-service-placeholder {
  width: 100%; aspect-ratio: 4/3; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 20px; font-weight: 700; color: var(--gray-300);
}

.dtf-tag {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.dtf-tag--green { background: var(--mint); color: var(--green); }
.dtf-tag--sky { background: var(--sky); color: #2570B0; }
.dtf-tag--lavender { background: var(--lavender); color: #6B50A0; }

.dtf-service-text h3 {
  font-family: var(--font-d); font-size: 28px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 14px;
}
.dtf-service-text > p {
  font-size: 15px; color: var(--gray-500); line-height: 1.75; margin-bottom: 20px;
}

.dtf-check-list { list-style: none; margin-bottom: 24px; }
.dtf-check-list li {
  font-size: 14px; color: var(--gray-700);
  padding: 7px 0 7px 28px; position: relative;
}
.dtf-check-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700; font-size: 15px;
}

.dtf-link-arrow {
  font-size: 14px; font-weight: 600; color: var(--green);
  display: inline-flex; align-items: center; gap: 4px; transition: gap 0.3s var(--ease);
}
.dtf-link-arrow:hover { gap: 10px; }

@media (max-width: 960px) {
  .dtf-service-row { grid-template-columns: 1fr; gap: 28px; }
  .dtf-service-row--reverse .dtf-service-photo { order: 0; }
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.dtf-how { padding: 100px 0; background: var(--cream); }
.dtf-steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px; align-items: start;
}
.dtf-step {
  text-align: center; padding: 28px 20px;
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.dtf-step:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.dtf-step-num {
  width: 48px; height: 48px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 20px; font-weight: 700;
  background: var(--green); color: white; border-radius: 14px;
}
.dtf-step h4 { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.dtf-step p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.dtf-step-arrow { color: var(--gray-300); margin-top: 44px; }

@media (max-width: 768px) {
  .dtf-steps { grid-template-columns: 1fr; gap: 12px; }
  .dtf-step-arrow { display: none; }
  .dtf-step { text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 20px; }
  .dtf-step-num { margin: 0; flex-shrink: 0; }
}

/* ─── PRODUCTS FEATURED ──────────────────────────────────── */
.dtf-products-featured { padding: 100px 0; }
.dtf-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px;
}
.dtf-product-card {
  background: var(--white); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.35s var(--ease); display: block;
}
.dtf-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.08); }
.dtf-product-thumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream);
}
.dtf-product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dtf-product-card:hover .dtf-product-thumb img { transform: scale(1.06); }
.dtf-product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 600; padding: 5px 14px;
  background: var(--green); color: white; border-radius: var(--r-pill);
}
.dtf-product-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 14px; font-weight: 600; color: var(--gray-400);
  padding: 20px; text-align: center;
}
.dtf-product-body { padding: 20px; }
.dtf-product-body h3 {
  font-family: var(--font-d); font-size: 15px; font-weight: 700;
  color: var(--gray-900); margin-bottom: 8px; line-height: 1.3;
}
.dtf-product-price { font-size: 14px; color: var(--gray-500); }
.dtf-product-price strong { font-size: 18px; color: var(--gray-900); font-weight: 700; }

.dtf-products-cta { text-align: center; }

@media (max-width: 960px) { .dtf-products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dtf-products-grid { grid-template-columns: 1fr; max-width: 380px; } }

/* ─── WHY US ─────────────────────────────────────────────── */
.dtf-why { padding: 100px 0; background: var(--white); }
.dtf-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.dtf-why-text h2 {
  font-family: var(--font-d); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--gray-900); margin-bottom: 16px;
}
.dtf-why-text > p { font-size: 16px; color: var(--gray-500); line-height: 1.8; }
.dtf-why-features { display: flex; flex-direction: column; gap: 14px; }
.dtf-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; border-radius: var(--r); background: var(--cream);
  transition: all 0.3s var(--ease);
}
.dtf-feature:hover { background: var(--mint); transform: translateX(4px); }
.dtf-feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 1px; }
.dtf-feature h4 { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 3px; }
.dtf-feature p { font-size: 14px; color: var(--gray-500); line-height: 1.55; }

@media (max-width: 768px) { .dtf-why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── CTA ────────────────────────────────────────────────── */
.dtf-cta {
  padding: 100px 0; background: var(--mint);
  position: relative; overflow: hidden;
}
.dtf-cta-blobs { position: absolute; inset: 0; pointer-events: none; }
.dtf-blob--peach-cta {
  position: absolute; width: 300px; height: 300px;
  background: var(--peach); border-radius: 50%; filter: blur(80px);
  top: -80px; right: -60px; opacity: 0.6;
}
.dtf-cta-content { text-align: center; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.dtf-cta-content h2 {
  font-family: var(--font-d); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; color: var(--gray-900); margin-bottom: 12px;
}
.dtf-cta-content p { font-size: 16px; color: var(--gray-500); margin-bottom: 32px; line-height: 1.7; }
.dtf-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.dtf-footer { padding: 64px 0 32px; background: var(--gray-900); color: rgba(255,255,255,0.4); }
.dtf-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.dtf-footer-logo { height: 24px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.dtf-footer-brand p { font-size: 14px; line-height: 1.6; }
.dtf-footer-col h4 {
  font-size: 12px; font-weight: 600; margin-bottom: 14px;
  letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.dtf-footer-col a, .dtf-footer-col p { display: block; font-size: 14px; margin-bottom: 8px; transition: color 0.2s; }
.dtf-footer-col a:hover { color: white; }
.dtf-footer-trust { margin-top: 16px; display: flex; flex-direction: column; gap: 4px; font-size: 13px; }
.dtf-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.2);
}
.dtf-footer-payments { display: flex; gap: 4px; }
@media (max-width: 768px) { .dtf-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .dtf-footer-grid { grid-template-columns: 1fr; }
  .dtf-footer-bottom { flex-direction: column; gap: 8px; }
}

/* ─── BREADCRUMBS ────────────────────────────────────────── */
.dtf-breadcrumbs {
  padding: 100px 0 16px; font-size: 13px; color: var(--gray-400);
  background: var(--cream);
}
.dtf-breadcrumbs a { color: var(--gray-400); transition: color 0.2s; }
.dtf-breadcrumbs a:hover { color: var(--gray-900); }
.dtf-breadcrumbs span { margin: 0 6px; }

/* ─── WOOCOMMERCE OVERRIDES ──────────────────────────────── */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 20px !important; }
.woocommerce ul.products li.product {
  margin: 0 !important; padding: 0 !important; width: 100% !important; float: none !important;
  background: var(--white); border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--r-lg) !important; overflow: hidden; transition: all 0.35s var(--ease);
}
.woocommerce ul.products li.product:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }
.woocommerce ul.products li.product img { border-radius: 0 !important; margin: 0 !important; transition: transform 0.5s var(--ease) !important; }
.woocommerce ul.products li.product:hover img { transform: scale(1.05); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-d) !important; font-size: 15px !important; font-weight: 700 !important; padding: 16px 16px 4px !important; }
.woocommerce ul.products li.product .price { padding: 4px 16px 16px !important; font-size: 16px !important; font-weight: 700 !important; color: var(--gray-900) !important; }
.woocommerce ul.products li.product a.button { margin: 0 16px 16px !important; }

@media (max-width: 768px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 480px) { .woocommerce ul.products { grid-template-columns: 1fr !important; } }

/* Single product */
.woocommerce div.product { font-family: var(--font) !important; }
.woocommerce div.product .product_title { font-family: var(--font-d) !important; font-size: clamp(24px, 3vw, 32px) !important; font-weight: 800 !important; }
.woocommerce div.product .woocommerce-product-gallery { border-radius: var(--r-lg) !important; overflow: hidden; }

/* Buttons global */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, button.single_add_to_cart_button {
  font-family: var(--font) !important; font-weight: 600 !important;
  border-radius: var(--r-pill) !important; transition: all 0.25s !important;
}
.woocommerce a.button.alt, .woocommerce button.button.alt, button.single_add_to_cart_button {
  background: var(--green) !important; border-color: var(--green) !important;
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, button.single_add_to_cart_button:hover {
  background: var(--green-hover) !important;
}

/* ─── DTF SUITE FORM OVERRIDES ───────────────────────────── */
.dtf-product-form, .dtf-frontend-form, #dtf-product-form { font-family: var(--font) !important; }
.dtf-upload-zone, .upload-zone, .upload-area {
  border: 2px dashed var(--gray-300) !important; border-radius: var(--r-lg) !important;
  background: var(--cream) !important; transition: all 0.3s;
}
.dtf-upload-zone:hover, .upload-zone:hover { border-color: var(--green) !important; background: var(--mint) !important; }

/* ─── ANIMATION CLASSES ──────────────────────────────────── */
[data-anim] { opacity: 0; }
[data-anim="fade-up"] { transform: translateY(32px); }
[data-anim="fade-right"] { transform: translateX(-32px); }
[data-anim="fade-left"] { transform: translateX(32px); }
[data-anim="pop"] { transform: scale(0.85); }
[data-anim].animated {
  opacity: 1; transform: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

/* Stagger children */
[data-anim="stagger"] > * { opacity: 0; transform: translateY(24px); }
[data-anim="stagger"].animated > * {
  opacity: 1; transform: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-anim="stagger"].animated > *:nth-child(1) { transition-delay: 0s; }
[data-anim="stagger"].animated > *:nth-child(2) { transition-delay: 0.08s; }
[data-anim="stagger"].animated > *:nth-child(3) { transition-delay: 0.16s; }
[data-anim="stagger"].animated > *:nth-child(4) { transition-delay: 0.24s; }
[data-anim="stagger"].animated > *:nth-child(5) { transition-delay: 0.32s; }
[data-anim="stagger"].animated > *:nth-child(6) { transition-delay: 0.40s; }
[data-anim="stagger"].animated > *:nth-child(7) { transition-delay: 0.48s; }

/* ─── SMOOTH SCROLL BODY ─────────────────────────────────── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════════ */

.dtf-product { padding-bottom: 80px; background: var(--cream); }

.dtf-product-layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: start; margin-bottom: 60px;
}

/* Gallery */
.dtf-gallery-main {
  border-radius: var(--r-xl); overflow: hidden; background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
}
.dtf-gallery-main img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
}
.dtf-gallery-thumbs {
  display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap;
}
.dtf-gallery-thumb {
  width: 72px; height: 72px; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; padding: 0; background: var(--white);
  transition: all 0.2s;
}
.dtf-gallery-thumb:hover { border-color: var(--gray-300); }
.dtf-gallery-thumb.active { border-color: var(--green); }
.dtf-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dtf-gallery-placeholder {
  aspect-ratio: 1/1; background: var(--gray-100); border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 18px; font-weight: 600; color: var(--gray-300);
}

/* Product info */
.dtf-product-info { position: sticky; top: 100px; }
.dtf-product-title {
  font-family: var(--font-d) !important; font-size: clamp(24px, 3vw, 34px) !important;
  font-weight: 800 !important; color: var(--gray-900) !important;
  line-height: 1.15 !important; margin-bottom: 16px !important;
}
.dtf-product-excerpt {
  font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px;
}
.dtf-product-excerpt h2 { font-size: 18px; color: var(--green); margin-bottom: 12px; font-family: var(--font-d); }
.dtf-product-excerpt ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.dtf-product-excerpt li {
  padding: 5px 0 5px 24px; position: relative; font-size: 14px; color: var(--gray-700);
}
.dtf-product-excerpt li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.dtf-impo-link { margin-top: 20px; }

/* Description SEO */
.dtf-product-description {
  background: var(--white); border-radius: var(--r-xl); padding: 48px;
  border: 1px solid rgba(0,0,0,0.04); margin-bottom: 60px;
}
.dtf-product-description h2 {
  font-family: var(--font-d); font-size: 24px; font-weight: 700;
  color: var(--gray-900); margin: 32px 0 12px;
}
.dtf-product-description h2:first-child { margin-top: 0; }
.dtf-product-description h3 {
  font-family: var(--font-d); font-size: 18px; font-weight: 700;
  color: var(--gray-900); margin: 24px 0 8px;
}
.dtf-product-description p { font-size: 15px; line-height: 1.75; color: var(--gray-500); margin-bottom: 16px; }
.dtf-product-description ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.dtf-product-description li {
  padding: 6px 0 6px 24px; position: relative; font-size: 14px; color: var(--gray-700);
}
.dtf-product-description li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* Related */
.dtf-related { margin-bottom: 40px; }
.dtf-related h3 {
  font-family: var(--font-d); font-size: 24px; font-weight: 800;
  color: var(--gray-900); margin-bottom: 24px;
}
.dtf-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 960px) {
  .dtf-product-layout { grid-template-columns: 1fr; }
  .dtf-product-info { position: static; }
  .dtf-product-description { padding: 32px 24px; }
  .dtf-related-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════════════════════ */

.dtf-shop { padding: 24px 0 80px; background: var(--cream); }
.dtf-shop h1 {
  font-family: var(--font-d) !important; font-weight: 800 !important;
  color: var(--gray-900) !important;
}

.dtf-shop-filters {
  display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
  justify-content: center;
}
.dtf-filter-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; padding: 10px 20px;
  background: var(--white); color: var(--gray-700);
  border-radius: var(--r-pill); border: 1.5px solid var(--gray-200);
  transition: all 0.25s;
}
.dtf-filter-btn:hover { border-color: var(--green); color: var(--green); }
.dtf-filter-btn.active { background: var(--green); color: white; border-color: var(--green); }
.dtf-filter-count {
  font-size: 11px; font-weight: 700; background: rgba(0,0,0,0.06);
  padding: 2px 7px; border-radius: 50px;
}
.dtf-filter-btn.active .dtf-filter-count { background: rgba(255,255,255,0.25); color: white; }

.dtf-no-products {
  text-align: center; padding: 60px 0; font-size: 16px; color: var(--gray-400);
}

/* ═══════════════════════════════════════════════════════════
   GENERIC PAGE
   ═══════════════════════════════════════════════════════════ */

.dtf-page { padding: 24px 0 80px; background: var(--cream); }
.dtf-page-content {
  max-width: 760px; background: var(--white);
  border-radius: var(--r-xl); padding: 48px;
  border: 1px solid rgba(0,0,0,0.04);
}
.dtf-page-content h1 {
  font-family: var(--font-d); font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800; color: var(--gray-900); margin-bottom: 24px;
}
.dtf-page-content p { font-size: 15px; line-height: 1.75; color: var(--gray-500); margin-bottom: 16px; }
.dtf-page-content a { color: var(--green); font-weight: 500; }
.dtf-page-content a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   NAV LINK ACTIVE
   ═══════════════════════════════════════════════════════════ */
.dtf-nav-link.active { color: var(--gray-900); }
.dtf-nav-link.active::after { width: 100%; left: 0; }

/* ═══════════════════════════════════════════════════════════
   DTF SUITE — Color override to match Portugal theme
   Suite default is #009d45 (Barcelona green), we use #2D9D6F
   ═══════════════════════════════════════════════════════════ */
:root {
  --dtf-primary: #2D9D6F !important;
  --dtf-button-cart: #2D9D6F !important;
  --dtf-success: #2D9D6F !important;
  --dtf-modal-button: #2D9D6F !important;
  --dtf-modal-step: #2D9D6F !important;
  --dtf-btn-bg: #2D9D6F !important;
  --dtf-btn-hover: #258a60 !important;
}
/* Direct override for help button (pink → green) */
.dtf-help-btn {
  background: #2D9D6F !important;
  border-color: #2D9D6F !important;
  color: #fff !important;
}
.dtf-help-btn:hover {
  background: #258a60 !important;
  border-color: #258a60 !important;
}
