/*
Theme Name: HolyTexMark Custom Shop
Theme URI: https://example.com/
Author: Custom
Description: Custom ecommerce-style WordPress theme without WooCommerce.
Version: 1.0
Text Domain: holytexmark
*/

:root {
  --bg-body: #f5f5f5;
  --bg-surface: #ffffff;
  --bg-soft: #f0f0f0;
  --border-subtle: #e5e5e5;
  --text-main: #111111;
  --text-muted: #6b6b6b;
  --accent: #111827;
  --accent-alt: #ef4444;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.archive-hero-title,
.category-hero-title,
.contact-page-title,
.category-banner-title,
.vision-title,
.hero-title {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 840px;
}

.site-main {
  min-height: 60vh;
}

.anim-init [data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

.anim-init [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.site-brand {
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.site-logo {
  height: 65px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  gap: 0.9rem;
  font-size: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  border: 2px solid transparent;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

.btn-primary:hover {
  background: #1f2937;
  border-color: #1f2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: #111827;
}

.btn-secondary:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.15);
}

.btn-outline {
  background: transparent;
  color: #111827;
  border: 1.5px solid #111827;
}

.pill-btn {
  border-radius: 999px;
  padding: 0.65rem 1.4rem;
  font-weight: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pill-btn:hover {
  background: #111827;
  color: #ffffff;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.18);
}

.btn-sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  margin-top: 0;
  overflow: hidden;
  background: #f9fafb;
  min-height: 420px;
}

.hero-marquee {
  position: relative;
  margin: 0 0 2.5rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-marquee-inner {
  background: linear-gradient(135deg, #55dd33, #16a34a);
  color: #ffffff;
  overflow: hidden;
  padding: 0.75rem 0;
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.24);
  border-radius: 0;
}

.hero-marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 14s linear infinite;
  padding-left: 0rem;
  will-change: transform;
}

.hero-marquee-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;       /* only left side */
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* light overlay */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  padding-top: 1.2rem;
}

.hero-copy-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw + 1rem, 4.2rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 32rem;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-media-card {
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
  background: radial-gradient(circle at 10% 0, #fef3c7, #fee2e2, #e0f2fe);
}

.hero-media-inner {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.hero-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-tag {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #f9fafb;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-dots {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.hero-slider-dot.is-active {
  width: 24px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-header {
  margin: 3.5rem 0 1.8rem;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.category-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.category-strip--archive {
  margin-top: -0.3rem;
}

.category-pill {
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.category-pill:hover {
  border-color: #111827;
  background: #111827;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.15);
}

/* Homepage category tiles */
body.home .category-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

body.home .category-pill {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 220px;
  padding: 1.5rem 1.6rem 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
  border: none;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.02em;
  color: #f9fafb;
  box-shadow: none;
}

body.home .category-pill:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

body.home .category-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--category-bg, url('1600_x_500.jpg'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 0.6s ease;
  z-index: 0;
}

body.home .category-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.9));
  z-index: 1;
}

body.home .category-pill:hover::before {
  transform: scale(1.08);
}

body.home .category-pill-inner,
body.home .category-pill-inner * {
  position: relative;
  z-index: 2;
}

body.home .category-pill-inner {
  max-width: 20rem;
}

body.home .category-pill-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

body.home .category-pill-title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}

body.home .category-pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  background: rgba(249, 250, 251, 0.9);
  color: #111827;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.45);
}

body.home .category-pill:hover .category-pill-button {
  background: #ffffff;
}

@media (max-width: 640px) {
  body.home .category-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  body.home .category-pill {
    min-height: 200px;
    padding: 1.25rem 1.3rem 1.5rem;
    font-size: 1.1rem;
  }
}

@media (min-width: 1024px) {
  body.home .category-strip {
    grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
  }

  body.home .category-pill:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  body.home .category-pill:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  body.home .category-pill:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.4rem;
  /* padding: 0 1.5rem; */
}

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

.products-carousel-wrapper .product-grid--featured {
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  align-items: stretch;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #111827;
  transition: border-color 0.3s ease;
}

.product-card--glass {
  background: #ffffff;
  border: 2px solid #111827;
  overflow: hidden;
  border-radius: 16px;
}


.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 13;
  overflow: hidden;
  background: #f9fafb;
  display: block;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.products-glide .product-image {
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.product-meta {
  padding: 1.2rem 1.4rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.product-title {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #111827;
}

.product-card .product-title,
.product-card h3.product-title {
  display: block;
  max-width: 20ch;
  padding-right: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card .product-title a {
  display: inline-block;
  max-width: 20ch;
  white-space: inherit;
  overflow: inherit;
  text-overflow: inherit;
}

.product-subtext {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.product-meta-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1 1 auto;
}

.product-category-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
  font-weight: 400;
}

.product-actions-row {
  display: flex;
  justify-content: flex-start;
}

.home-products-section {
  margin-top: 1rem;
}

.products-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 0 2rem;
}

.products-carousel-track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.products-glide .glide__slides {
  list-style: none;
  padding: 0;
  margin: 0;
}

.products-glide .glide__slide {
  width: 100%;
  padding: 0.5rem;
}

.products-carousel-slide {
  width: 100%;
}

.products-carousel-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 2.5rem;
}

.products-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(17, 24, 39, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.products-carousel-dot:hover {
  background: rgba(17, 24, 39, 0.4);
}

.products-carousel-dot.glide__bullet--active {
  width: 32px;
  background: #111827;
}

.products-glide .product-card {
  height: 100%;
}

.products-glide .product-card .product-meta {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.products-glide .product-meta-row {
  margin-top: auto;
}

@media (max-width: 1024px) {
  .product-grid--featured {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  }

  .products-carousel-wrapper .product-grid--featured {
    grid-template-columns: repeat(3, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .product-grid--featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pill-btn {
    width: 100%;
    justify-content: center;
  }

  .products-carousel-wrapper .product-grid--featured {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .product-grid--featured {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .products-carousel-wrapper .product-grid--featured {
    grid-template-columns: 1fr;
  }
}

.usp-section {
  margin: 4rem 0 3.5rem;
  padding-top: 2.5rem;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-top: 1px solid var(--border-subtle);
}

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

.usp-section .section-header .section-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.usp-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.75rem;
  justify-content: center;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  padding: 1.25rem 1.4rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 2px solid var(--border-subtle);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.usp-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #55dd33, #16a34a);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.45);
}

.usp-copy {
  flex: 1;
}

.usp-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: #111827;
}

.usp-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .usp-section {
    padding-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .usp-grid {
    justify-content: center;
  }
}

/* Category Banner Section */
.category-banner-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #55dd33, #16a34a);
  text-align: center;
  border-radius: 1rem;
  margin: 4rem 0;
}

.category-banner-content {
  max-width: 700px;
  margin: 0 auto;
}

.category-banner-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.category-banner-subtitle {
  font-size: 1.125rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .category-banner-title {
    font-size: 1.875rem;
  }
  
  .category-banner-subtitle {
    font-size: 1rem;
  }
}

/* Archive Hero Section */
.archive-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 3rem;
}

.archive-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.archive-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.85) 0%, rgba(55, 65, 81, 0.75) 100%);
  z-index: 2;
}

.archive-hero .container {
  position: relative;
  z-index: 3;
}

.archive-hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.archive-hero-title {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.archive-hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 400;
}

@media (max-width: 768px) {
  .archive-hero {
    height: 300px;
  }
  
  .archive-hero-title {
    font-size: 2.5rem;
  }
  
  .archive-hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .archive-hero {
    height: 250px;
  }
  
  .archive-hero-title {
    font-size: 2rem;
  }
  
  .archive-hero-subtitle {
    font-size: 1rem;
  }
}

/* Archive Page Layout */
.archive-container {
  padding: 2rem 1.5rem;
}

.archive-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar Filters */
.archive-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.filter-section {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.filter-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Search Box */
.product-search-form {
  width: 100%;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #111827;
}

.search-button {
  position: absolute;
  right: 0.5rem;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.search-button:hover {
  background: #374151;
}

/* Filter Options */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-option {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #374151;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid transparent;
}

.filter-option:hover {
  background: #f9fafb;
  border-color: #e5e7eb;
}

.filter-option.active {
  background: #111827;
  color: #ffffff;
  font-weight: 500;
  border-color: #111827;
}

.filter-count {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Archive Main Content */
.archive-main {
  min-width: 0;
}

.archive-main .product-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0;
}

.archive-main .product-card {
  border-radius: 16px;
}

.archive-main .product-meta {
  padding: 1.5rem 1.75rem;
}

.archive-main .product-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.no-products {
  text-align: center;
  padding: 4rem 2rem;
  color: #6b7280;
  font-size: 1.125rem;
}

/* Responsive Archive Layout */
@media (max-width: 1200px) {
  .archive-layout {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
  
  .archive-main .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 968px) {
  .archive-layout {
    grid-template-columns: 1fr;
  }
  
  .archive-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .filter-section {
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .archive-title {
    font-size: 1.875rem;
  }
  
  .archive-sidebar {
    grid-template-columns: 1fr;
  }
  
  .archive-main .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.archive-pagination {
  margin: 2.5rem 0 1.5rem;
  display: flex;
  justify-content: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.4rem;
}

.archive-pagination .page-numbers > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  font-size: 0.85rem;
  padding: 0 0.85rem;
  color: #111827;
  border: 1px solid #d1d5db;
  background: #ffffff;
  transition: all 0.18s ease;
  box-shadow: 0 6px 14px rgba(17, 24, 39, 0.06);
}

.archive-pagination .page-numbers a {
  border: 1px solid #d1d5db;
}

.archive-pagination .page-numbers a:hover {
  border-color: #9ca3af;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.1);
}

.archive-pagination .page-numbers .current {
  background: #111827;
  color: #ffffff;
  border: 1px solid #111827;
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.18);
}

/* Footer Styles */
.site-footer {
  background: #111827;
  color: #d1d5db;
  margin-top: 4rem;
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: #1f2937;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #374151;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #6b7280;
}

.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-bottom-content p {
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-about {
    grid-column: 1;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.editorial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.editorial-card {
  border-radius: 1.1rem;
  overflow: hidden;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
}

.editorial-media {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.editorial-body {
  padding: 0.9rem 1rem 1rem;
  font-size: 0.9rem;
}

.editorial-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.single-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.2rem;
  margin-top: 2rem;
}

.single-product-media img {
  border-radius: 1.2rem;
  width: 100%;
  height: auto;
  display: block;
}

.single-product-meta-line {
  margin-top: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.single-product-description {
  font-size: 0.95rem;
}

.single-product-cta {
  margin-top: 1.5rem;
}

.btn-call {
  max-width: 320px;
  width: 100%;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-call-icon svg {
  stroke: currentColor;
}

.btn-call-text {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.single-related {
  margin-top: 3rem;
}

.single-related .product-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.single-related .product-card {
  border-radius: 18px;
}

.single-related .product-image {
  aspect-ratio: 4 / 5;
}

.single-related .product-meta {
  padding: 1.4rem 1.5rem;
}

.contact-page {
  margin-top: 1.8rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.6fr);
  gap: 2rem;
}

.contact-card {
  background: var(--bg-surface);
  padding: 1.2rem 1.3rem;
  border-radius: 1rem;
  font-size: 0.9rem;
}

.contact-card h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    padding: 0.8rem 0;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 0.6rem;
  }

  .hero {
    padding: 3.5rem 0 4rem;
  }
  .hero-marquee {
    margin: 0 0 2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    position: relative;
    color: #ffffff;
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65));
    z-index: 1;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-copy-kicker,
  .hero-title,
  .hero-subtitle {
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  }

  .hero-actions .btn {
    border-color: #ffffff;
    color: #ffffff;
  }

  .hero-actions .btn-primary {
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-actions .btn-primary:hover,
  .hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }
}

  .footer-inner {
    flex-direction: column;
  }

  .editorial-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-product-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Contact Page Styles */
.contact-page {
  padding: 3rem 1.5rem;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-page-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 1rem;
}

.contact-page-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Contact Messages */
.contact-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-message-success {
  background: #d1fae5;
  border: 2px solid #10b981;
  color: #065f46;
}

.contact-message-error {
  background: #fee2e2;
  border: 2px solid #ef4444;
  color: #991b1b;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form-section {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
}

.contact-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.contact-form .required {
  color: #ef4444;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #111827;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form select {
  cursor: pointer;
  background-color: #ffffff;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
}

.contact-info-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.contact-info-content a {
  color: #111827;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #374151;
  text-decoration: underline;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .contact-page {
    padding: 2rem 1rem;
  }
  
  .contact-page-title {
    font-size: 2rem;
  }
  
  .contact-page-subtitle {
    font-size: 1rem;
  }
  
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .contact-info-card {
    padding: 1.5rem;
  }
}

/* Category Page Styles */
.category-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.7) 100%);
  z-index: 1;
}

.category-hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.category-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
}

.category-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.category-breadcrumb a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-breadcrumb a:hover {
  color: #ffffff;
}

.category-breadcrumb span:last-child {
  color: #ffffff;
  font-weight: 500;
}

.category-hero-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.category-hero-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #e5e7eb;
  max-width: 600px;
}

/* Category Layout */
.category-container {
  padding: 3rem 1.5rem;
}

.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

.category-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.category-main {
  min-width: 0;
}

.category-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.category-results {
  font-size: 1rem;
  color: #6b7280;
}

/* Category Stats */
.category-stats {
  margin-top: auto;
}

.category-stat-card {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.category-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-stat-content {
  flex: 1;
}

.category-stat-number {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.category-stat-label {
  font-size: 0.875rem;
  color: #d1d5db;
}

/* No Products State */
.no-products {
  text-align: center;
  padding: 4rem 2rem;
  background: #f9fafb;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
}

.no-products-icon {
  margin: 0 auto 1.5rem;
  color: #9ca3af;
}

.no-products h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.no-products p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Actions */
.product-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.product-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.product-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* Category page product cards */
.category-main .product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #111827;
  transition: all 0.3s ease;
}

.category-main .product-card:hover {
  border-color: #374151;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-main .product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.category-main .product-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.3s ease;
}

.category-main .product-title a:hover {
  color: #374151;
}

.category-main .product-meta {
  padding: 1.5rem 1.75rem;
}

.category-main .product-image {
  aspect-ratio: 1;
}

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

/* Category page filter sections */
.category-sidebar .filter-section {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
}

.category-sidebar .filter-title {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Category search form */
.filter-search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.filter-search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-search-input:focus {
  outline: none;
  border-color: #111827;
}

.filter-search-btn {
  position: absolute;
  right: 0.5rem;
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.filter-search-btn:hover {
  background: #374151;
}

/* Category filter options */
.category-sidebar .filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-sidebar .filter-option {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #374151;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid transparent;
  background: #f9fafb;
}

.category-sidebar .filter-option:hover {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.category-sidebar .filter-option.active {
  background: #111827;
  color: #ffffff;
  font-weight: 500;
}

.filter-count {
  font-size: 0.8rem;
  color: #9ca3af;
  font-weight: 500;
}

.category-sidebar .filter-option.active .filter-count {
  color: #d1d5db;
}

/* Responsive Category Page */
@media (max-width: 968px) {
  .category-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .category-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .category-stats {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .category-hero {
    height: 300px;
  }
  
  .category-hero-title {
    font-size: 2rem;
  }
  
  .category-hero-description {
    font-size: 1rem;
  }
  
  .category-container {
    padding: 2rem 1rem;
  }
  
  .category-sidebar {
    grid-template-columns: 1fr;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .no-products {
    padding: 3rem 1.5rem;
  }
}

/* Vision Statement Section with Glassmorphism */
.vision-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  width: 100%;
}

.vision-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.pexels.com/photos/7679454/pexels-photo-7679454.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
}

.vision-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.7);
}

@keyframes visionFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.vision-glass-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 3.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  text-align: center;
  transition: all 0.4s ease;
}

.vision-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.vision-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.vision-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.02em;
}

.vision-statement {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  font-style: italic;
}

.vision-decorative-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  margin: 0 auto;
  border-radius: 2px;
}

/* Responsive Vision Section */
@media (max-width: 768px) {
  .vision-section {
    padding: 4rem 0;
  }
  
  .vision-glass-card {
    padding: 3rem 2rem;
  }
  
  .vision-icon {
    width: 80px;
    height: 80px;
  }
  
  .vision-title {
    font-size: 2rem;
  }
  
  .vision-statement {
    font-size: 1.125rem;
  }
}

.vision-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  width: 100%;
}

.vision-section .container {
  position: relative;
  z-index: 2;
}

.vision-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: none;
  transform: none;
}

.vision-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.vision-glass-card {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 3.25rem 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "icon title"
    "icon text"
    "icon line";
  column-gap: 2.25rem;
  row-gap: 1.25rem;
  align-items: center;
  text-align: left;
  color: #f9fafb;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(31, 41, 55, 0.98));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(229, 231, 235, 0.4);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.6),
    inset 0 1px 0 rgba(249, 250, 251, 0.06);
}

.vision-glass-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from 180deg,
    rgba(17, 24, 39, 0.65),
    rgba(239, 68, 68, 0.85),
    rgba(55, 65, 81, 0.7),
    rgba(17, 24, 39, 0.65)
  );
  opacity: 0.4;
  z-index: -2;
}

.vision-glass-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.98));
  z-index: -1;
}

.vision-icon {
  grid-area: icon;
  width: 96px;
  height: 96px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 0,
    #55dd33 0%,
    #16a34a 45%,
    #111827 100%);
  border: 2px solid rgba(249, 250, 251, 0.85);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.55);
  animation: visionFloat 10s ease-in-out infinite;
}

.vision-icon svg {
  width: 40px;
  height: 40px;
}

.vision-title {
  grid-area: title;
  margin: 0 0 0.25rem;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #f9fafb;
}

.vision-statement {
  grid-area: text;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #e5e7eb;
  max-width: 40rem;
}

.vision-decorative-line {
  grid-area: line;
  width: 120px;
  height: 2px;
  margin-top: 0.75rem;
  background: linear-gradient(90deg, transparent, rgba(249, 250, 251, 0.9), transparent);
  border-radius: 999px;
}

@media (max-width: 768px) {
  .vision-section {
    padding: 3.5rem 0;
  }

  .vision-glass-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "icon"
      "title"
      "text"
      "line";
    text-align: center;
    row-gap: 1.25rem;
    padding: 2.5rem 1.75rem;
  }

  .vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.25rem;
  }

  .vision-statement {
    margin-top: 0.25rem;
    font-size: 1rem;
  }

  .vision-decorative-line {
    margin-left: auto;
    margin-right: auto;
  }
}
