
/* --- BOTIGA (icona deshabilitada) --- */
.shop-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  padding: .4rem .6rem;
  border-radius: .6rem;
  transition: opacity .2s, filter .2s;
  margin-top: 2rem; /* ➕ baixa una mica el botó */
}


.shop-link svg {
  width: 22px;
  height: 22px;
}

.shop-link.disabled {
  pointer-events: auto;
  cursor: not-allowed;
  opacity: .55;
  filter: grayscale(100%);
  position: relative; /* afegit per al tooltip */
}

.shop-link.disabled:hover {
  opacity: .7;
}

.shop-link .shop-text {
  font-weight: 600;
}

/* --- BOTIGA ACTIVA (CTA principal) --- */
.shop-link.shop-cta {
background: linear-gradient(135deg, #e9d48f, #c6a54a);
  color: #1f2f55;
  font-weight: 700;
  padding: .55rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(184,147,47,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.shop-link.shop-cta svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.shop-link.shop-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(184,147,47,.45);
}


/* Tooltip simple */
.shop-link.disabled::after {
  content: "Aviat";
  position: absolute;
  bottom: -2.1rem;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: .75rem;
  padding: .25rem .45rem;
  border-radius: .35rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.shop-link.disabled:hover::after {
  opacity: 1;
}


/*inside shop*/
/* ========================= */
/* 🎨 ESTILS EXCLUSIUS BOTIGA */
/* ========================= */

/* === SECCIÓ 1: RESET + VARIABLES GLOVALS === */


body.botiga-page {
  background: radial-gradient(circle at top, #fffef9, #fffaf2 70%);
  font-family: "Inter", system-ui, sans-serif;
  color: #222;
}


/* Header de la botiga */
.botiga-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 2px solid #f2e2a2;
  background: #fffdf8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.botiga-page .brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: #1a237e;
  text-decoration: none;
}

.botiga-page .brand img {
  width: 32px;
  height: 32px;
}

.botiga-page .pill {
  background: #fff7d1;
  border: 1px solid #e2c044aa;
  border-radius: 999px;
  padding: .4em 1em;
  font-size: .9rem;
  font-weight: 600;
  color: #775c00;
}

/* Hero */
.botiga-page .hero {
  text-align: center;
  padding: 4rem 1rem;
background: linear-gradient(
  180deg,
  rgba(26,35,126,0.03) 0%,
  #fffdf8 100%
);

  
}

.botiga-page .hero h1 {
  font-family: "Playfair Display", serif;
  color: #2b4c7e;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.8rem);
  margin-bottom: .8rem;
}

.botiga-page .hero .lead {
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
}

.botiga-page .hero .soon {
  font-weight: 600;
  color: #b8932f;
  margin-bottom: 1.5rem;
}

/* ========================================= */
/* === SECCIÓ 3: COMPONENTS PRINCIPALS === */
/* ========================================= */

/* Botons */
.botiga-page .btn {
  display: inline-block;
  border-radius: 999px;
  padding: .7em 1.4em;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.botiga-page .btn.gold {
  background: linear-gradient(90deg,#e2c044,#f6d767);
  color: #222;
  box-shadow: 0 4px 10px rgba(226,192,68,0.25);
}

.botiga-page .btn.gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.botiga-page .btn.ghost {
  border: 2px solid #e2c044;
  color: #444;
  background: #fffaf2;
}

.botiga-page .btn.ghost:hover {
  background: #fff5c8;
  color: #222;
}

/* Grid de productes (skeletons) */
.botiga-page .grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin: 2rem auto;
  max-width: 1100px;
  padding: 0 1rem;
}

.botiga-page .card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.botiga-page .card:hover {
  transform: translateY(-3px);
}

.botiga-page .ph {
  background: #f9f9f9;
  aspect-ratio: 1/1;
}

/* === SECCIÓ 1: RESET + VARIABLES GLOVALS === */


.botiga-page .body {
  padding: 1rem;
}

.botiga-page .skeleton {
  height: 12px;
  background: linear-gradient(90deg,#f1f1f1,#f7f7f7,#f1f1f1);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.5s infinite;
}

.botiga-page .skeleton.w60 { width: 60%; margin-top: .4rem; }
.botiga-page .skeleton.w40 { width: 40%; margin-top: .4rem; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Footer */
.botiga-page footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #f2e2a2;
  background: #fffdf8;
}

/* ========================================= */
/* 👜 PRODUCTE DESTACAT · TOTE BAG 1000 */
/* ========================================= */

.botiga-page .featured-product {
  display: flex;
  justify-content: center;
  margin: 4rem 0 5rem;
  padding: 0 1rem;
}

.botiga-page .fp-card {
  max-width: 1000px;
  width: 100%;
  background: #fffdf8;
  border: 2px solid #f2e2a2;
  border-radius: 20px;
  padding: 2.2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Imatge producte */
.botiga-page .fp-image {
  display: flex;
  align-items: flex-start;  /* ✅ puja la imatge */
  justify-content: center;
}

.botiga-page .fp-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: linear-gradient(135deg,#fff7d1,#f6e6a8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #7a5a00;
  text-align: center;
  font-size: 1.1rem;
}

.botiga-page .fp-img-placeholder small {
  font-weight: 600;
  opacity: 0.8;
}

/* Imatge del producte */
.fp-img-main{
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: transparent;
  object-fit: contain;
  margin-top: -1px;
  margin: 0 auto;          /* centra horitzontalment */
  max-height: 360px;

}

/* Botó “Veure en context” */
.fp-img-alt{
  margin-top: .75rem;
  background: transparent;
  border: none;
  color: var(--bd-blue);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.fp-img-alt:hover{
  opacity: .75;
}

/* Hover suau imatge producte */
.fp-img-main{
  transition: transform .25s ease, box-shadow .25s ease;
}

.fp-image:hover .fp-img-main{
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}


/* Contingut */
.botiga-page .fp-content .badge {
  display: inline-block;
  background: linear-gradient(90deg,#e2c044,#f6d767);
  color: #222;
  padding: .35em .8em;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.botiga-page .fp-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #2b4c7e;
  margin-bottom: .8rem;
}

.botiga-page .fp-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.4rem;
}

/* Característiques */
.botiga-page .fp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
}

.botiga-page .fp-features li {
  margin-bottom: .45rem;
  font-weight: 500;
}

/* Preu */
.botiga-page .fp-buy {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: 1.6rem;
}

.botiga-page .fp-buy .price {
  font-size: 2rem;
  font-weight: 800;
  color: #1a237e;
}

.botiga-page .fp-buy .vat {
  font-size: .8rem;
  color: #777;
}

/* CTA */
.botiga-page .fp-cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}

.launch-timer{
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .75rem;
}

.launch-timer #countdown{
  font-weight: 600;
  color: var(--text);
}

.launch-timer .timer-note{
  opacity: .8;
}

/* ========================= */
/* ✨ POLIT FINAL BOTIGA */
/* ========================= */

/* Header: una mica més lleuger */
.botiga-page header{
  padding: 1.2rem 1.6rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}

/* Pill més elegant */
.botiga-page .pill{
  background: #fff4c2;
  border-color: #e2c044;
  font-size: .85rem;
}

/* Hero: més focus al CTA */
.botiga-page .hero{
  padding: 3.2rem 1rem 3.6rem;
}

.botiga-page .hero .cta{
  margin-top: 1.6rem;
}

/* CTA principal: més presència */
.botiga-page .btn.gold{
  font-size: 1.05rem;
  padding: .85em 1.8em;
  letter-spacing: .2px;
}

.botiga-page .btn.gold:hover{
  box-shadow: 0 8px 18px rgba(226,192,68,.35);
}

/* Nota d’enviament: secundària però clara */
.shipping-note{
  font-size: .85rem;
  color: #666;
  margin-top: .6rem;
}

/* Card del producte: menys “pes” */
.botiga-page .fp-card{
  padding: 2rem;
  gap: 2.2rem;
}

/* Placeholder imatge: més “producte” */
.botiga-page .fp-img-placeholder{
  font-size: 1rem;
  letter-spacing: .3px;
}

/* Badge + countdown: alineació fina */
.badge-row{
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
}

.botiga-page .fp-content .badge{
  font-size: .7rem;
  padding: .35em .75em;
}

/* Countdown discret però llegible */
.countdown{
  font-size: .8rem;
  align-items: center;          /* 🔑 clau */
  line-height: 1;               /* 🔑 evita salts */
  white-space: nowrap;
  gap: .35rem;
  font-size: .8rem;
  color: #666;
}

.countdown span{
  font-weight: 600;
  color: #222;
}

.countdown small{
  margin-left: .25rem;
  opacity: .75;
}

.countdown{
  font-variant-numeric: tabular-nums;
}


/* Títol producte: una mica menys agressiu */
.botiga-page .fp-content h2{
  font-size: 1.9rem;
  line-height: 1.2;
}

/* Descripció: millor llegibilitat */
.botiga-page .fp-desc{
  font-size: 1rem;
  color: #555;
}

/* Preu: jerarquia molt clara */
.botiga-page .fp-buy{
  margin-bottom: 1.4rem;
}

.botiga-page .fp-buy .price{
  font-size: 2.1rem;
}

.botiga-page .fp-buy .vat{
  margin-left: .3rem;
}

/* CTA producte: espai i aire */
.botiga-page .fp-cta{
  margin-top: .6rem;
}

.fp-buy .discount{
  display: none;
}

/* Forçar ratllat del preu antic */
.fp-buy .price-old{
  text-decoration: line-through;
  text-decoration-color: #666;
  color: #777;
}




/* ========================= */
/* 🎨 COLORS MARCA BORSADOCENT */
/* ========================= */

:root{
  --bd-blue: #1a237e;
  --bd-blue-soft: #2b4c7e;
  --bd-gold: #e2c044;
  --bd-gold-soft: #f6d767;
}

/* Força blau corporatiu coherent */
.botiga-page .brand,
.botiga-page .brand strong,
.botiga-page header,
.botiga-page footer,
.botiga-page .fp-buy .price{
  color: var(--bd-blue);
}

/* Hero i títols */
.botiga-page .hero h1,
.botiga-page .fp-content h2{
  color: var(--bd-blue);
}

/* HERO més compacte perquè el producte entri en primer cop d’ull */
.botiga-page .hero{
  padding: 2.5rem 1rem 2rem;
}



/*Darkmode*/

/* ========================================================= */
/* 🌙 DARK MODE — BOTIGA                                     */
/* ========================================================= */

[data-theme="dark"] body.botiga-page{
  background: radial-gradient(circle at top, #0f172a, #020617 70%);
  color: #e5e7eb;
}

/* ================= HEADER ================= */

[data-theme="dark"] .botiga-page header{
  background: #0b1220;
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: none;
}

[data-theme="dark"] .botiga-page .brand{
  color: #e5e7eb;
}

[data-theme="dark"] .botiga-page .pill{
  background: rgba(226,192,68,.12);
  border-color: rgba(226,192,68,.35);
  color: #f6d767;
}

/* ================= HERO ================= */

[data-theme="dark"] .botiga-page .hero{
  background: linear-gradient(
    180deg,
    rgba(59,130,246,.05) 0%,
    #020617 100%
  );
}

[data-theme="dark"] .botiga-page .hero h1{
  color: #f1f5f9;
}

[data-theme="dark"] .botiga-page .hero .lead{
  color: #cbd5e1;
}

[data-theme="dark"] .botiga-page .hero .soon{
  color: #f6d767;
}

/* ================= BOTONS ================= */

[data-theme="dark"] .botiga-page .btn.gold{
  background: linear-gradient(135deg,#d4af37,#b8932f);
  color: #0f172a;
  box-shadow: 0 6px 20px rgba(0,0,0,.5);
}

[data-theme="dark"] .botiga-page .btn.ghost{
  background: transparent;
  border-color: #334155;
  color: #cbd5e1;
}

[data-theme="dark"] .botiga-page .btn.ghost:hover{
  background: rgba(255,255,255,.05);
}

/* ================= CARDS ================= */

[data-theme="dark"] .botiga-page .card{
  background: #0f172a;
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 12px 30px rgba(0,0,0,.6);
}

[data-theme="dark"] .botiga-page .ph{
  background: #111827;
}

/* ================= FEATURED PRODUCT ================= */

[data-theme="dark"] .botiga-page .fp-card{
  background: #0b1220;
  border-color: rgba(226,192,68,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
}

[data-theme="dark"] .botiga-page .fp-img-placeholder{
  background: linear-gradient(135deg,#1e293b,#0f172a);
  color: #f6d767;
}

[data-theme="dark"] .botiga-page .fp-content h2{
  color: #f1f5f9;
}

[data-theme="dark"] .botiga-page .fp-desc{
  color: #cbd5e1;
}

[data-theme="dark"] .botiga-page .fp-features li{
  color: #e5e7eb;
}

/* ================= PREU ================= */

[data-theme="dark"] .botiga-page .fp-buy .price{
  color: #f6d767;
}

[data-theme="dark"] .botiga-page .fp-buy .vat{
  color: #94a3b8;
}

[data-theme="dark"] .fp-buy .price-old{
  color: #64748b;
  text-decoration-color: #64748b;
}

/* ================= COUNTDOWN ================= */

[data-theme="dark"] .countdown{
  color: #94a3b8;
}

[data-theme="dark"] .countdown span{
  color: #f1f5f9;
}

/* ================= FOOTER ================= */

[data-theme="dark"] .botiga-page footer{
  background: #020617;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #94a3b8;
}

/* ================= SHOP CTA (sidebar) ================= */

[data-theme="dark"] .shop-link.shop-cta{
  background: linear-gradient(135deg,#d4af37,#b8932f);
  color: #0f172a;
}

[data-theme="dark"] .shop-link.disabled::after{
  background: #111827;
  color: #e5e7eb;
}


/* Responsive: CTA sempre clar */
@media (max-width: 768px){
  .botiga-page .hero h1{
    font-size: 2rem;
  }

  .botiga-page .btn.gold{
    width: 100%;
    text-align: center;
  }

  .botiga-page .fp-cta .btn{
    flex: 1 1 100%;
  }
}




/* Responsive */
@media (max-width: 768px) {
  .botiga-page .fp-card {
    grid-template-columns: 1fr;
    padding: 1.6rem;
  }

  .botiga-page .fp-content h2 {
    font-size: 1.7rem;
  }
}
