/*
Theme Name: Pro Coat Deco
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme. Sample child theme.
Author: OceanWP
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 8.3.5
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* generales */

h2 .rc_color_titulo {
    color:#604300 !important;
    font-weight:bold;
}

.rc_linea_1_titulo {
    color:black;
    font-weight:200;
}

/* color menu home*/
.home .elementor-10 .elementor-element.elementor-element-cf61297 .elementor-nav-menu--main .elementor-item {
    color: white!important;
    fill: white!important;
}


/* degradado fonfo imagenes productos*/
.producto-imagen-fondo {
  background-image: linear-gradient(
    to bottom,
    #ecdcc6,  /* background-100 — beige cálido suave */
    #fcf8f1   /* background-50 — crema casi blanco */
  );
}
@media (min-width: 768px) {
  .producto-imagen-fondo {
    padding: 48px;
    min-height: 550px;
  }
}

/* final degradado fonfo imagenes productos*/


/* cabezera pegajosa*/
.elementor-element-0a8c773 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.3s ease, padding 0.3s ease, min-height 0.3s ease;
}

.elementor-element-0a8c773::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.elementor-element-0a8c773.scrolled {
  background-color: rgb(20 15 10 / 37%);
  /*background-color: rgba(20, 15, 10, 0.85);*/
  padding-top: 6px;
  padding-bottom: 6px;
  min-height: 80px;
  display: flex;
  align-items: center;
  animation: mtdHeaderReenter 1.2s ease;
}

.elementor-element-0a8c773.scrolled::after {
  opacity: 1;
}

@keyframes mtdHeaderReenter {
  0% { transform: translateY(0); opacity: 1; }
  35% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.elementor-element-0a8c773.scrolled .elementor-element-35e3c6e img {
  width: 140px !important;
  height: auto !important;
  transition: width 0.3s ease;
}

.elementor-element-0a8c773.scrolled .elementor-element-cf61297 .elementor-item {
  font-size: 14px;
  padding: 6px 12px;
}

.elementor-element-0a8c773 .e-flexbox-base {
    padding: 0px !important;
}


/* ============================================================
 * Estilos del shortcode [colgadores_carousel]
 * (extraído de functions.php - antes vivía en un <style> inline)
 * ============================================================ */
.mtd-colgadores-wrap {
    /* Colores simples (antes eran variables OKLCH de 3 canales) */
    --crema: #fcf8f1;         /* fondo general / crema casi blanco */
    --beige: #ecdcc6;         /* fondo de pestañas, tarjetas, miniaturas */
    --beige-oscuro: #e3d0b0;  /* hover de pestañas */

    --marron-oscuro: #241a17; /* texto principal */
    --marron: #5c4238;        /* texto de valores (specs) */
    --marron-medio: #6f5045;  /* texto de pestañas, badges, descripción */
    --marron-claro: #83604f;  /* texto del subtítulo/lead */
    --marron-suave: #9c7a68;  /* texto de etiquetas pequeñas (labels) */

    --dorado-oscuro: #96631f; /* texto sobre fondo dorado claro (badge acabado) */
    --dorado: #b17a2c;        /* eyebrow, títulos destacados, hover botón */
    --dorado-claro: #cf9a44;  /* fondo de pestaña activa, botón CTA */
    --dorado-palido: #fbf3e4; /* fondo de miniatura activa */

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    font-family: var(--font-body);
  /*  background-color: var(--crema);*/
    color: var(--marron-oscuro);
    padding: 60px 20px;
}
.mtd-colgadores-wrap * { box-sizing: border-box; }
.mtd-colgadores-wrap h2, .mtd-colgadores-wrap h3 { font-family: var(--font-heading); margin: 0; }
.mtd-cg-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.mtd-cg-eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dorado); }
.mtd-cg-title { font-size: 42px; font-weight: 500; line-height: 1.15; margin-top: 12px; }
.mtd-cg-title strong { color: var(--dorado); font-weight: 700; }
.mtd-cg-lead { font-size: 16px; color: var(--marron-claro); margin-top: 12px; }

.mtd-cg-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 48px; }
.mtd-cg-tab { padding: 10px 22px; border-radius: 999px; border: none; font-family: var(--font-body); font-size: 14px; cursor: pointer; background: var(--beige); color: var(--marron-medio); transition: all .25s ease; }
.mtd-cg-tab:hover { background: var(--beige-oscuro); }
.mtd-cg-tab.is-active { background: var(--dorado-claro); color: var(--crema); }

.mtd-cg-panel { display: none; max-width: 1200px; margin: 0 auto; }
.mtd-cg-panel.is-active { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .mtd-cg-panel.is-active { grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; } }

.mtd-cg-imgbox { position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(to bottom, var(--beige), var(--crema)); border-radius: 12px; padding: 40px; min-height: 380px; }
.mtd-cg-imgbox img { max-height: 420px; width: auto; object-fit: contain; filter: drop-shadow(0 20px 25px rgb(0 0 0 / 0.15)); }
.mtd-cg-badges-top { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 8px; }
.mtd-cg-badge { padding: 6px 12px; background: rgb(255 255 255 / 0.9); border-radius: 6px; font-size: 12px; color: var(--marron-medio); }
.mtd-cg-badge-finish { position: absolute; bottom: 16px; right: 16px; padding: 6px 12px; background: rgba(207, 154, 68, 0.12); border-radius: 6px; font-size: 12px; color: var(--dorado-oscuro); font-weight: 500; }

.mtd-cg-subtitle { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dorado); }
.mtd-cg-name { font-size: 40px; font-weight: 600; margin: 8px 0 16px; }
.mtd-cg-desc { font-size: 16px; line-height: 1.7; color: var(--marron-medio); margin-bottom: 28px; }

.mtd-cg-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mtd-cg-spec { padding: 14px; border-radius: 10px; background: var(--beige); }
.mtd-cg-spec span { display: block; }
.mtd-cg-spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--marron-suave); margin-bottom: 4px; }
.mtd-cg-spec-value { font-size: 14px; font-weight: 500; color: var(--marron); }

.mtd-cg-cta { display: inline-block; margin-top: 24px; padding: 14px 32px; border-radius: 999px; background: var(--dorado-claro); color: var(--crema); font-family: var(--font-body); font-size: 14px; font-weight: 500; text-decoration: none; text-align: center; transition: background .25s ease; }
.mtd-cg-cta:hover { background: var(--dorado); color: var(--crema); }

.mtd-cg-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1200px; width: 100%; margin: 56px auto 0; }
@media (max-width: 900px) { .mtd-cg-thumbs { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .mtd-cg-thumbs { grid-template-columns: repeat(2, 1fr); } }
.mtd-cg-thumb { border: 2px solid transparent; border-radius: 10px; padding: 12px; background: var(--beige); cursor: pointer; transition: all .25s ease; width: 100%; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; min-width: 0; overflow: hidden; }
.mtd-cg-thumb img { width: 100% !important; height: 100% !important; object-fit: contain; display: block; }
.mtd-cg-thumb.is-active { border-color: var(--dorado-claro); background: var(--dorado-palido); }

.mtd-colgadores-wrap h3 {
  color: white;
}
.mtd-colgadores-wrap p {
  color:white!important;
}


/* ============================================================
 * Tabla comparativa Premium vs Estándar
 * Reutiliza las variables --crema, --marron-oscuro, --marron-medio,
 * --marron-suave, --dorado y --beige-oscuro definidas en
 * .mtd-colgadores-wrap. Si esta tabla se usa en una página SIN ese
 * wrapper, añade el bloque --variables (visto en la sección del
 * carrusel) aquí también, o cambia var(--x) por el hex directo.
 * ============================================================ */

.mtd-compare-wrap {
  background-color: var(--crema);
  padding: 32px 24px;
  border-radius: 12px;
  overflow-x: auto;
}

.mtd-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.mtd-compare-table th,
.mtd-compare-table td {
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.mtd-compare-table th:first-child,
.mtd-compare-table td:first-child {
  text-align: left;
}

/* Cabecera */
.mtd-compare-table thead th {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 14px;
}

.mtd-compare-col-label {
  color: var(--marron-suave);
}

.mtd-compare-col-premium {
  color: var(--dorado);
}

.mtd-compare-col-estandar {
  color: var(--marron);
}

/* Cuerpo de la tabla */
.mtd-compare-label {
  font-weight: 600;
  color: var(--marron-oscuro);
}

.mtd-compare-premium {
  color: var(--dorado);
}

.mtd-compare-estandar {
  color: var(--marron);
}

/* Última fila sin línea inferior */
.mtd-compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive: permite scroll horizontal en móvil sin romper el diseño */
@media (max-width: 600px) {
  .mtd-compare-table th,
  .mtd-compare-table td {
    padding: 14px 10px;
    font-size: 14px;
    white-space: normal;
  }
}

/* ============================================================
 * Vídeo 360 con scroll-scrubbing
 * ============================================================ */
.mtd-scrub-360 {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 480 / 853; /* proporción vertical real de los fotogramas del vídeo */
  margin: 0 auto;
  position: relative;
}

.mtd-scrub-360__canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}


/* ===== Galería Pinterest ===== */
.pg-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 10px;
  gap: 14px;
  margin: 2rem auto;
  max-width: 1400px;
}

/* Variante: máximo 2 columnas, para pocas fotos más grandes
   (se activa eligiendo "Máximo 2 columnas" en el panel del widget) */
.pg-container.pg-container--2col {
  grid-template-columns: 1fr; /* móvil: 1 columna */
  max-width: 900px;
}

@media (min-width: 640px) {
  .pg-container.pg-container--2col {
    grid-template-columns: repeat(2, 1fr); /* desktop/tablet: máximo 2 columnas */
  }
}

.pg-item {
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  cursor: pointer;
}

.pg-item.pg-visible {
  opacity: 1;
  transform: translateY(0);
}

.pg-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.pg-item:hover img {
  transform: scale(1.03);
}

/* Lightbox (popup con fondo negro al 80%) */
.pg-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.pg-lightbox.pg-open {
  display: flex;
}

.pg-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
}

.pg-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}



/* Widget ambientes home */
/* ================================================================
   Ambientaciones Section  –  ProCoatDeco
   Estilos independientes (no depende de Tailwind)
   ================================================================ */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --background-50:  #ffffff;
  --background-100: #faf8f5;

  --foreground-950: #1a1a1a;
  --foreground-500: #78716c;

  --primary-600: #b8860b;
  --primary-700: #9a720a;

  --color-white-alpha-90: rgba(255, 255, 255, 0.90);
  --overlay-start:  rgba(26, 26, 26, 0.70);
  --overlay-mid:    rgba(26, 26, 26, 0.20);
  --overlay-end:    rgba(26, 26, 26, 0);
  --text-on-dark:   #ffffff;
  --text-on-dark-secondary: rgba(255, 255, 255, 0.80);

  --card-radius:    8px;
  --tag-radius:     6px;
  --transition-smooth: 700ms ease;
  --transition-fast: 300ms ease;
}


/* ---------- Reset mínimo ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--background-50);
  color: var(--foreground-950);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}


/* ================================================================
   SECCIÓN PRINCIPAL
   ================================================================ */



.ambientaciones-container {
  width: 100%;
  /* max-width: 80rem; */               /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem;              /* px-6 */
}


/* ================================================================
   HEADER
   ================================================================ */
.ambientaciones-header {
  text-align: center;
  margin-bottom: 5rem;            /* mb-20 */
}

/* Badge "En Contexto" */
.ambientaciones-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;             /* text-xs */
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-600);
  margin-bottom: 1rem;            /* mb-4 */
}

/* Título principal */
.ambientaciones-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;             /* text-4xl */
  font-weight: 300;
  color: var(--foreground-950);
  line-height: 1.15;
}

.ambientaciones-title-accent {
  font-weight: 600;
  color: var(--primary-600);
}

/* Párrafo descriptivo */
.ambientaciones-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;                 /* text-base */
  color: var(--foreground-500);
  max-width: 42rem;                /* max-w-2xl */
  margin: 1rem auto 0 auto;       /* mt-4 + center */
  line-height: 1.7;
}


/* ================================================================
   GRID
   ================================================================ */
.ambientaciones-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;                   /* gap-5 */
}


/* ================================================================
   CARD
   ================================================================ */
.ambientaciones-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  cursor: pointer;
}


/* Contenedor de imagen  —  aspect-ratio 4:5 */
.ambientaciones-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ambientaciones-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--transition-smooth);
}

/* Zoom on hover */
.ambientaciones-card:hover .ambientaciones-card-image img {
  transform: scale(1.05);
}


/* Overlay degradado */
.ambientaciones-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--overlay-start) 0%,
    var(--overlay-mid)  50%,
    var(--overlay-end)  100%
  );
}


/* Contenido superpuesto */
.ambientaciones-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;              /* p-5 */
}


/* Tag */
.ambientaciones-card-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;     /* px-2.5 py-1 */
  background: var(--color-white-alpha-90);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--tag-radius);
  font-family: var(--font-body);
  font-size: 1.3rem;             /* text-xs */
  color: var(--primary-700);
  margin-bottom: 0.75rem;         /* mb-3 */
}


/* Título de la tarjeta */
.ambientaciones-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;             /* text-xl */
  color: var(--text-on-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;          /* mb-2 */
}


/* Descripción  —  visible solo en hover */
.ambientaciones-card-desc {
  font-family: var(--font-body);
  font-size: 15px;            /* text-sm */
  color: var(--text-on-dark-secondary);
  line-height: 1.625;             /* leading-relaxed */
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.ambientaciones-card:hover .ambientaciones-card-desc {
  opacity: 1;
}


/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Tablet: 2 columnas */
@media (min-width: 768px) {

  .ambientaciones-section {
    padding: 8rem 0;              /* md:py-32 */
  }

  .ambientaciones-container {
    padding: 0 3rem;              /* md:px-12 */
  }

  .ambientaciones-header {
    margin-bottom: 5rem;          /* md:mb-20 */
  }

  .ambientaciones-title {
    font-size: 3rem;              /* md:text-5xl */
  }

  .ambientaciones-subtitle {
    font-size: 1.125rem;          /* md:text-lg */
  }

  .ambientaciones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;                  /* md:gap-6 */
  }

  .ambientaciones-card-content {
    padding: 1.5rem;              /* md:p-6 */
  }

  .ambientaciones-card-title {
    /* font-size: 2.5rem; */            /* md:text-2xl */
    font-size: 25px;
  }
}


/* Desktop: 3 columnas */
@media (min-width: 1024px) {

  .ambientaciones-container {
    /* padding: 0 5rem; */              /* lg:px-20 */
  }

  .ambientaciones-title {
    font-size: 3.75rem;           /* lg:text-6xl */
  }

  .ambientaciones-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* estilos slider colgadores home */
.colgadores-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.colgadores-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    /* transition ahora se controla desde JS, no fijarla aquí */
}

.colgadores-slide {
    flex: 0 0 100%;
    height: 100%;
}

.colgadores-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .colgadores-slider { height: 420px; }
}

@media (max-width: 400px) {
    .colgadores-slider { height: 360px; }
}

/* pagina colecciones */
/* ============================================================
   PCD — Sección Colección de Productos
   ============================================================ */
.pcd-products-section {
  --pcd-font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --pcd-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --pcd-bg-50:  #ffffff;
  --pcd-bg-100: #faf8f5;
  --pcd-bg-200: #f0ece6;
  --pcd-fg-950: #1a1a1a;
  --pcd-fg-600: #78716c;
  --pcd-fg-500: #a8a29e;
  --pcd-fg-400: #d6d3d1;
  --pcd-primary-500: #b8860b;
  --pcd-primary-600: #a67c00;
  --pcd-primary-700: #9a720a;
  --pcd-primary-100: #f5efe0;
  --pcd-radius-lg: 8px;
  --pcd-radius-md: 6px;
  --pcd-transition: 300ms ease;
  --pcd-transition-slow: 700ms ease;

  width: 100%;
  padding: 2.5rem 0 4rem;
}
@media (min-width: 768px) { .pcd-products-section { padding: 4rem 0 6rem; } }

.pcd-container {
  width: 100%;
  /*max-width: 80rem;*/
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .pcd-container { padding: 0 3rem; } }
@media (min-width: 1024px) { .pcd-container { padding: 0 5rem; } }

.pcd-products-stack { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 768px) { .pcd-products-stack { gap: 6rem; } }

.pcd-product-block { scroll-margin-top: 80px; }

.pcd-product-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .pcd-product-header { margin-bottom: 2rem; } }

.pcd-product-number {
  font-family: var(--pcd-font-heading);
  font-size: 3rem; font-weight: 700; color: var(--pcd-bg-200); line-height: 1; user-select: none;
}
@media (min-width: 768px) { .pcd-product-number { font-size: 4.5rem; } }

.pcd-product-divider { height: 1px; flex: 1; background: var(--pcd-bg-200); }

.pcd-product-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .pcd-product-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.pcd-product-left { position: relative; }
.pcd-product-main-image-wrap { position: relative; background: var(--pcd-bg-100); border-radius: var(--pcd-radius-lg); overflow: hidden; }
.pcd-product-main-image-inner {
  position: relative; aspect-ratio: 3 / 4; overflow: hidden;
  background: linear-gradient(to bottom, var(--pcd-bg-100), var(--pcd-bg-50));
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
}
@media (min-width: 768px) { .pcd-product-main-image-inner { padding: 2.5rem; } }
.pcd-product-main-image-inner img { max-height: 100%; width: auto; object-fit: contain; transition: transform 500ms ease; }
.pcd-product-main-image-inner:hover img { transform: scale(1.05); }

.pcd-color-selector { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; }
.pcd-color-dot {
  position: relative; width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid transparent; transition: all 200ms ease; cursor: pointer;
}
.pcd-color-dot:hover { transform: scale(1.05); border-color: var(--pcd-fg-400); }
.pcd-color-dot.pcd-active { border-color: var(--pcd-primary-500); transform: scale(1.1); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }

.pcd-color-label { text-align: center; margin-top: 0.5rem; font-family: var(--pcd-font-body); font-size: 0.75rem; color: var(--pcd-fg-500); }

.pcd-product-right { display: flex; flex-direction: column; gap: 1.5rem; }
.pcd-product-use-image { background: var(--pcd-bg-100); border-radius: var(--pcd-radius-lg); overflow: hidden; }
.pcd-product-use-image-inner { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.pcd-product-use-image-inner img { width: 100%; height: 100%; object-fit: cover; }

.pcd-product-info { background: var(--pcd-bg-100); border-radius: var(--pcd-radius-lg); padding: 1.5rem; }
@media (min-width: 768px) { .pcd-product-info { padding: 2rem; } }
.pcd-product-info-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.pcd-product-info-subtitle {
  display: block; font-family: var(--pcd-font-body); font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--pcd-primary-600); margin-bottom: 0.25rem;
}
.pcd-product-info-title { font-family: var(--pcd-font-heading); font-size: 1.875rem; font-weight: 600; color: var(--pcd-fg-950); }
@media (min-width: 768px) { .pcd-product-info-title { font-size: 2.25rem; } }
.pcd-product-info-badge {
  padding: 0.375rem 0.625rem; background: var(--pcd-primary-100); border-radius: var(--pcd-radius-md);
  font-family: var(--pcd-font-body); font-size: 0.75rem; color: var(--pcd-primary-700); font-weight: 500; white-space: nowrap;
}
/*.pcd-product-info-desc { font-family: var(--pcd-font-body); font-size: 0.875rem; color: var(--pcd-fg-600); line-height: 1.7; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .pcd-product-info-desc { font-size: 1rem; } }*/

.pcd-product-specs { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.pcd-product-spec {
  display: flex; align-items: center; gap: 0.375rem; font-family: var(--pcd-font-body);
  font-size: 0.75rem; color: var(--pcd-fg-500); background: var(--pcd-bg-50); padding: 0.375rem 0.75rem; border-radius: var(--pcd-radius-md);
}
.pcd-product-spec i { color: var(--pcd-primary-500); font-size: 0.875rem; }

.pcd-product-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem;
  background: var(--pcd-primary-500); color: #fff; font-family: var(--pcd-font-body);
  font-size: 0.875rem; font-weight: 500; border-radius: var(--pcd-radius-md); transition: background var(--pcd-transition); white-space: nowrap;
}
.pcd-product-cta:hover { background: var(--pcd-primary-600); }
.pcd-product-cta i { transition: transform var(--pcd-transition); }
.pcd-product-cta:hover i { transform: translateX(4px); }

.pcd-reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity var(--pcd-transition-slow), transform var(--pcd-transition-slow); }
.pcd-reveal.pcd-animate-in { opacity: 1 !important; transform: translateY(0) !important; }