@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

/* =====================================================
   CSS VARIABLES — Lucas & Lola Brand
   ===================================================== */
:root {
  --bg:        #F5F0EA;
  --white:     #FFFFFF;
  --text:      #1A1410;
  --text-mid:  #4a3f35;
  --text-light:#7a6b5e;
  --cta:       #781562;
  --cta-dark:  #5c1049;
  --cta-light: #9a1c7f;
  --accent:    #fcb6b6;
  --border:    #E8DDD4;
  --section-alt:#F0E9E0;
  --dark-band: #1A1410;
  --green-dark:#2B2318;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(26,20,16,0.10);
  --shadow-sm: 0 1px 6px rgba(26,20,16,0.08);
  --max: 1160px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
.ll-tienda a { text-decoration: none; color: inherit; }
.ll-tienda img { display: block; max-width: 100%; }
.ll-tienda ul { list-style: none; }

.ll-tienda .container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.ll-tienda .btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.ll-tienda .btn-primary {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}
.btn-primary:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
}
.ll-tienda .btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: #fff;
}
.ll-tienda .btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
}
.ll-tienda .btn-sm {
  font-size: 12px;
  padding: 8px 16px;
}
.ll-tienda .btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
}
.ll-tienda .btn-ghost:hover { background: var(--bg); }
.ll-tienda .btn-dark-outline {
  background: transparent;
  border: 2px solid var(--text);
  color: var(--text);
}
.ll-tienda .btn-dark-outline:hover { background: var(--text); color: #fff; }

/* =====================================================
   HERO
   ===================================================== */
.ll-tienda .hero {
  background: var(--white);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: stretch;
}
.ll-tienda .hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: var(--max);
  align-items: center;
}
.ll-tienda .hero-content {
  padding: 64px 48px 64px 0;
}
.ll-tienda .hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 14px;
}
.ll-tienda .hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.ll-tienda .hero-subtitle {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.4;
}
.ll-tienda .hero-text {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 30px;
  max-width: 480px;
  line-height: 1.7;
}
.ll-tienda .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.ll-tienda .hero-microcopy {
  font-size: 11.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.ll-tienda .hero-img {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.ll-tienda .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ll-tienda .hero-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: linear-gradient(135deg, #e8ddd4 0%, #d4c5b5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  font-size: 13px;
}
.ll-tienda .store-img-label {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

/* =====================================================
   QUICK DATA STRIP
   ===================================================== */
.ll-tienda .quick-data {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.ll-tienda .quick-data-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-left: 1px solid var(--border);
}
.ll-tienda .qd-item {
  padding: 22px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ll-tienda .qd-icon {
  width: 32px; height: 32px;
  color: var(--cta);
  margin-bottom: 4px;
}
.ll-tienda .qd-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}
.ll-tienda .qd-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.ll-tienda .qd-value small {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-mid);
}

/* =====================================================
   FEATURE ICONS STRIP
   ===================================================== */
.ll-tienda .features-strip {
  background: var(--bg);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.ll-tienda .features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.ll-tienda .feat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.ll-tienda .feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
  box-shadow: var(--shadow-sm);
}
.ll-tienda .feat-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.ll-tienda .feat-desc {
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.5;
}

/* =====================================================
   CARD BLOCKS — 4 COLUMN
   ===================================================== */
.ll-tienda .section {
  padding: 72px 0;
}
.ll-tienda .section-alt {
  background: var(--section-alt);
}
.ll-tienda .section-white {
  background: var(--white);
}

.ll-tienda .section-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}
.ll-tienda .section-lead {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.ll-tienda .eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 8px;
}

.ll-tienda .cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ll-tienda .card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.ll-tienda .card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ll-tienda .card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.ll-tienda .card-img-placeholder.galgo { background: linear-gradient(135deg, #c8d8a0 0%, #a8c070 100%); }
.ll-tienda .card-img-placeholder.pharma { background: linear-gradient(135deg, #b8d4e8 0%, #88b4d0 100%); }
.ll-tienda .card-img-placeholder.collect { background: linear-gradient(135deg, #d8c4e0 0%, #b898c8 100%); }
.ll-tienda .card-img-placeholder.tallas { background: linear-gradient(135deg, #e8d4a0 0%, #d0b870 100%); }
.ll-tienda .card-body {
  padding: 22px 22px 24px;
}
.ll-tienda .card-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
}
.ll-tienda .card-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* =====================================================
   2-COL CONTENT SECTIONS
   ===================================================== */
.ll-tienda .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ll-tienda .two-col.reverse { direction: rtl; }
.ll-tienda .two-col.reverse > * { direction: ltr; }
.ll-tienda .content-block p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.ll-tienda .content-block p:last-of-type { margin-bottom: 24px; }

/* =====================================================
   MAP SECTION
   ===================================================== */
.ll-tienda .map-section {
  background: var(--white);
  padding: 64px 0;
}
.ll-tienda .map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.ll-tienda .map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 340px;
  background: #e4ddd5;
}
.ll-tienda .map-embed iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.ll-tienda .map-info h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.ll-tienda .map-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.ll-tienda .map-address svg { flex-shrink: 0; margin-top: 2px; color: var(--cta); }
.ll-tienda .map-address-text strong { display: block; font-weight: 700; font-size: 15px; }
.ll-tienda .map-address-text span { font-size: 14px; color: var(--text-mid); }
.ll-tienda .map-note {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 26px;
}
.ll-tienda .map-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================
   WHY US — ICON LIST
   ===================================================== */
.ll-tienda .why-section {
  background: var(--bg);
  padding: 72px 0;
}
.ll-tienda .why-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  text-align: center;
  margin-bottom: 8px;
}
.ll-tienda .why-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.ll-tienda .why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.ll-tienda .why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.ll-tienda .why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
  box-shadow: var(--shadow-sm);
}
.ll-tienda .why-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* =====================================================
   FULL-WIDTH SECTION VARIANTS
   ===================================================== */
.ll-tienda .banner-section {
  background: var(--white);
  padding: 72px 0;
}
.ll-tienda .banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* =====================================================
   FAQ
   ===================================================== */
.ll-tienda .faq-section {
  background: var(--bg);
  padding: 72px 0;
}
.ll-tienda .faq-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 8px;
}
.ll-tienda .faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.ll-tienda .faq-item {
  border-bottom: 1px solid var(--border);
}
.ll-tienda .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--font-body);
}
.ll-tienda .faq-q svg {
  flex-shrink: 0;
  color: var(--text-light);
  transition: transform .2s;
}
.ll-tienda .faq-item.open .faq-q svg { transform: rotate(180deg); color: var(--cta); }
.ll-tienda .faq-a {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.ll-tienda .faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 16px;
}

/* =====================================================
   CTA FINAL
   ===================================================== */
.ll-tienda .cta-final {
  background: var(--white);
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.ll-tienda .cta-final-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.ll-tienda .cta-final-img {
  width: 160px;
  flex-shrink: 0;
}
.ll-tienda .cta-final-img-placeholder {
  width: 200px; height: 200px;
  border-radius: var(--radius-lg);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.ll-tienda .cta-final-content {}
.ll-tienda .cta-final-content h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  text-align: center;
}
.ll-tienda .cta-final-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.ll-tienda .cta-final-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  min-width: 260px;
}
.ll-tienda .cta-final-btns .btn {
  width: 100%;
  justify-content: center;
}

/* =====================================================
   INFO CARDS GRID — 5 card (3 + 2)
   ===================================================== */
.ll-tienda .info-cards-section {
  background: var(--section-alt);
  padding: 64px 0;
}
.ll-tienda .info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Riga 2: card 4 e 5 centrate — occupano colonne 1-2 e 2-3 */
.ll-tienda .info-card:nth-child(4) { grid-column: 1 / 2; }
.ll-tienda .info-card:nth-child(5) { grid-column: 2 / 4; }

.ll-tienda .info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
}
.ll-tienda .info-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.ll-tienda .info-card-accent {
  border-color: var(--cta);
  border-width: 2px;
}
.ll-tienda .info-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cta);
  margin-bottom: 4px;
  flex-shrink: 0;
}
.ll-tienda .info-card-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cta);
}
.ll-tienda .info-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ll-tienda .info-card-text {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.ll-tienda .info-card-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.ll-tienda .info-card-gala {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 12.5px;
  color: var(--text-mid);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  text-decoration: none;
}
.ll-tienda .info-card-gala:hover {
  background: #f0e4ed;
  border-color: var(--cta);
  color: var(--text);
}
.ll-tienda .info-card-gala svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--cta);
}


/* =====================================================
   CLOSING COPY
   ===================================================== */
.ll-tienda .closing-section {
  background: var(--bg);
  padding: 72px 0;
  text-align: center;
}
.ll-tienda .closing-section h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ll-tienda .closing-section p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   DIVIDER
   ===================================================== */
.ll-tienda .divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* =====================================================
   SCHEMA JSON-LD (hidden)
   ===================================================== */

/* =====================================================
   RESPONSIVE — tablet (max 900px)
   ===================================================== */
@media (max-width: 900px) {
  /* Hero */
  .ll-tienda .hero .container { grid-template-columns: 1fr; }
  .ll-tienda .hero-img { display: none; }
  .ll-tienda .hero-content { padding: 40px 0 36px; }
  .ll-tienda .hero h1 { font-size: 28px; }

  /* Quick data: 2+3 */
  .ll-tienda .quick-data-inner { grid-template-columns: repeat(2, 1fr); }

  /* Features: 3 colonne */
  .ll-tienda .features-grid { grid-template-columns: repeat(3, 1fr); }

  /* Cards servizi: 2 colonne */
  .ll-tienda .cards-4 { grid-template-columns: repeat(2, 1fr); }

  /* Info cards: 2 colonne, reset nth-child */
  .ll-tienda .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .ll-tienda .info-card:nth-child(4),
  .ll-tienda .info-card:nth-child(5) { grid-column: auto; }

  /* Map */
  .ll-tienda .map-grid { grid-template-columns: 1fr; }
  .ll-tienda .map-embed { height: 260px; }

  /* Why */
  .ll-tienda .why-grid { grid-template-columns: repeat(3, 1fr); }

  /* FAQ */
  .ll-tienda .faq-grid { grid-template-columns: 1fr; }

  /* CTA finale */
  .ll-tienda .cta-final-inner { grid-template-columns: 1fr; text-align: center; }
  .ll-tienda .cta-final-img { display: none; }
  .ll-tienda .cta-final-btns { min-width: auto; width: 100%; }
  .ll-tienda .cta-final-btns .btn { justify-content: center; }
}

/* =====================================================
   RESPONSIVE — mobile (max 600px)
   ===================================================== */
@media (max-width: 600px) {
  /* Hero */
  .ll-tienda .hero-content { padding: 32px 0 28px; }
  .ll-tienda .hero h1 { font-size: 24px; }
  .ll-tienda .hero-ctas { flex-direction: column; }
  .ll-tienda .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Quick data: 1 colonna */
  .ll-tienda .quick-data-inner { grid-template-columns: 1fr; }

  /* Features: 2 colonne */
  .ll-tienda .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* Cards servizi: 1 colonna */
  .ll-tienda .cards-4 { grid-template-columns: 1fr; }

  /* Info cards: 1 colonna */
  .ll-tienda .info-cards-grid { grid-template-columns: 1fr; }
  .ll-tienda .info-card:nth-child(4),
  .ll-tienda .info-card:nth-child(5) { grid-column: auto; }

  /* Why: 2 colonne */
  .ll-tienda .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Map */
  .ll-tienda .map-embed { height: 220px; }
  .ll-tienda .map-ctas { flex-direction: column; }
  .ll-tienda .map-ctas .btn { width: 100%; justify-content: center; }

  /* Sezioni padding ridotto */
  .ll-tienda .section { padding: 48px 0; }
  .ll-tienda .why-section { padding: 48px 0; }
  .ll-tienda .faq-section { padding: 48px 0; }
  .ll-tienda .closing-section { padding: 48px 0; }
  .ll-tienda .cta-final { padding: 48px 0; }
  .ll-tienda .map-section { padding: 40px 0; }
  .ll-tienda .info-cards-section { padding: 40px 0; }
}