/* 
  Custom styling for native Shopify Policy pages 
  to match the SPOCL premium aesthetics.
*/

.shopify-policy__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  color: var(--color-foreground, #000);
  font-family: inherit;
  line-height: 1.8;
}

.shopify-policy__title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: var(--color-primary, #0066FF); /* SPOCL Blue */
}

.shopify-policy__title h1 {
  font-size: inherit;
  margin: 0;
  line-height: 1.1;
  text-transform: none;
}

.shopify-policy__body {
  font-size: 1.05rem;
  color: #333333 !important; /* Soft black for readability */
}

.shopify-policy__body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #111;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

.shopify-policy__body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #222;
}

.shopify-policy__body p {
  margin-bottom: 1.5rem;
  color: #333333 !important;
}

.shopify-policy__body ul, 
.shopify-policy__body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: #333333 !important;
}

.shopify-policy__body li {
  margin-bottom: 0.5rem;
}

.shopify-policy__body a {
  color: #0066FF;
  text-decoration: underline;
  text-decoration-color: rgba(0, 102, 255, 0.3);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
}

.shopify-policy__body a:hover {
  text-decoration-color: #0066FF;
}

.shopify-policy__body strong, 
.shopify-policy__body b {
  font-weight: 600;
  color: #111;
}

.shopify-policy__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.shopify-policy__body th, 
.shopify-policy__body td {
  border: 1px solid #e5e7eb;
  padding: 1rem;
  text-align: left;
}

.shopify-policy__body th {
  background-color: #f9fafb;
  font-weight: 600;
  color: #111;
}

