:root {
  /* Colors - Derived from UNSTICK brand */
  --unstick-dark: #122b30;
  --unstick-blue: #0056b3;
  --unstick-accent: #7a31f3; /* Shop Pay/Secondary accent */
  --unstick-red: #d32f2f; /* Sale/Urgency */
  --unstick-gold: #ffb400; /* Stars/Awards */
  --unstick-bg: #ffffff;
  --unstick-text: #333333;
  --unstick-muted: #666666;
  --unstick-border: #eeeeee;

  /* Spacing */
  --wf-space-xs: 8px;
  --wf-space-sm: 16px;
  --wf-space-md: 24px;
  --wf-space-lg: 32px;
  --wf-space-xl: 64px;
  --wf-space-2xl: 80px;

  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--unstick-bg);
  color: var(--unstick-text);
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--wf-space-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 4rem);
}

/* Announcements */
.announcement-bar {
  background-color: #f7a62b; /* Orange-ish as seen in original top */
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Header */
.header {
  background: var(--unstick-dark);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
}

/* Sections */
section {
  margin-top: var(--wf-space-xl);
  padding: var(--wf-space-lg) 0;
}

main > :first-child {
  margin-top: 0;
}

/* Hero */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background-color: #f8f8f8;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-subtitle {
  color: #2d5a27;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-title {
  text-align: left;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: #8c4234;
  margin-bottom: 2rem;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  z-index: 1;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #8c4234;
  color: white;
}

.btn-dark {
  background: var(--unstick-dark);
  color: white;
  width: 100%;
}

.btn-shop-pay {
  background: var(--unstick-accent);
  color: white;
}

/* Logos Grid */
.as-seen-on {
  text-align: center;
  border-bottom: 1px solid var(--unstick-border);
}

.logo-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
  filter: grayscale(1);
  opacity: 0.7;
}

.logo-strip-item {
  height: 40px;
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Collections / Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--wf-space-md);
}

.product-card {
  border: 1px solid transparent;
  padding: 1rem;
  transition: all 0.3s;
  position: relative;
}

.product-card:hover {
  border-color: var(--unstick-border);
}

.product-image-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--unstick-red);
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: bold;
}

.product-info {
  text-align: left;
}

.product-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-align: left;
}

.product-stars {
  color: var(--unstick-gold);
  margin-bottom: 0.5rem;
}

.product-price {
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-price .old {
  text-decoration: line-through;
  color: var(--unstick-muted);
  font-weight: 400;
  margin-right: 8px;
}

/* Banner Section */
.banner-full {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.banner-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-btn {
  background: white;
  color: black;
  padding: 12px 40px;
  border-radius: 5px;
  margin-top: 1rem;
}

/* Double Up Section */
.double-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wf-space-xl);
  align-items: start;
}

.gallery-main {
  position: relative;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.product-detail-info {
  text-align: left;
}

.product-detail-info h2 {
  text-align: left;
  font-size: 2rem;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  width: fit-content;
  margin: 1rem 0;
}

.qty-selector button {
  padding: 10px 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.qty-selector input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wf-space-md);
}

.testimonial-card {
  background: #fdfdfd;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-info {
  padding: 1.5rem;
  text-align: center;
}

/* Video Section */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
}

/* Keep in Touch */
.newsletter-section {
  background-color: #0f2328;
  color: white;
  padding: 60px 0;
  border-radius: 12px;
  margin-bottom: var(--wf-space-xl);
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-grow: 1;
  max-width: 600px;
}

.newsletter-input {
  flex-grow: 1;
  padding: 15px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter-btn {
  background: var(--unstick-dark);
  border: 1px solid white;
  color: white;
  padding: 0 30px;
  border-radius: 0 4px 4px 0;
  text-transform: uppercase;
  font-weight: bold;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--unstick-border);
  border-bottom: 1px solid var(--unstick-border);
  margin-top: var(--wf-space-xl);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-right: 1px solid var(--unstick-border);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item:last-child {
  border-right: none;
}

/* Footer */
.footer {
  background: var(--unstick-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 40px;
}

.footer-col h4 {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.copyright {
  border-top: 1px solid #1a3c42;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #888;
}

/* Placeholders */
.placeholder-image {
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.8rem;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}

.placeholder-image.portrait { aspect-ratio: 3/4; }
.placeholder-image.square { aspect-ratio: 1/1; }

.placeholder-avatar {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #ddd;
}

.placeholder-icon {
  width: 24px;
  height: 24px;
  background-color: currentColor;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero-image-bg { width: 100%; opacity: 0.3; }
  .product-grid, .testimonials-grid, .video-grid, .footer-grid, .trust-badges {
    grid-template-columns: 1fr;
  }
  .double-up { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
