/* Announcement Bar */
.announcement-bar {
  background-color: var(--color-darker-bg);
  color: var(--color-gold);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Header */
.header {
  background-color: var(--color-cream-bg);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--spacing-xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.hero-badge-top {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d1b89d;
  border: 1px solid rgba(200, 138, 75, 0.4);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
  background: rgba(40, 25, 15, 0.8);
}

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.text-gold-italic {
  color: var(--color-gold);
  font-style: italic;
  font-family: var(--font-serif);
}

.hero-content .subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 90%;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(200, 138, 75, 0.4);
}

.stat-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.15);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* Image Grid (Crafter Showcase) */
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.craft-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.craft-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.craft-card:hover img {
  transform: scale(1.05);
}

.craft-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(26, 15, 13, 0.8);
  color: var(--color-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

/* Offer Box */
.offer-box {
  background-color: white;
  border: 1px solid rgba(200, 138, 75, 0.4);
  border-radius: 12px;
  padding: var(--spacing-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  margin-bottom: var(--spacing-xl);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.offer-image img {
  border-radius: 8px;
  width: 100%;
}

.offer-details .offer-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-dark);
}

.offer-list-styled {
  list-style: none;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #444;
}

.offer-list-styled li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.5;
}

.offer-list-styled li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-color: #d18a45;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-block {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c87629;
  margin-right: 0.75rem;
}

.price-original {
  text-decoration: line-through;
  color: #888;
  font-size: 1.25rem;
}

.btn-full-width {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.2rem;
  background-color: #c87629;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 14px rgba(200, 118, 41, 0.4);
  margin-bottom: 1.5rem;
  transition: transform 0.2s, background-color 0.2s;
}

.btn-full-width:hover {
  background-color: #b56722;
  transform: translateY(-2px);
}

.trust-badges {
  text-align: center;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.pay-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.6rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: white;
  color: #333;
}

.pay-badge.amex { color: #002663; }
.pay-badge.paypal { color: #003087; font-style: italic; }
.pay-badge.shop { background: #5a31f4; color: white; border: none; }
.pay-badge.visa { color: #1434CB; }
.pay-badge.mastercard { color: #EB001B; }

.secure-checkout {
  font-size: 0.8rem;
  color: #444;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badges img {
  height: 24px;
}

/* Feature Blocks */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}

.feature-block:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.feature-block:nth-child(even) .feature-image {
  order: 2;
}

.feature-block:nth-child(even) .feature-text {
  order: 1;
}

.feature-image img {
  border-radius: 12px;
  border: 1px solid rgba(200, 138, 75, 0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.icon-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--color-border);
}

.icon-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.icon-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.icon-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* Bonus Cards */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bonus-card {
  background: var(--color-darker-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bonus-content {
  padding: 1.5rem;
}

.bonus-label {
  color: var(--color-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.bonus-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: white;
}

.bonus-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: white;
  padding: 1.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
}

.faq-question::after {
  content: '+';
  color: var(--color-gold);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 4rem; }
}

@media (max-width: 992px) {
  .hero-content h1 { font-size: 3.5rem; }
  .offer-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; }
  .feature-block:nth-child(even) .feature-image,
  .feature-block:nth-child(even) .feature-text {
    order: unset;
  }
}

@media (max-width: 768px) {
  .hero { padding: var(--spacing-md) 0 var(--spacing-lg) 0; }
  .hero-grid { 
    display: flex; 
    flex-direction: column; 
    gap: var(--spacing-md); 
  }
  .hero-image {
    order: 1;
    margin-bottom: 0.5rem;
  }
  .hero-content { 
    order: 2;
    text-align: center; 
  }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content .subtitle { max-width: 100%; margin-bottom: 2rem; margin-left: auto; margin-right: auto; }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .stat-divider { display: none; }
  
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .icon-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .craft-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.3rem; }
}

/* Reviews Section */
.reviews-carousel {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2rem;
  scroll-behavior: smooth;
}
.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  width: max-content;
}

.review-card {
  flex: 0 0 320px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.review-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.review-content {
  padding: 1.5rem;
  flex: 1;
}

.review-content h4 {
  margin: 0 0 0.25rem 0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}

.review-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  letter-spacing: 2px;
}

.verified-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.verified-badge .check-icon {
  background: #3B82F6;
  color: white;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.review-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 280px;
  }
}
