/* Plan Cheto - Nav y Footer compartidos (mismo que index) */
:root {
  --pc-dark: #1a2e28;
  --pc-dark-soft: #233730;
  --pc-accent: #c9b227;
  --pc-accent-hover: #e1d030;
  --pc-white: #fafafa;
  --pc-whatsapp: #25d366;
  --pc-whatsapp-dark: #128c7e;
  --pc-radius: 12px;
  --pc-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.pc-header {
  background: var(--pc-dark-soft);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: var(--pc-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.pc-header a {
  text-decoration: none;
  color: inherit;
}
.pc-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-logo-wrap img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.pc-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--pc-accent);
}
.pc-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--pc-white);
  transition: background 0.2s, transform 0.2s;
}
.pc-header-actions a:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
  color: var(--pc-white);
}
.pc-header-actions a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}
.pc-wa-btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pc-whatsapp);
  color: #fff !important;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.pc-wa-btn-header:hover {
  background: var(--pc-whatsapp-dark);
  color: #fff !important;
}
.pc-wa-btn-header svg {
  width: 24px;
  height: 24px;
  fill: #fff !important;
  flex-shrink: 0;
}
.pc-cart-btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--pc-white);
}
.pc-cart-btn-header:hover {
  background: rgba(255,255,255,0.2);
  color: var(--pc-white);
}
.pc-cart-btn-header svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.pc-footer {
  background: var(--pc-dark-soft);
  color: rgba(255,255,255,0.8);
  padding: 32px 24px 24px;
  margin-top: 48px;
}
.pc-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.pc-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.pc-footer-links a {
  color: var(--pc-accent);
  text-decoration: none;
  font-weight: 500;
}
.pc-footer-links a:hover {
  color: var(--pc-accent-hover);
  text-decoration: underline;
}
.pc-footer-copy {
  font-size: 0.875rem;
  opacity: 0.85;
}
.pc-footer-payment {
  margin-top: 16px;
}
.pc-footer-payment img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}

.pc-back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pc-dark-soft);
  color: var(--pc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pc-shadow);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s;
}
.pc-back-to-top:hover {
  transform: scale(1.08);
  color: var(--pc-accent);
}
.pc-back-to-top svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
