@font-face {
  font-family: "Kaushan Script";
  src: url("fonts/KaushanScript-Regular.woff2") format("woff2"), url("fonts/KaushanScript-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Bold.woff2") format("woff2"), url("fonts/OpenSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Regular.woff2") format("woff2"), url("fonts/OpenSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans SemiCondensed";
  src: url("fonts/OpenSansSemiCondensed-SemiBold.woff2") format("woff2"), url("fonts/OpenSansSemiCondensed-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Fonts */
  --font-base: "Open Sans", sans-serif;
  --font-heading: "Kaushan Script", sans-serif;
  --font-alt: "Open Sans SemiCondensed", sans-serif;

  /* Brand Colors */
  --color-primary: #ad009f;
  --color-secondary: #560ead;
  --color-accent: #c6f500;

  /* Supporting Colors */
  --color-pink-soft: #fad6f2;
  --color-purple-light: #e4d2fa;
  --color-lime-light: #f7ffe0;
  --color-dark: #1a0022;
  --color-sand-warm: #ffe7cf;
  --color-indigo-muted: #8661c1;

  /* Text Colors */
  --text-main: #1a0022;
  --text-light: #5a2b79;
  --text-inverse: #ffffff;

  /* Backgrounds */
  --bg-default: #ffffff;
  --bg-accent: var(--color-pink-soft);
  --bg-dark: var(--color-dark);
  --bg-highlight: var(--color-lime-light);
  --bg-muted: var(--color-sand-warm);

  /* Borders & UI */
  --border-primary: #ad009f;
  --border-secondary: #560ead;
  --border-accent: #c6f500;

  /* Font Sizes */
  --font-size-base: 16px;
  --font-size-large: 24px;
  --font-size-xl: 36px;
  --font-size-xxl: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

* {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
}

body {
  font-family: var(--font-base);
  font-size: var(--font-size-base);
  line-height: 1.5;
  color: var(--text-main);
  background: var(--bg-default);
}

button {
  border: 0;
  cursor: pointer;
}

figure {
  margin: 0;
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

blockquote {
  margin: 0;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}

.aspect-1-1 {
  aspect-ratio: 1/1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  margin: 0 0 0 1rem;
  position: relative;
  border-radius: 5px;
}

.btn-cart img {
  width: 30px;
  height: 30px;
}

.btn-cart #cartCount {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  color: var(--color-lime-light);
  font-size: 10px;
  border-radius: 100%;
}

/* Header */
.header {
  background: var(--bg-dark);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s;
}

.page-home .header {
  transform: translateY(-100%);
}

.page-home .header.is-scrolled {
  transform: translateY(0);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-image {
  width: 150px;
}

.header-nav {
  margin: 0 auto;
}

.header-nav.active {
  display: block;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.nav-item a {
  color: var(--text-inverse);
  text-decoration: none;
  font-family: var(--font-alt);
  font-size: var(--font-size-base);
  text-transform: uppercase;
}

.nav-item a:hover {
  color: var(--color-accent);
}

.burger {
  background: transparent;
  padding: 0;
  margin: 0 0 0 auto;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-secondary);
  margin: 2px 0;
  transition: background 0.3s;
}

.burger:hover .burger-line {
  background: var(--color-primary);
}

.top-banner {
  background: url(img/pinco.webp) center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 0 100px;
}

.hero-cta.btn--lg {
  display: inline-flex;
  height: 60px;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0 3rem;
  align-items: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(173, 0, 159, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(173, 0, 159, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(173, 0, 159, 0);
  }
}

.btn-animated {
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  color: var(--text-inverse);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
}

.hero-bg img {
  opacity: 0.8;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 20px 50px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: var(--font-size-xxl);
  margin-bottom: 20px;
}

.hero-tagline,
.hero-subtitle {
  font-family: var(--font-alt);
  font-size: var(--font-size-large);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-cta {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--text-inverse);
  text-decoration: none;
  font-family: var(--font-alt);
  border-radius: 5px;
  text-align: center;
}

.hero-cta:hover {
  background: var(--color-secondary);
}

/* Seasonal Preview */
.seasonal-preview {
  padding: 60px 0;
  background: var(--bg-muted);
}

.section-title {
  font-size: var(--font-size-xl);
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: var(--font-alt);
  font-size: var(--font-size-large);
  text-transform: uppercase;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.seasonal-grid {
  display: grid;
  gap: 20px;
}

.seasonal-card {
  background: var(--bg-default);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.seasonal-card-title {
  font-size: var(--font-size-large);
  margin-bottom: 10px;
}

.seasonal-card-subtitle {
  font-family: var(--font-alt);
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 15px;
}

.seasonal-card-text {
  margin-bottom: 20px;
}

.seasonal-card-image {
  margin-bottom: 20px;
}

.seasonal-card-link {
  display: inline-block;
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}

.seasonal-card-link:hover {
  background: var(--color-primary);
  color: var(--text-inverse);
}

/* Featured Products Carousel */
.featured-products {
  padding: 60px 0;
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 30s linear infinite;
}

.carousel-item {
  flex: 0 0 250px;
  text-align: center;
}

.carousel-title {
  font-size: var(--font-size-base);
  margin: 10px 0;
}

.carousel-price {
  font-family: var(--font-alt);
  color: var(--text-light);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-item:hover {
  transform: scale(1.05);
}

/* Why PınCoTrend */
.why-pincotrend {
  padding: 60px 0;
  background: var(--bg-accent);
}

.why-container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row;
}

.why-text {
  flex: 1;
  order: 1;
  text-align: center;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.why-list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.why-image {
  flex: 1;
  order: 2;
}

/* Fabric Highlights */
.fabric-highlights {
  padding: 60px 0;
}

.fabric-grid {
  display: grid;
  gap: 20px;
}

.fabric-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-highlight);
  border-radius: 10px;
}

.fabric-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.fabric-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.fabric-card:hover {
  background: var(--color-purple-light);
}

/* Customer Quote */
.customer-quote {
  padding: 60px 0;
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.quote {
  text-align: center;
  position: relative;
}

.quote p {
  font-size: var(--font-size-large);
  font-style: italic;
  margin-bottom: 20px;
}

.quote cite {
  font-family: var(--font-alt);
  font-style: normal;
  font-size: var(--font-size-base);
}

.quote-image {
  width: 100px;
  margin: 20px auto;
  border-radius: 50%;
}

/* Shop by Category */
.shop-category {
  padding: 60px 0;
}

.category-grid {
  display: grid;
  gap: 20px;
}

.category-item {
  position: relative;
}

.category-item:first-child {
  grid-column: span 2;
}

.category-large {
  grid-column: span 3;
}

.category-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--text-inverse);
  font-size: var(--font-size-large);
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.category-description {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-inverse);
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s;
  text-align: center;
  width: 80%;
}

.category-item:hover .category-description {
  opacity: 1;
}

.category-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.category-image {
  height: 300px;
}

/* Sustainability */
.sustainability {
  padding: 60px 0;
  background: var(--bg-muted);
}

.sustainability-container {
  display: flex;
  gap: 40px;
}

.sustainability-text {
  flex: 2;
  text-align: center;
}

.sustainability-image {
  flex: 1;
}

/* Join CTA */
.join-cta {
  padding: 60px 0;
  text-align: center;
  background: var(--color-primary);
  color: var(--text-inverse);
}

.join-text {
  margin-bottom: 20px;
}

.join-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-accent);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
}

.join-cta-button:hover {
  background: var(--color-secondary);
  color: var(--text-inverse);
}

/* Instagram Gallery */
.insta-gallery {
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  gap: 20px;
}

.gallery-flip-card {
  perspective: 1000px;
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.gallery-flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}

.flip-card-front {
  transform: rotateY(0deg);
}

.flip-card-back {
  transform: rotateY(180deg);
  background: var(--color-purple-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.flip-card-back p {
  margin: 0;
  font-size: 14px;
}

.gallery-flip-card:nth-child(2) .flip-card-back {
  background-color: var(--color-lime-light);
}
.gallery-flip-card:nth-child(3) .flip-card-back {
  background-color: var(--color-pink-soft);
}
.gallery-flip-card:nth-child(4) .flip-card-back {
  background-color: var(--color-sand-warm);
}
.gallery-flip-card:nth-child(5) .flip-card-back {
  background-color: var(--color-secondary);
  color: var(--color-lime-light);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 40px 0;
}

.footer-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand,
.footer-nav,
.footer-contact {
  flex: 1;
}

.footer-title {
  font-size: var(--font-size-large);
}

.footer-description {
  font-size: var(--font-size-base);
}

.footer-nav-title {
  font-size: var(--font-size-base);
  margin-bottom: 20px;
}

.footer-nav-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
}

.footer-link,
.footer-contact-list a {
  color: var(--text-inverse);
  text-decoration: none;
}

.footer-link:hover,
.footer-contact-list a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-purple-light);
}

.footer-note {
  font-size: 14px;
}

/* Responsive */
@media (min-width: 1024px) {
  .header-nav {
    display: block;
    opacity: 0;
    transform: translateY(-50%);
    transition: all 0.5s;
  }
  .header-nav.active {
    opacity: 1;
    transform: translateY(0);
  }
  .seasonal-grid,
  .fabric-grid,
  .category-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .seasonal-grid,
  .fabric-grid,
  .category-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 20px;
  }
  .header-nav.active {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .why-container,
  .sustainability-container {
    flex-direction: column;
  }

  .category-item:first-child {
    grid-column: span 1;
  }

  .category-large {
    grid-column: span 1;
  }
}

/* Filter Controls */
.filter-controls {
  padding: 60px 0;
  background: var(--bg-highlight);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.filter-category {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-label {
  font-family: var(--font-alt);
  text-transform: uppercase;
  color: var(--text-light);
}

.filter-pill {
  padding: 8px 16px;
  background: var(--bg-default);
  border: 1px solid var(--border-primary);
  border-radius: 20px;
  font-family: var(--font-base);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--color-primary);
  color: var(--text-inverse);
}

/* Products */
.products {
  padding: 60px 0;
}

.products-intro {
  text-align: center;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  gap: 20px;
}

.product-card {
  background: var(--bg-default);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-image {
  margin-bottom: 20px;
}

.product-title {
  font-size: var(--font-size-large);
  margin-bottom: 10px;
}

.product-description {
  margin-bottom: 15px;
}

.product-price {
  font-family: var(--font-alt);
  color: var(--text-light);
  margin-bottom: 20px;
}

.btn-order {
  padding: 10px 20px;
  background: var(--color-accent);
  color: var(--text-main);
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
  cursor: pointer;
}

.btn-order:hover {
  background: var(--color-secondary);
  color: var(--text-inverse);
}

.no-results {
  text-align: center;
  padding: 40px;
  background: var(--bg-accent);
  border-radius: 10px;
  display: none;
}

/* Pinco Branding */
.pinco-branding {
  padding: 60px 0;
  background: var(--bg-dark);
  color: var(--text-inverse);
  text-align: center;
  position: relative;
}

.pinco-branding .bg {
  position: absolute;
  inset: 0 0;
  opacity: 0.5;
}

.pinco-branding .container {
  position: relative;
  z-index: 2;
}

.branding-image {
  width: 300px;
  margin: 0 auto 20px;
}

.branding-slogan {
  font-family: var(--font-alt);
  font-size: var(--font-size-large);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.branding-note {
  max-width: 600px;
  margin: 0 auto;
}

/* Catalog Stats */
.catalog-stats {
  padding: 60px 0;
  background: var(--bg-muted);
}

.stats-grid {
  display: grid;
  gap: 20px;
}

.stat-block {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.stat-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
}

.stat-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.stat-number {
  font-size: var(--font-size-large);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.stat-block:hover {
  background: var(--color-purple-light);
}

/* Color Swatches */
.color-swatches {
  padding: 60px 0;
}

.swatches-intro {
  text-align: center;
  margin-bottom: 40px;
}

.swatches-scroll {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding-bottom: 20px;
}

.swatch-item {
  text-align: center;
  flex: 0 0 100px;
}

.swatch-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 10px auto;
}

.swatch-fuchsia {
  background: var(--color-primary);
}
.swatch-violet {
  background: var(--color-secondary);
}
.swatch-lime {
  background: var(--color-accent);
}
.swatch-blush {
  background: var(--color-pink-soft);
}
.swatch-lavender {
  background: var(--color-purple-light);
}
.swatch-sand {
  background: var(--color-sand-warm);
}

.swatch-name {
  font-size: 14px;
}

.swatch-item:hover .swatch-circle {
  transform: scale(1.1);
}

/* Sizing Guide */
.sizing-guide {
  padding: 60px 0;
  background: var(--bg-accent);
}

.sizing-text {
  text-align: center;
}

.sizing-link {
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
}

.sizing-link:hover {
  color: var(--color-secondary);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-flex div {
  width: 60%;
}
.modal-flex figure {
  width: 30%;
}

.modal-content {
  background: var(--bg-default);
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  background: transparent;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-title {
  font-size: var(--font-size-xl);
  margin-bottom: 20px;
}

.modal-intro {
  margin-bottom: 20px;
}

.modal-subtitle {
  font-size: var(--font-size-large);
  margin-bottom: 15px;
}

.modal-list {
  margin-bottom: 20px;
  padding-left: 20px;
}

.modal-image {
  margin-bottom: 20px;
}

.table-wrapper {
  overflow-x: auto;
  margin-bottom: 20px;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
}

.modal-table th,
.modal-table td {
  border: 1px solid var(--border-secondary);
  padding: 10px;
  text-align: center;
}

.modal-table th {
  background: var(--bg-highlight);
}

/* Brand CTA */
.brand-cta {
  padding: 60px 0;
  text-align: center;
  background: var(--color-primary);
  color: var(--text-inverse);
}

.brand-text {
  margin-bottom: 20px;
}

.brand-subtext {
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.brand-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-accent);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
}

.brand-cta-button:hover {
  background: var(--color-secondary);
  color: var(--text-inverse);
}

/* Responsive */
@media (min-width: 768px) {
  .products-grid,
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .filter-group {
    flex-direction: column;
  }

  .filter-category {
    flex-wrap: wrap;
  }

  .filter-label {
    width: 100%;
  }

  .swatches-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    justify-content: unset;
  }
}

/* Brand Timeline */
.brand-timeline {
  padding: 60px 0;
  background: var(--bg-muted);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--bg-default);
  border-left: 4px solid var(--color-primary);
  border-radius: 5px;
  gap: 20px;
}

.timeline-year {
  font-size: var(--font-size-large);
}

.timeline-text {
  flex: 1;
}

.timeline-intro {
  text-align: center;
  margin-bottom: 40px;
}

.timeline-item:hover {
  background: var(--color-purple-light);
}

/* Founder Intro */
.founder-intro {
  padding: 60px 0;
}

.founder-text {
  text-align: center;
  margin-bottom: 40px;
}

.founder-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
}

.founder-card {
  text-align: center;
}

.founder-image {
  width: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.founder-name {
  font-size: var(--font-size-large);
  margin-bottom: 10px;
}

.founder-quote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
}

.founder-mission {
  max-width: 400px;
  margin: 0 auto;
}

/* Values */
.values {
  padding: 60px 0;
  background: var(--bg-accent);
}

.values-text {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  gap: 20px;
}

.value-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.value-title {
  font-size: calc(var(--font-size-base) * 1.2);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.value-text {
  font-size: 14px;
}

.value-card:hover {
  background: var(--color-lime-light);
}

/* Azerbaijan Roots */
.azerbaijan-roots {
  padding: 60px 0;
}

.roots-text {
  text-align: center;
  margin-bottom: 40px;
}

.roots-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.roots-map {
  flex: 1;
}

.roots-regions {
  flex: 1;
}

.region-item {
  margin-bottom: 20px;
}

.region-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.region-text {
  font-size: 14px;
}

.region-item:hover .region-title {
  color: var(--color-primary);
}

/* Behind the Scenes */
.behind-scenes {
  padding: 60px 0;
  background: var(--bg-muted);
}

.behind-scenes-container {
  display: flex;
  gap: 40px;
}

.scenes-image {
  flex: 2;
}

.scenes-text {
  flex: 1;
}

/* Team Gallery */
.team-gallery {
  padding: 60px 0;
}

.team-text {
  text-align: center;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  gap: 20px;
}

.team-member {
  text-align: center;
}

.team-image {
  width: 150px;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.team-name {
  font-size: 14px;
}

.team-quote {
  font-style: italic;
  color: var(--text-light);
  font-size: 14px;
  margin-top: 10px;
}

.team-member:hover .team-image {
  transform: scale(1.1);
}

/* Awards */
.awards {
  padding: 60px 0;
  background: var(--bg-accent);
}

.awards-text {
  text-align: center;
  margin-bottom: 40px;
}

.awards-grid {
  display: grid;
  gap: 20px;
}

.award-item {
  text-align: center;
  background: var(--bg-default);
  border: 1px solid var(--border-secondary);
  padding: 20px;
  border-radius: 10px;
}

.award-item figure {
  margin-bottom: 10px;
}

.award-item figure {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.award-title {
  font-size: var(--font-size-base);
  margin-bottom: 5px;
}

.award-description {
  font-size: 14px;
}

.award-item:hover {
  transform: scale(1.05);
}

/* Media Mentions */
.media-mentions {
  padding: 60px 0;
}

.media-text {
  text-align: center;
  margin-bottom: 40px;
}

.media-grid {
  display: grid;
  gap: 20px;
}

.media-quote {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
  font-style: italic;
}

.media-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-alt);
  font-style: normal;
  color: var(--text-light);
}

.media-quote:hover {
  background: var(--color-purple-light);
}

/* Connect CTA */
.connect-cta {
  padding: 60px 0;
  text-align: center;
  background: var(--color-primary);
  color: var(--text-inverse);
}

.connect-text {
  margin-bottom: 20px;
}

.connect-subtext {
  margin-bottom: 20px;
}

.connect-link {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-accent);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

.connect-link:hover {
  background: var(--color-secondary);
  color: var(--text-inverse);
}

/* Responsive */
@media (min-width: 768px) {
  .values-grid,
  .team-grid,
  .awards-grid,
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid,
  .awards-grid,
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .roots-content,
  .behind-scenes-container {
    flex-direction: column;
  }
}

/* Materials Flowchart */
.materials-flowchart {
  padding: 60px 0;
  background: var(--bg-muted);
}

.flowchart {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.flowchart-step {
  flex: 0 0 350px;
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.flowchart-step .step-icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
}

.flowchart-step .step-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.flowchart-step .step-text {
  font-size: 14px;
}

.flowchart-step:hover {
  background: var(--color-purple-light);
}

/* Production Footprint */
.production-footprint {
  padding: 60px 0;
}

.footprint-container {
  display: flex;
  gap: 40px;
}

.footprint-image {
  flex: 2;
}

.footprint-text {
  flex: 1;
}

.footprint-list {
  list-style: disc;
  padding-left: 20px;
}

.footprint-list li {
  margin-bottom: 10px;
}

/* Quality Control Stats */
.qc-stats {
  padding: 60px 0;
  background: var(--bg-accent);
}

.stats-intro {
  text-align: center;
  margin-bottom: 40px;
}

.stats-grid {
  display: grid;
  gap: 20px;
}

.stat-item {
  text-align: center;
}

.progress-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.progress-svg {
  width: 100%;
  height: 100%;
}

.progress-bg {
  fill: none;
  stroke: var(--bg-muted);
  stroke-width: 5;
}

.progress-bar {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 5;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease;
}

.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-alt);
  font-size: 20px;
  color: var(--text-main);
}

.stat-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.stat-text {
  font-size: 14px;
}

/* Region Spotlight */
.region-spotlight {
  padding: 60px 0;
}

.region-intro {
  text-align: center;
  margin-bottom: 40px;
}

.region-grid {
  display: grid;
  gap: 20px;
}

.region-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.region-image {
  margin-bottom: 15px;
}

.region-name {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.region-detail {
  font-size: 14px;
}

.region-card:hover {
  background: var(--color-lime-light);
}

/* Eco Practices */
.eco-practices {
  padding: 60px 0;
  background: var(--bg-muted);
}

.eco-intro {
  text-align: center;
  margin-bottom: 40px;
}

.eco-grid {
  display: grid;
  gap: 20px;
}

.eco-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.eco-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
}

.eco-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.eco-text {
  font-size: 14px;
}

.eco-card:hover {
  background: var(--color-purple-light);
}

/* Factory Photos */
.factory-photos {
  padding: 60px 0;
}

.photos-intro {
  text-align: center;
  margin-bottom: 40px;
}

.photos-grid {
  display: grid;
  gap: 20px;
}

.photo-item {
  overflow: hidden;
  border-radius: 10px;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-item:hover img {
  transform: scale(1.05);
}

/* Delivery SLA */
.delivery-sla {
  padding: 60px 0;
  background: var(--bg-accent);
}

.delivery-intro {
  text-align: center;
  margin-bottom: 40px;
}

.delivery-timeline {
  display: flex;
  gap: 20px;
}

.delivery-step {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.delivery-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.delivery-text {
  font-size: 14px;
}

.delivery-step:hover {
  background: var(--color-lime-light);
}

/* Join Our Process CTA */
.join-process {
  padding: 60px 0;
  text-align: center;
  background: var(--color-primary);
  color: var(--text-inverse);
}

.join-text {
  margin-bottom: 20px;
}

.join-subtext {
  margin-bottom: 20px;
}

.join-cta {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-accent);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

.join-cta:hover {
  background: var(--color-secondary);
  color: var(--text-inverse);
}

/* Responsive */
@media (min-width: 768px) {
  .stats-grid,
  .region-grid,
  .eco-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .photos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .footprint-container {
    flex-direction: column;
  }
  .delivery-timeline {
    flex-direction: column;
  }
}

/* Why Partner With Us */
.why-partner {
  padding: 60px 0;
  background: var(--bg-muted);
}

.partner-intro {
  text-align: center;
  margin-bottom: 40px;
}

.partner-grid {
  display: grid;
  gap: 20px;
}

.partner-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.partner-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.partner-text {
  font-size: 14px;
}

.partner-card:hover {
  background: var(--color-lime-light);
}

/* Partner Types */
.partner-types {
  padding: 60px 0;
}

.partner-types-container {
  display: flex;
  gap: 40px;
}

.types-diagram {
  flex: 2;
}

.types-text {
  flex: 1;
}

.types-list {
  list-style: disc;
  padding-left: 20px;
}

.types-list li {
  margin-bottom: 10px;
}

/* Requirements Matrix */
.requirements-matrix {
  padding: 60px 0;
  background: var(--bg-accent);
}

.matrix-intro {
  text-align: center;
  margin-bottom: 40px;
}

.matrix-grid {
  display: grid;
  gap: 20px;
}

.matrix-item {
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.matrix-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.matrix-text {
  font-size: 14px;
}

.matrix-item:hover {
  background: var(--color-purple-light);
}

/* Success Stories */
.success-stories {
  padding: 60px 0;
}

.stories-intro {
  text-align: center;
  margin-bottom: 40px;
}

.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.story-quote {
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
}

.story-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-alt);
  font-style: normal;
  color: var(--text-light);
}

.story-logo {
  width: 150px;
}

.story-card:hover {
  background: var(--color-lime-light);
}

/* Process Steps */
.process-steps {
  padding: 60px 0;
  background: var(--bg-muted);
}

.process-intro {
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}

.steps-grid .step-item {
  flex: 0 0 200px;
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.steps-grid .step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--color-primary);
  color: var(--text-inverse);
  border-radius: 50%;
  margin-bottom: 10px;
}

.steps-grid .step-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.steps-grid .step-text {
  font-size: 14px;
}

.steps-grid .step-item:hover {
  background: var(--color-purple-light);
}

/* FAQ Accordion */
.faq-accordion {
  padding: 60px 0;
}

.faq-intro {
  text-align: center;
  margin-bottom: 40px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
  background: var(--color-lime-light);
  border-radius: 5px;
}

.accordion-title {
  font-size: calc(var(--font-size-base) * 1.2);
  padding: 15px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-title::after {
  content: "+";
  font-size: 20px;
  color: var(--color-primary);
}

.accordion-title.active::after {
  content: "−";
}

.accordion-content {
  display: none;
  padding: 15px;
  background: var(--bg-muted);
  border-radius: 0 0 5px 5px;
}

.accordion-content.active {
  display: block;
}

/* Partnership Form */
.partnership-form {
  padding: 60px 0;
  background: var(--bg-accent);
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-alt);
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-secondary);
  border-radius: 5px;
  font-size: 14px;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-privacy label {
  font-size: 14px;
}

.form-group.form-privacy input {
  width: auto;
}

.form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-privacy a:hover {
  color: var(--color-secondary);
}

.form-submit {
  display: block;
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--text-inverse);
  border: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 auto;
}

.form-submit:hover {
  background: var(--color-secondary);
}

/* Next Steps */
.next-steps {
  padding: 60px 0;
}

.steps-intro {
  text-align: center;
  margin-bottom: 40px;
}

.steps-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.steps-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step-icon {
  font-size: 24px;
  margin-right: 10px;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 0;
  background: var(--color-primary);
  color: var(--text-inverse);
  text-align: center;
}

.cta-text {
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-accent);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

.cta-button:hover {
  background: var(--color-secondary);
  color: var(--text-inverse);
}

/* Responsive */
@media (min-width: 768px) {
  .partner-grid,
  .matrix-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1023px) {
  .partner-types-container {
    flex-direction: column;
  }
}

/* Seasonal Tips */
.seasonal-tips {
  padding: 60px 0;
  background: var(--bg-muted);
}

.tips-intro {
  text-align: center;
  margin-bottom: 40px;
}

.tips-grid {
  display: grid;
  gap: 20px;
}

.tip-card {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.tip-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
}

.tip-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.tip-text {
  font-size: 14px;
}

.tip-card:hover {
  background: var(--color-lime-light);
}

/* Outfit Moodboard */
.outfit-moodboard {
  padding: 60px 0;
}

.moodboard-intro {
  text-align: center;
  margin-bottom: 40px;
}

.moodboard-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.moodboard-item {
  overflow: hidden;
  border-radius: 10px;
}

.moodboard-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moodboard-item:hover img {
  transform: scale(1.05);
}

/* Style Rule Highlight */
.style-rule {
  padding: 60px 0;
  background: var(--bg-accent);
}

.rule-intro {
  text-align: center;
  margin-bottom: 40px;
}

.rule-quote {
  text-align: center;
  font-style: italic;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.rule-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-alt);
  font-style: normal;
  color: var(--text-light);
}

.rule-quote:hover {
  background: var(--color-purple-light);
}

/* Fabric Pairings */
.fabric-pairings {
  padding: 60px 0;
}

.pairings-intro {
  text-align: center;
  margin-bottom: 40px;
}

.pairings-grid {
  display: grid;
  gap: 20px;
}

.pairing-item {
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.pairing-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.pairing-colors,
.pairing-occasion {
  font-size: 14px;
  margin-bottom: 5px;
}

.pairing-item:hover {
  background: var(--color-lime-light);
}

/* How-to Steps */
.howto-steps {
  padding: 60px 0;
  background: var(--bg-muted);
}

.howto-intro {
  text-align: center;
  margin-bottom: 40px;
}

.howto-grid {
  display: grid;
  gap: 20px;
}

.howto-step {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.howto-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.howto-text {
  font-size: 14px;
}

.howto-step:hover {
  background: var(--color-purple-light);
}

/* Trend Forecast */
.trend-forecast {
  padding: 60px 0;
}

.trend-intro {
  text-align: center;
  margin-bottom: 40px;
}

.trend-content {
  position: relative;
}

.trend-image {
  margin-bottom: 20px;
}

.trend-text {
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-inverse);
  padding: 20px;
  border-radius: 5px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
}

/* Get Inspired CTA */
.get-inspired {
  padding: 60px 0;
  background: var(--color-primary);
  color: var(--text-inverse);
  text-align: center;
}

.get-inspired .section-subtitle {
  color: var(--color-lime-light);
}

.inspired-text {
  margin-bottom: 20px;
}

.inspired-cta {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-accent);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

.inspired-cta:hover {
  background: var(--color-secondary);
  color: var(--text-inverse);
}

/* Download Guide */
.download-guide {
  padding: 60px 0;
  text-align: center;
}

.guide-text {
  margin-bottom: 20px;
}

.guide-link {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--text-inverse);
  text-decoration: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

.guide-link:hover {
  background: var(--color-secondary);
}

/* Feedback Invite */
.feedback-invite {
  padding: 60px 0;
  background: var(--bg-accent);
}

.feedback-text {
  text-align: center;
  margin-bottom: 20px;
}

.feedback-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.feedback-link:hover {
  color: var(--color-secondary);
}

/* Responsive */
@media (min-width: 768px) {
  .tips-grid,
  .pairings-grid,
  .howto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .trend-text {
    position: static;
    max-width: 100%;
  }
  .moodboard-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
.contact-form {
  padding: 60px 0;
  background: var(--bg-muted);
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-alt);
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-secondary);
  border-radius: 5px;
  font-size: 14px;
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-privacy label {
  font-size: 14px;
}

.form-privacy a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form-privacy a:hover {
  color: var(--color-secondary);
}

.form-submit {
  display: block;
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--text-inverse);
  border: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 auto;
}

.form-submit:hover {
  background: var(--color-secondary);
}

/* Google Map */
.google-map {
  padding: 60px 0;
}

.map-intro {
  text-align: center;
  margin-bottom: 40px;
}

.google-map iframe {
  border: 0;
  border-radius: 10px;
}

/* Office Info Blocks */
.office-info {
  padding: 60px 0;
  background: var(--bg-accent);
}

.info-intro {
  text-align: center;
  margin-bottom: 40px;
}

.info-grid {
  display: grid;
  gap: 20px;
}

.info-block {
  text-align: center;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
}

.info-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.info-text {
  font-size: 14px;
}

.info-text a {
  color: var(--color-primary);
  text-decoration: none;
}

.info-text a:hover {
  color: var(--color-secondary);
}

.info-block:hover {
  background: var(--color-lime-light);
}

/* Opening Hours */
.opening-hours {
  padding: 60px 0;
}

.hours-intro {
  text-align: center;
  margin-bottom: 40px;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: var(--bg-default);
  border-bottom: 1px solid var(--border-secondary);
  border-radius: 5px;
  margin-bottom: 10px;
}

.hours-day,
.hours-time {
  font-size: 14px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row:hover {
  background: var(--color-purple-light);
}

/* Contact Guidelines */
.contact-guidelines {
  padding: 60px 0;
  background: var(--bg-muted);
}

.guidelines-intro {
  text-align: center;
  margin-bottom: 40px;
}

.guidelines-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.guidelines-list li {
  margin-bottom: 15px;
  font-size: 14px;
}

.guidelines-list li strong {
  color: var(--color-primary);
}

/* Frequently Asked */
.frequently-asked {
  padding: 60px 0;
}

.faq-intro {
  text-align: center;
  margin-bottom: 40px;
}

.faq-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.faq-tab {
  margin-bottom: 10px;
}

.faq-tab input {
  display: none;
}

.tab-label {
  display: block;
  padding: 15px;
  background: var(--bg-default);
  cursor: pointer;
  border-radius: 5px;
  font-size: var(--font-size-base);
}

.tab-content {
  display: none;
  padding: 15px;
  background: var(--bg-muted);
  border-radius: 0 0 5px 5px;
  font-size: 14px;
}

.faq-tab input:checked + .tab-label {
  background: var(--color-primary);
  color: var(--text-inverse);
}

.faq-tab input:checked + .tab-label + .tab-content {
  display: block;
}

.tab-label:hover {
  background: var(--color-lime-light);
}

/* Responsive */
@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Overview Text */
.overview-text {
  padding: 60px 0;
  background: var(--bg-muted);
}

.overview-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Eligibility Checklist */
.eligibility-checklist {
  padding: 60px 0;
}

.checklist-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.checklist-grid {
  display: grid;
  gap: 20px;
}

.checklist-card {
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
  text-align: center;
}

.checklist-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.checklist-text {
  font-size: 14px;
  line-height: 1.6;
}

.checklist-card:hover {
  background: var(--color-lime-light);
}

/* Return Steps */
.return-steps {
  padding: 60px 0;
  background: var(--bg-accent);
}

.steps-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.steps-list {
  max-width: 800px;
  margin: 0 auto;
}

.steps-list .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.steps-list .step-icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.steps-list .step-content {
  flex: 1;
}

.steps-list .step-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.steps-list .step-text {
  font-size: 14px;
  line-height: 1.6;
}

.steps-list .step-item:hover {
  background: var(--color-purple-light);
}

/* Condition Guidelines */
.condition-guidelines {
  padding: 60px 0;
}

.conditions-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.conditions-content {
  position: relative;
}

.conditions-image {
  margin-bottom: 20px;
}

.conditions-text {
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-inverse);
  padding: 20px;
  border-radius: 5px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 400px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .conditions-text {
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-inverse);
    padding: 20px;
    border-radius: 5px;
    position: static;
    bottom: 20px;
    left: 20px;
    max-width: none;
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Return Form CTA */
.return-form-cta {
  padding: 60px 0;
  background: var(--bg-muted);
  text-align: center;
}

.cta-text {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.cta-link {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--text-inverse);
  text-decoration: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

.cta-link:hover {
  background: var(--color-secondary);
}

/* Exceptions Table */
.exceptions-table {
  padding: 60px 0;
}

.exceptions-intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}

.exceptions-grid {
  display: grid;
  gap: 20px;
}

.exception-item {
  padding: 20px;
  background: var(--bg-default);
  border-radius: 10px;
}

.exception-title {
  font-size: var(--font-size-base);
  margin-bottom: 10px;
}

.exception-text {
  font-size: 14px;
  line-height: 1.6;
}

.exception-item:hover {
  background: var(--color-lime-light);
}

/* Contact Info */
.contact-info {
  padding: 60px 0;
  background: var(--bg-accent);
}

.contact-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.contact-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-link:hover {
  color: var(--color-secondary);
}

/* Footer Note */
.footer-note {
  padding: 60px 0;
}

.note-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (min-width: 768px) {
  .checklist-grid,
  .exceptions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .conditions-text {
    position: static;
    max-width: 100%;
  }
}

/* Hero (Privacy, Terms, Thanks) */
.hero-privacy,
.hero-terms,
.hero-thanks {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 100px 0;
  text-align: center;
}

/* Privacy Policy Sections */
.privacy-overview,
.data-collection,
.data-protection,
.user-rights {
  padding: 60px 0;
  background: var(--bg-muted);
}

.privacy-overview .overview-content,
.data-collection .collection-content,
.data-protection .protection-content,
.user-rights .rights-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.data-collection,
.user-rights {
  background: var(--bg-accent);
}

/* Terms and Conditions Sections */
.terms-overview,
.user-responsibilities,
.service-limitations,
.dispute-resolution {
  padding: 60px 0;
  background: var(--bg-muted);
}

.terms-overview .overview-content,
.user-responsibilities .responsibilities-content,
.service-limitations .limitations-content,
.dispute-resolution .dispute-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.user-responsibilities,
.dispute-resolution {
  background: var(--bg-accent);
}

/* Thanks Form Sections */
.thanks-message,
.next-steps {
  padding: 60px 0;
  background: var(--bg-muted);
}

.thanks-message .message-content,
.next-steps .steps-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.next-steps {
  background: var(--bg-accent);
}

/* Contact Info (Shared across pages) */
.contact-info {
  padding: 60px 0;
  background: var(--bg-muted);
}

.contact-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

.contact-link {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-link:hover {
  color: var(--color-secondary);
}

/* Cart Section */
.cart {
  padding: 60px 0;
  background: var(--bg-muted);
}

.cart-empty {
  text-align: center;
  padding: 40px;
  background: var(--bg-default);
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.cart-empty h2 {
  font-size: var(--font-size-large);
  margin-bottom: 20px;
}

.cart-table {
  margin-top: 40px;
}

.cart-wrapper {
  background: var(--bg-default);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.cart-table table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-secondary);
}

.cart-table th {
  font-family: var(--font-alt);
  text-transform: uppercase;
  color: var(--text-light);
}

.cart-table td {
  vertical-align: middle;
}

.cart-table tbody tr:hover {
  background: var(--color-lime-light);
}

.cart-summary {
  text-align: right;
  font-size: var(--font-size-base);
  padding: 15px;
  font-family: var(--font-alt);
}

.cart-summary strong {
  color: var(--color-primary);
}

.btn-wrap {
  text-align: center;
}

.btn.btn--primary {
  display: inline-block;
  padding: 15px 30px;
  background: var(--color-primary);
  color: var(--text-inverse);
  text-decoration: none;
  border-radius: 5px;
  font-family: var(--font-alt);
  text-transform: uppercase;
}

.btn.btn--primary:hover {
  background: var(--color-secondary);
}

/* Checkout Section */
.checkout {
  padding: 60px 0;
  background: var(--bg-accent);
}

.checkout-wrapper {
  background: var(--bg-default);
  padding: 20px;
  border-radius: 10px;
}

.checkout table {
  width: 100%;
  border-collapse: collapse;
}

.checkout th,
.checkout td {
  padding: 15px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-secondary);
}

.checkout th {
  font-family: var(--font-alt);
  text-transform: uppercase;
  color: var(--text-light);
}

.checkout td {
  vertical-align: middle;
}

.checkout tbody tr:hover {
  background: var(--color-purple-light);
}

.checkout .cart-summary {
  text-align: right;
  font-size: var(--font-size-base);
  padding: 15px;
  font-family: var(--font-alt);
}

.checkout .cart-summary strong {
  color: var(--color-primary);
}

/* Checkout Form Section */
.checkout-form {
  padding: 60px 0;
  background: var(--bg-muted);
}

.checkout-form .form {
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-cell {
  display: flex;
  flex-direction: column;
}

.form-input {
  padding: 10px;
  border: 1px solid var(--border-secondary);
  border-radius: 5px;
  font-size: 14px;
}

.form-input::placeholder {
  color: var(--text-light);
}

.checkout-form .form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin: 1.5rem 0;
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
}

.form__checkbox a:hover {
  color: var(--color-secondary);
}

.btn-remove {
  padding: 0;
  background: url(img/del.svg) center/cover no-repeat;
  width: 30px;
  height: 30px;
}

/* Responsive */
@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .cart-table th,
  .cart-table td,
  .checkout th,
  .checkout td {
    padding: 10px;
    font-size: 12px;
  }

  .cart-summary,
  .checkout .cart-summary {
    text-align: center;
  }
}
