/*
Theme Name: SkinPicks
Description: Minimal custom landing-page theme for SkinPicks (beauty affiliate)
Version: 1.0
Author: Brandon Nguyen
*/

:root{
  --color-bg: #FFF8F5;
  --color-text: #2A2320;
  --color-accent: #C9922B;
  --color-accent-2: #B5406A;
  --color-footer-bg: #3B2A2E;
  --color-footer-text: #EDE0DC;
  --font-heading: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, sans-serif;
}

*{ box-sizing: border-box; }

body{
  margin:0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
}

h1,h2,h3{
  font-family: var(--font-heading);
  font-weight: 600;
  margin: 0 0 16px;
}

a{ color: var(--color-accent); text-decoration: none; }
a:hover{ color: var(--color-accent-2); }

/* Header */
.site-header{
  background:#FFFFFF;
  border-bottom:1px solid #F0DCD8;
  padding: 18px 40px;
  display:flex;
  align-items:center;
  gap:14px;
}
.site-header .logo img{
  height: 42px;
  width: auto;
  display:block;
}
.site-header .site-title{
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-accent);
}
.site-header .site-title a{ color: inherit; }

/* Main content */
.site-main{
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.page-title{
  font-size: 34px;
  margin-bottom: 24px;
}

.entry-content p{ margin-bottom: 18px; font-size: 16px; }
.entry-content h2{ font-size: 20px; color: var(--color-accent-2); margin-top: 40px; }
.entry-content ul{ padding-left: 20px; margin-bottom: 18px; }
.entry-content li{ margin-bottom: 8px; }

/* Product block */
.product-block{
  display:flex;
  gap: 32px;
  background:#fff;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}
.product-block img{
  width: 220px;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.product-block .product-info{ flex:1; min-width: 220px; }
.product-block h3{ font-size: 22px; margin-bottom: 10px; }
.product-block ul{ padding-left: 18px; margin-bottom: 20px; }
.product-block li{ margin-bottom: 6px; }
.btn-cta{
  display:inline-block;
  background: var(--color-accent-2);
  color:#fff !important;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
}
.btn-cta:hover{ background: var(--color-accent); }

/* Footer */
.site-footer{
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 50px 40px;
  font-size: 14px;
}
.footer-grid{
  display:flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-grid h3{
  color:#F2C9DD;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:14px;
  font-family: var(--font-body);
  font-weight:600;
}
.footer-grid a{
  color: var(--color-footer-text);
  display:block;
  margin-bottom:8px;
}
.footer-bottom{
  max-width:1000px;
  margin:40px auto 0;
  padding-top:20px;
  border-top:1px solid #55403F;
  font-size:13px;
  color:#C9B8B4;
}

@media (max-width: 640px){
  .site-header{ padding: 14px 20px; }
  .site-main{ padding: 40px 16px 60px; }
  .product-block{ flex-direction: column; }
}
