/* =============================================
   TIFFANY CHARTER - BANNER COOKIE
   ============================================= */

#tc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: #ffffff;
  border-top: 3px solid #D4AF37;
  box-shadow: 0 -4px 30px rgba(0, 31, 63, 0.15);
  padding: 20px 0;
  display: none; /* mostrato via JS */
}

#tc-cookie-banner.visible {
  display: block;
  animation: tcSlideUp 0.4s ease;
}

@keyframes tcSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.tc-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.tc-cookie-text {
  flex: 1;
  min-width: 260px;
}

.tc-cookie-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #001F3F;
  margin-bottom: 6px;
}

.tc-cookie-text p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 6px;
}

.tc-cookie-more {
  font-size: 0.82rem;
  color: #001F3F;
  text-decoration: underline;
}

.tc-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.tc-btn-primary {
  background: #001F3F;
  color: #D4AF37;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.tc-btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(0,31,63,0.25);
}

.tc-btn-secondary {
  background: transparent;
  color: #001F3F;
  border: 2px solid #001F3F;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.tc-btn-secondary:hover {
  background: #001F3F;
  color: #ffffff;
}

@media (max-width: 600px) {
  .tc-cookie-inner { padding: 0 20px; gap: 16px; }
  .tc-cookie-actions { width: 100%; }
  .tc-btn-primary, .tc-btn-secondary { flex: 1; text-align: center; }
}

/* =============================================
   STILE PAGINE LEGALI
   ============================================= */
.entry-content h2,
.page-content h2 {
  font-family: 'Playfair Display', serif;
  color: #001F3F;
  font-size: 1.4rem;
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D4AF37;
}

.entry-content h3,
.page-content h3 {
  color: #001F3F;
  font-size: 1.1rem;
  margin: 20px 0 8px;
}

.entry-content ul,
.page-content ul {
  padding-left: 20px;
  margin: 12px 0;
}

.entry-content ul li,
.page-content ul li {
  margin-bottom: 6px;
  color: #444;
  line-height: 1.6;
}
