:root {
  --primary-color: #1a1a1a;
  --secondary-text: #6b6b6b;
  --bg-light: #fefefe;
  --bg-section: #fbf9fa;
  --accent-blush: #d0b0b0;
  --border-color: #eaeaea;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--primary-color);
  background-color: var(--bg-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.shop-all-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-text);
  border-bottom: 1px solid var(--secondary-text);
  padding-bottom: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: #333;
}

.btn-white {
  background-color: #fff;
  color: var(--primary-color);
}

.btn-white:hover {
  background-color: #f1f1f1;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-small {
  padding: 0.6rem 1.2rem;
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  position: absolute;
  top: 35px; /* height of announcement bar */
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-left ul {
  display: flex;
  gap: 2rem;
}

.nav-left a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.nav-left a:hover {
  color: #fff;
}

.nav-center.logo a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
  font-style: italic;
  font-weight: 500;
}

.nav-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-right .icon-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.nav-right .icon-link:hover {
  color: #fff;
}

.nav-right .bag {
  position: relative;
}

.nav-right .bag .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--accent-blush);
  color: #fff;
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden; /* Important for bg video */
}

/* Cloudflare Stream Video Background */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 intrinsic aspect ratio */
  min-height: 100vh;
  min-width: 177.77vh; /* (16/9)*100 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Subtle overlay to ensure text readability */
.hero::before, .hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-subtitle {
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Products Section */
.products-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-card {
  position: relative;
  transition: var(--transition);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--bg-section);
}

.product-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

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

.badges {
  position: absolute;
  top: 10px;
  right: 10px;
}

.badge {
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.65rem;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid var(--border-color);
}

.badge.new {
  background-color: var(--bg-light);
}

.badge.sale {
  color: #d9534f;
}

.wishlist-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--secondary-text);
  cursor: pointer;
  transition: color 0.2s;
}

.wishlist-btn:hover {
  color: var(--accent-blush);
}

.quick-add {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  transition: bottom 0.3s ease;
  opacity: 0;
}

.quick-add .btn {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  border-color: var(--border-color);
}

.product-card:hover .quick-add {
  bottom: 20px;
  opacity: 1;
}

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

.product-vendor {
  font-size: 0.7rem;
  color: var(--secondary-text);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.product-name a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-color);
}

.product-rating {
  color: var(--accent-blush);
  font-size: 0.75rem;
  margin: 0.3rem 0;
}

.product-price {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.price-old {
  text-decoration: line-through;
  color: var(--secondary-text);
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.price-sale {
  color: #d9534f;
}

.product-colors {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.color-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

/* Promo Split */
.promo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.promo-card {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-content {
  text-align: center;
  z-index: 2;
}

.promo-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}

/* Featured Banner */
.featured-banner {
  height: 600px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* parallax effect */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10%;
}

.banner-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 4rem;
  max-width: 500px;
  text-align: center;
}

.banner-content .hero-title, .banner-content .hero-subtitle, .banner-content .hero-desc {
  color: var(--primary-color);
}

.banner-content .hero-title {
  font-size: 2.8rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 2rem;
  background-color: var(--bg-section);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: 2rem;
}

.testimonial-card .stars {
  color: var(--accent-blush);
  margin-bottom: 1.5rem;
}

.testimonial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

.testimonial-card .author {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.dots .dot {
  width: 6px;
  height: 6px;
  background-color: var(--secondary-text);
  border-radius: 50%;
  opacity: 0.3;
}

.dots .dot.active {
  opacity: 1;
  background-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.blog-card {
  position: relative;
}

.blog-img {
  height: 450px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
}

.blog-info {
  background: #fff;
  padding: 2rem;
  position: relative;
  /* Overlapping design like in the screenshot */
  margin-top: -80px;
  margin-left: 20px;
  margin-right: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

.blog-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.blog-info .date {
  font-size: 0.75rem;
  color: var(--secondary-text);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.blog-info .excerpt {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.read-more {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 2px;
}

/* Instagram Section */
.instagram-section {
  padding: 3rem 0 0 0;
}

.ig-grid {
  display: flex;
}

.ig-item {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.ig-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.ig-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--bg-section);
  padding: 4rem 2rem 1rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
}

.newsletter h4, .link-column h4 {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.newsletter p {
  color: var(--secondary-text);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  margin-bottom: 2rem;
}

.newsletter-form input {
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-right: none;
  flex: 1;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--secondary-text);
}

.social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-light);
  margin-right: 10px;
  color: var(--primary-color);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.link-column p {
  color: var(--secondary-text);
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.link-column ul li {
  margin-bottom: 0.8rem;
}

.link-column ul a {
  color: var(--secondary-text);
  font-size: 0.85rem;
}

.link-column ul a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  max-width: 1400px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--secondary-text);
}

.payment-icons i {
  font-size: 1.5rem;
  color: var(--secondary-text);
  margin-left: 10px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-left ul {
    display: none; /* Hide links on mobile for now */
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .promo-split {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .banner-content {
    padding: 2rem;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .ig-grid {
    flex-wrap: wrap;
  }
  .ig-item {
    flex: 0 0 33.333%;
  }
}

/* =========================================
   PDP STYLES
   ========================================= */

/* Solid Navbar override */
.navbar.solid {
  position: relative;
  top: 0;
  background-color: var(--primary-color);
  padding: 1rem 0;
}

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--bg-section);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--secondary-text);
}
.breadcrumbs .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.breadcrumbs .current {
  color: var(--primary-color);
}

/* Main PDP Grid */
.pdp-main {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Gallery */
.main-image-container img {
  width: 100%;
  height: auto;
  display: block;
}
.thumbnail-gallery {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.thumb {
  width: calc(25% - 0.75rem);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
}
.thumb:hover, .thumb.active {
  opacity: 1;
}
.thumb.active {
  outline: 1px solid var(--primary-color);
  outline-offset: -1px;
}

/* PDP Details */
.pdp-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
.pdp-urgency {
  color: #d9534f;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.pdp-short-desc {
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.pdp-meta {
  font-size: 0.8rem;
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
.pdp-meta span {
  color: var(--primary-color);
  font-weight: 500;
}
.pdp-price {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Stock Urgency Bar */
.pdp-stock-urgency {
  margin-bottom: 2rem;
}
.hurry-text {
  color: #d9534f;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.progress-bar {
  width: 100%;
  height: 6px;
  background-color: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background-color: #d9534f;
}

/* Variants */
.pdp-variants {
  margin-bottom: 2rem;
}
.variant-group {
  margin-bottom: 1.5rem;
}
.variant-label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.variant-label .selected-val {
  font-weight: 400;
  color: var(--secondary-text);
}
.swatches {
  display: flex;
  gap: 0.8rem;
}
.swatch.color {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 0 2px transparent;
  transition: all 0.2s;
}
.swatch.color.active {
  box-shadow: 0 0 0 1px var(--primary-color);
}
.swatch.size {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.swatch.size.active {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: #fff;
}

/* Actions Group */
.pdp-actions {
  margin-bottom: 2rem;
}
.quantity-selector {
  display: inline-flex;
  border: 1px solid var(--border-color);
  height: 45px;
  margin-bottom: 1rem;
}
.quantity-selector button {
  background: transparent;
  border: none;
  width: 40px;
  cursor: pointer;
  font-size: 1.2rem;
}
.quantity-selector input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  font-family: var(--font-body);
}
.subtotal-display {
  display: inline-block;
  margin-left: 1rem;
  font-weight: 500;
}
.action-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
.action-links a {
  color: var(--secondary-text);
}
.action-links a:hover {
  color: var(--primary-color);
}

/* Buttons inside actions */
.button-row {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}
.btn-full {
  flex: 1;
  width: 100%;
}
.icon-btn {
  width: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.terms-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
.terms-row a {
  text-decoration: underline;
}

/* Trust Signals */
.pdp-trust {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}
.pdp-trust > p {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.trust-item i {
  font-size: 1.2rem;
  margin-top: 3px;
  color: var(--secondary-text);
}
.trust-item strong {
  font-weight: 500;
  font-size: 0.85rem;
  display: block;
  text-transform: uppercase;
}
.trust-item p {
  font-size: 0.8rem;
  color: var(--secondary-text);
  margin-top: 0.2rem;
}

/* Product Tabs Section */
.pdp-tabs {
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 0 2rem;
}
.tab-headers {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 2rem;
}
.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 0 1rem 0;
  cursor: pointer;
  position: relative;
  color: var(--secondary-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tab-btn.active {
  color: var(--primary-color);
}
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.tab-content {
  display: none;
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.8;
  animation: fadeIn 0.5s ease;
}
.tab-content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-content h4 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
  font-size: 1rem;
}
.tab-content ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
}
.tab-banner {
  margin-top: 2rem;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
}
.tab-banner .banner-text {
  color: #fff;
}
.tab-banner h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}
.specs-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}
.specs-table tr:nth-child(odd) {
  background-color: var(--bg-section);
}
.specs-table td:first-child {
  font-weight: 500;
  color: var(--primary-color);
  width: 30%;
}

/* Sticky Bottom Cart Bar */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid var(--border-color);
  padding: 10px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}
.sticky-cart-bar.visible {
  transform: translateY(0);
}
.sticky-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.sticky-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sticky-left img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.sticky-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}
.sticky-price {
  font-size: 0.9rem;
  color: #d9534f;
}
.sticky-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.sticky-select {
  padding: 10px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  background: transparent;
  outline: none;
}
.quantity-selector.small {
  height: 40px;
  margin-bottom: 0;
}
.quantity-selector.small button {
  width: 30px;
}

/* Responsive PDP */
@media (max-width: 992px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sticky-left {
    display: none;
  }
  .sticky-right {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .tab-headers {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .tab-btn {
    font-size: 0.85rem;
  }
  .button-row {
    flex-wrap: wrap;
  }
  .btn-full {
    flex: 0 0 100%;
  }
}

/* =========================================
   COLLECTIONS PAGE STYLES
   ========================================= */

.page-top-header {
  text-align: center;
  padding: 3rem 0;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
  margin-bottom: 1rem;
}
.page-main-title {
  font-size: 2.2rem;
  letter-spacing: 2px;
}

.collections-zigzag {
  max-width: 1400px;
  margin: 0 auto 4rem;
  /* removing side padding for full-bleed look inside container if desired, or keeping it */
  padding: 0 2rem;
}

.zigzag-row {
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem; /* Added gap to separate image and text */
}
.zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}

.zigzag-image {
  flex: 1;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zigzag-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem;
}

.zigzag-text h3 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.zigzag-text .subtitle {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--secondary-text);
  margin-bottom: 1.5rem;
}

.zigzag-text .desc {
  max-width: 400px;
  font-size: 0.95rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Overlays on Images */
.image-overlay {
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.image-overlay i {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.image-overlay h4 {
  font-size: 1.8rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.image-overlay p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 250px;
}

/* Overlay modifiers */
.image-overlay.bordered {
  border: 1px solid rgba(255,255,255,0.8);
  padding: 3rem;
  background: rgba(0,0,0,0.1);
}

.image-overlay.circled {
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.1);
}

.image-overlay.minimal h4 {
  font-size: 3rem;
  letter-spacing: 4px;
}

.image-overlay.minimal i {
  color: #fff;
  font-size: 2rem;
  margin-left: 10px;
}

.load-more-container {
  text-align: center;
  margin-bottom: 5rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .zigzag-row, .zigzag-row:nth-child(even) {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .zigzag-image {
    min-height: 400px;
  }
  .zigzag-text {
    padding: 3rem 1.5rem;
  }
}

