/*
* stockcatalog Pilates - Main Stylesheet
* A drawn style, modern Pilates website for New Zealand
*/

/* ========== Variables ========== */
:root {
  /* Colors */
  --stockcatalog-primary: #CDC1FF;
  --stockcatalog-primary-light: #F5EFFF;
  --stockcatalog-primary-medium: #E5D9F2;
  --stockcatalog-primary-dark: #A294F9;
  --stockcatalog-text: #3A3A3A;
  --stockcatalog-text-light: #6A6A6A;
  --stockcatalog-white: #FFFFFF;
  --stockcatalog-light-gray: #F7F7F7;
  --stockcatalog-gray: #E0E0E0;
  --stockcatalog-dark-gray: #555555;
  --stockcatalog-success: #4CAF50;
  --stockcatalog-warning: #FFC107;
  --stockcatalog-error: #F44336;

  /* Typography */
  --stockcatalog-font-primary: 'Quicksand', sans-serif;
  --stockcatalog-font-accent: 'Caveat', cursive;
  --stockcatalog-font-size-xs: 0.75rem;
  --stockcatalog-font-size-sm: 0.875rem;
  --stockcatalog-font-size-md: 1rem;
  --stockcatalog-font-size-lg: 1.25rem;
  --stockcatalog-font-size-xl: 1.5rem;
  --stockcatalog-font-size-2xl: 2rem;
  --stockcatalog-font-size-3xl: 2.5rem;
  --stockcatalog-line-height: 1.6;

  /* Spacing */
  --stockcatalog-space-xs: 0.25rem;
  --stockcatalog-space-sm: 0.5rem;
  --stockcatalog-space-md: 1rem;
  --stockcatalog-space-lg: 2rem;
  --stockcatalog-space-xl: 3rem;
  --stockcatalog-space-2xl: 4rem;
  --stockcatalog-space-3xl: 6rem;

  /* Border Radius */
  --stockcatalog-radius-sm: 4px;
  --stockcatalog-radius-md: 8px;
  --stockcatalog-radius-lg: 16px;
  --stockcatalog-radius-xl: 24px;
  --stockcatalog-radius-full: 9999px;

  /* Shadows */
  --stockcatalog-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --stockcatalog-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --stockcatalog-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.07), 0 4px 6px rgba(0, 0, 0, 0.05);
  --stockcatalog-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --stockcatalog-transition-fast: 150ms ease;
  --stockcatalog-transition-normal: 300ms ease;
  --stockcatalog-transition-slow: 500ms ease;

  /* Breakpoints */
  --stockcatalog-bp-xs: 320px;
  /* Extra small devices */
  --stockcatalog-bp-sm: 576px;
  /* Small devices */
  --stockcatalog-bp-md: 768px;
  /* Medium devices */
  --stockcatalog-bp-lg: 992px;
  /* Large devices */
  --stockcatalog-bp-xl: 1200px;
  /* Extra large devices */

  /* Container widths */
  --stockcatalog-container-xs: 100%;
  /* For extra small devices */
  --stockcatalog-container-sm: 540px;
  --stockcatalog-container-md: 720px;
  --stockcatalog-container-lg: 960px;
  --stockcatalog-container-xl: 1140px;
}

/* ========== Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--stockcatalog-font-primary);
  color: var(--stockcatalog-text);
  line-height: var(--stockcatalog-line-height);
  background-color: var(--stockcatalog-white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  /* Prevent font scaling in landscape */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--stockcatalog-primary-dark);
  text-decoration: none;
  transition: color var(--stockcatalog-transition-fast);
  touch-action: manipulation;
  /* Improves touch response */
}

a:hover,
a:focus {
  color: var(--stockcatalog-primary);
  text-decoration: underline;
}

ul,
ol {
  list-style-position: inside;
  margin-bottom: var(--stockcatalog-space-md);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: var(--stockcatalog-space-md);
  font-weight: 700;
  line-height: 1.2;
}

/* Responsive typography for smaller screens */
@media (max-width: 576px) {
  h1 {
    font-size: calc(var(--stockcatalog-font-size-2xl) + 0.2rem);
  }

  h2 {
    font-size: var(--stockcatalog-font-size-xl);
  }

  h3 {
    font-size: var(--stockcatalog-font-size-lg);
  }
}

@media (min-width: 577px) {
  h1 {
    font-size: var(--stockcatalog-font-size-3xl);
  }

  h2 {
    font-size: var(--stockcatalog-font-size-2xl);
  }

  h3 {
    font-size: var(--stockcatalog-font-size-xl);
  }
}

p {
  margin-bottom: var(--stockcatalog-space-md);
}

/* ========== Container ========== */
.stockcatalog-container {
  width: 100%;
  padding-right: var(--stockcatalog-space-md);
  padding-left: var(--stockcatalog-space-md);
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

/* Extra small devices (phones, below 576px) */
@media (max-width: 575.98px) {
  .stockcatalog-container {
    padding-right: var(--stockcatalog-space-sm);
    padding-left: var(--stockcatalog-space-sm);
  }

  /* Adjust spacing for better mobile view */
  section {
    padding-top: var(--stockcatalog-space-xl);
    padding-bottom: var(--stockcatalog-space-xl);
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .stockcatalog-container {
    max-width: var(--stockcatalog-container-sm);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .stockcatalog-container {
    max-width: var(--stockcatalog-container-md);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .stockcatalog-container {
    max-width: var(--stockcatalog-container-lg);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .stockcatalog-container {
    max-width: var(--stockcatalog-container-xl);
  }
}

/* ========== Header ========== */
.stockcatalog-header {
  padding: var(--stockcatalog-space-md) 0;
  border-bottom: 2px solid var(--stockcatalog-primary-light);
  position: relative;
  background-color: var(--stockcatalog-white);
  transition: transform var(--stockcatalog-transition-normal);
}

.stockcatalog-header.stockcatalog-header-hidden {
  transform: translateY(-100%);
}

.stockcatalog-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.stockcatalog-logo {
  font-family: var(--stockcatalog-font-accent);
  font-size: var(--stockcatalog-font-size-xl);
  font-weight: 700;
}

.stockcatalog-logo img {
  width: 7rem;
  position: relative;
  z-index: 20;
}

.stockcatalog-logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.stockcatalog-logo:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .stockcatalog-logo img {
    width: 5rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .stockcatalog-logo img {
    width: 5rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .stockcatalog-logo img {
    width: 4rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .stockcatalog-logo img {
    width: 4rem;
    position: relative;
    z-index: 20;
  }
}

.stockcatalog-nav {
  display: none;
  width: 100%;
  margin-top: var(--stockcatalog-space-md);
}

.stockcatalog-nav.stockcatalog-nav-active {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stockcatalog-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

.stockcatalog-nav-list li {
  margin-bottom: var(--stockcatalog-space-sm);
}

.stockcatalog-nav-list li a {
  display: block;
  padding: var(--stockcatalog-space-sm) var(--stockcatalog-space-md);
  color: var(--stockcatalog-text);
  text-decoration: none;
  border-radius: var(--stockcatalog-radius-sm);
  transition: all var(--stockcatalog-transition-fast);
  font-weight: 500;
}

.stockcatalog-nav-list li a:hover,
.stockcatalog-nav-list li a:focus,
.stockcatalog-nav-list li a.stockcatalog-active {
  background-color: var(--stockcatalog-primary-light);
  color: var(--stockcatalog-primary-dark);
}

.stockcatalog-menu-toggle {
  background: none;
  border: none;
  font-size: var(--stockcatalog-font-size-xl);
  color: var(--stockcatalog-primary-dark);
  cursor: pointer;
  padding: var(--stockcatalog-space-xs);
  min-width: 44px;
  /* Minimum touch target size */
  min-height: 44px;
  /* Minimum touch target size */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .stockcatalog-nav {
    display: block;
    width: auto;
    margin-top: 0;
  }

  .stockcatalog-nav-list {
    flex-direction: row;
  }

  .stockcatalog-nav-list li {
    margin-bottom: 0;
    margin-left: var(--stockcatalog-space-md);
  }

  .stockcatalog-menu-toggle {
    display: none;
  }
}

/* ========== Hero Section ========== */
.stockcatalog-hero {
  padding: var(--stockcatalog-space-xl) 0;
  background-color: var(--stockcatalog-primary-light);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .stockcatalog-hero {
    padding: var(--stockcatalog-space-2xl) 0;
  }
}

.stockcatalog-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--stockcatalog-primary-medium);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

.stockcatalog-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--stockcatalog-primary-medium);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.stockcatalog-hero .stockcatalog-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stockcatalog-hero-content {
  max-width: 600px;
  margin-bottom: var(--stockcatalog-space-lg);
}

@media (min-width: 768px) {
  .stockcatalog-hero-content {
    margin-bottom: var(--stockcatalog-space-xl);
  }
}

.stockcatalog-hero h1 {
  margin-bottom: var(--stockcatalog-space-md);
  color: var(--stockcatalog-text);
  position: relative;
}

.stockcatalog-hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

@media (min-width: 768px) {
  .stockcatalog-hero h1::after {
    width: 80px;
  }
}

.stockcatalog-hero p {
  font-size: var(--stockcatalog-font-size-md);
  color: var(--stockcatalog-text-light);
  margin-bottom: var(--stockcatalog-space-lg);
}

@media (min-width: 768px) {
  .stockcatalog-hero p {
    font-size: var(--stockcatalog-font-size-lg);
  }
}

.stockcatalog-hero-image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: var(--stockcatalog-radius-lg);
  overflow: hidden;
  box-shadow: var(--stockcatalog-shadow-lg);
}

@media (min-width: 768px) {
  .stockcatalog-hero-image {
    max-width: 500px;
  }
}

.stockcatalog-hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 992px) {
  .stockcatalog-hero .stockcatalog-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }

  .stockcatalog-hero-content {
    flex: 1;
    margin-right: var(--stockcatalog-space-xl);
    margin-bottom: 0;
  }

  .stockcatalog-hero h1::after {
    left: 0;
    transform: none;
  }

  .stockcatalog-hero-image {
    flex: 1;
  }
}

/* ========== Page Hero ========== */
.stockcatalog-page-hero {
  padding: var(--stockcatalog-space-xl) 0;
  background-color: var(--stockcatalog-primary-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stockcatalog-page-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background-color: var(--stockcatalog-primary-medium);
  border-radius: 50%;
  opacity: 0.3;
}

.stockcatalog-page-hero h1 {
  margin-bottom: var(--stockcatalog-space-md);
  position: relative;
  display: inline-block;
}

.stockcatalog-page-hero h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

.stockcatalog-page-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--stockcatalog-text-light);
}

/* ========== Benefits Section ========== */
.stockcatalog-benefits {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-white);
  text-align: center;
}

.stockcatalog-benefits h2 {
  margin-bottom: var(--stockcatalog-space-xl);
  position: relative;
  display: inline-block;
}

.stockcatalog-benefits h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

.stockcatalog-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stockcatalog-space-lg);
  margin-top: var(--stockcatalog-space-xl);
}

.stockcatalog-benefit-card {
  background-color: var(--stockcatalog-white);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-xl);
  box-shadow: var(--stockcatalog-shadow-md);
  transition: transform var(--stockcatalog-transition-normal), box-shadow var(--stockcatalog-transition-normal);
  position: relative;
  z-index: 1;
}

.stockcatalog-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--stockcatalog-primary-light);
  border-radius: var(--stockcatalog-radius-lg);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--stockcatalog-transition-normal);
}

.stockcatalog-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--stockcatalog-shadow-lg);
}

.stockcatalog-benefit-card:hover::before {
  opacity: 1;
}

.stockcatalog-benefit-icon {
  font-size: 2.5rem;
  color: var(--stockcatalog-primary-dark);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-benefit-card h3 {
  margin-bottom: var(--stockcatalog-space-md);
  font-size: var(--stockcatalog-font-size-lg);
}

.stockcatalog-benefit-card p {
  color: var(--stockcatalog-text-light);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .stockcatalog-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== Featured Section ========== */
.stockcatalog-featured {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-light-gray);
  text-align: center;
}

.stockcatalog-featured h2 {
  margin-bottom: var(--stockcatalog-space-xl);
  position: relative;
  display: inline-block;
}

.stockcatalog-featured h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

.stockcatalog-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stockcatalog-space-lg);
  margin-top: var(--stockcatalog-space-xl);
}

.stockcatalog-product-card {
  background-color: var(--stockcatalog-white);
  border-radius: var(--stockcatalog-radius-lg);
  overflow: hidden;
  box-shadow: var(--stockcatalog-shadow-md);
  transition: transform var(--stockcatalog-transition-normal), box-shadow var(--stockcatalog-transition-normal);
}

.stockcatalog-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--stockcatalog-shadow-lg);
}

.stockcatalog-product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.stockcatalog-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--stockcatalog-transition-normal);
}

.stockcatalog-product-card:hover .stockcatalog-product-image img {
  transform: scale(1.05);
}

.stockcatalog-product-content {
  padding: var(--stockcatalog-space-lg);
  text-align: left;
}

.stockcatalog-product-content h3 {
  margin-bottom: var(--stockcatalog-space-sm);
  font-size: var(--stockcatalog-font-size-lg);
}

.stockcatalog-price {
  color: var(--stockcatalog-primary-dark);
  font-weight: 700;
  font-size: var(--stockcatalog-font-size-lg);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-product-content p {
  color: var(--stockcatalog-text-light);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-featured-cta {
  margin-top: var(--stockcatalog-space-xl);
}

@media (min-width: 768px) {
  .stockcatalog-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Products Page ========== */
.stockcatalog-products {
  padding: var(--stockcatalog-space-2xl) 0;
}

.stockcatalog-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stockcatalog-space-xl);
}

.stockcatalog-product-featured {
  display: flex;
  flex-direction: column;
}

.stockcatalog-product-details {
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-product-details ul {
  margin-left: var(--stockcatalog-space-md);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-product-details li {
  margin-bottom: var(--stockcatalog-space-xs);
}

@media (min-width: 992px) {
  .stockcatalog-product-featured {
    flex-direction: row;
  }

  .stockcatalog-product-featured .stockcatalog-product-image {
    width: 40%;
    height: auto;
    min-height: 300px;
  }

  .stockcatalog-product-featured .stockcatalog-product-content {
    width: 60%;
    padding: var(--stockcatalog-space-xl);
  }
}

/* ========== Why Us Section ========== */
.stockcatalog-why-us {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-primary-light);
  text-align: center;
}

.stockcatalog-why-us h2 {
  margin-bottom: var(--stockcatalog-space-xl);
  position: relative;
  display: inline-block;
}

.stockcatalog-why-us h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

.stockcatalog-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stockcatalog-space-lg);
  margin-top: var(--stockcatalog-space-xl);
}

.stockcatalog-why-item {
  background-color: var(--stockcatalog-white);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-lg);
  box-shadow: var(--stockcatalog-shadow-sm);
  transition: transform var(--stockcatalog-transition-normal), box-shadow var(--stockcatalog-transition-normal);
}

.stockcatalog-why-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--stockcatalog-shadow-md);
}

.stockcatalog-why-icon {
  font-size: 2rem;
  color: var(--stockcatalog-primary-dark);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-why-item h3 {
  margin-bottom: var(--stockcatalog-space-sm);
  font-size: var(--stockcatalog-font-size-lg);
}

.stockcatalog-why-item p {
  color: var(--stockcatalog-text-light);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .stockcatalog-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .stockcatalog-why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== CTA Section ========== */
.stockcatalog-cta {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-primary-dark);
  position: relative;
  overflow: hidden;
}

.stockcatalog-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--stockcatalog-primary);
  border-radius: 50%;
  opacity: 0.2;
}

.stockcatalog-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stockcatalog-cta h2 {
  color: var(--stockcatalog-white);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-cta p {
  color: var(--stockcatalog-white);
  opacity: 0.9;
  margin-bottom: var(--stockcatalog-space-lg);
}

/* ========== Testimonials Section ========== */
.stockcatalog-testimonials {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-white);
  text-align: center;
}

.stockcatalog-testimonials h2 {
  margin-bottom: var(--stockcatalog-space-xl);
  position: relative;
  display: inline-block;
}

.stockcatalog-testimonials h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

.stockcatalog-testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.stockcatalog-testimonial {
  background-color: var(--stockcatalog-primary-light);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-xl);
  margin: var(--stockcatalog-space-md);
  position: relative;
  box-shadow: var(--stockcatalog-shadow-md);
  display: none;
}

.stockcatalog-testimonial.stockcatalog-active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.stockcatalog-testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--stockcatalog-primary);
  font-family: var(--stockcatalog-font-accent);
  opacity: 0.3;
  line-height: 1;
}

.stockcatalog-testimonial-content {
  font-style: italic;
  margin-bottom: var(--stockcatalog-space-md);
  position: relative;
  z-index: 1;
}

.stockcatalog-testimonial-author {
  font-weight: 500;
}

.stockcatalog-testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: var(--stockcatalog-space-md);
}

.stockcatalog-testimonial-btn {
  background: none;
  border: none;
  font-size: var(--stockcatalog-font-size-xl);
  color: var(--stockcatalog-primary-dark);
  cursor: pointer;
  padding: var(--stockcatalog-space-sm);
  margin: 0 var(--stockcatalog-space-sm);
  border-radius: var(--stockcatalog-radius-full);
  transition: background-color var(--stockcatalog-transition-fast);
}

.stockcatalog-testimonial-btn:hover {
  background-color: var(--stockcatalog-primary-light);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ========== Contact Section ========== */
.stockcatalog-contact {
  padding: var(--stockcatalog-space-2xl) 0;
}

.stockcatalog-contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--stockcatalog-space-xl);
}

.stockcatalog-contact-info {
  flex: 1;
}

.stockcatalog-contact-card {
  background-color: var(--stockcatalog-primary-light);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-xl);
  box-shadow: var(--stockcatalog-shadow-md);
  text-align: center;
}

.stockcatalog-contact-illustration {
  max-width: 200px;
  margin: 0 auto var(--stockcatalog-space-lg);
  border-radius: var(--stockcatalog-radius-full);
  overflow: hidden;
}

.stockcatalog-contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-contact-detail i {
  font-size: var(--stockcatalog-font-size-xl);
  color: var(--stockcatalog-primary-dark);
  margin-right: var(--stockcatalog-space-sm);
}

.stockcatalog-social-links {
  display: flex;
  justify-content: center;
  margin-top: var(--stockcatalog-space-lg);
}

.stockcatalog-social-link {
  font-size: var(--stockcatalog-font-size-xl);
  color: var(--stockcatalog-primary-dark);
  margin: 0 var(--stockcatalog-space-sm);
  transition: color var(--stockcatalog-transition-fast);
}

.stockcatalog-social-link:hover {
  color: var(--stockcatalog-primary);
}

.stockcatalog-contact-form-container {
  flex: 1;
}

.stockcatalog-form-header {
  margin-bottom: var(--stockcatalog-space-lg);
  text-align: center;
}

.stockcatalog-contact-form {
  background-color: var(--stockcatalog-white);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-xl);
  box-shadow: var(--stockcatalog-shadow-md);
}

.stockcatalog-form-group {
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-form-group label {
  display: block;
  margin-bottom: var(--stockcatalog-space-sm);
  font-weight: 500;
}

.stockcatalog-form-group input,
.stockcatalog-form-group textarea {
  width: 100%;
  padding: var(--stockcatalog-space-md);
  border: 1px solid var(--stockcatalog-gray);
  border-radius: var(--stockcatalog-radius-md);
  background-color: var(--stockcatalog-white);
  font-family: var(--stockcatalog-font-primary);
  font-size: var(--stockcatalog-font-size-md);
  transition: border-color var(--stockcatalog-transition-fast);
}

.stockcatalog-form-group input:focus,
.stockcatalog-form-group textarea:focus {
  border-color: var(--stockcatalog-primary);
  outline: none;
}

.stockcatalog-consent-group {
  display: flex;
  align-items: flex-start;
}

.stockcatalog-consent-group input {
  width: auto;
  margin-right: var(--stockcatalog-space-sm);
  margin-top: 5px;
}

.stockcatalog-consent-group label {
  margin-bottom: 0;
  font-size: var(--stockcatalog-font-size-sm);
  flex: 1;
}

@media (min-width: 992px) {
  .stockcatalog-contact-wrapper {
    flex-direction: row;
  }

  .stockcatalog-contact-card {
    text-align: left;
  }

  .stockcatalog-contact-illustration {
    margin-left: 0;
  }

  .stockcatalog-contact-detail {
    justify-content: flex-start;
  }

  .stockcatalog-social-links {
    justify-content: flex-start;
  }

  .stockcatalog-form-header {
    text-align: left;
  }
}

/* ========== Map Section ========== */
.stockcatalog-map {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-light-gray);
  text-align: center;
}

.stockcatalog-map h2 {
  margin-bottom: var(--stockcatalog-space-lg);
}

.stockcatalog-map-container {
  border-radius: var(--stockcatalog-radius-lg);
  overflow: hidden;
  box-shadow: var(--stockcatalog-shadow-md);
}

/* ========== Studio Hours Section ========== */
.stockcatalog-studio-hours {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-white);
  text-align: center;
}

.stockcatalog-hours-content {
  max-width: 800px;
  margin: 0 auto;
}

.stockcatalog-hours-content h2 {
  margin-bottom: var(--stockcatalog-space-xl);
  position: relative;
  display: inline-block;
}

.stockcatalog-hours-content h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

.stockcatalog-hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stockcatalog-space-lg);
  margin-top: var(--stockcatalog-space-xl);
}

.stockcatalog-hours-day {
  background-color: var(--stockcatalog-primary-light);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-lg);
  box-shadow: var(--stockcatalog-shadow-sm);
}

.stockcatalog-hours-day h3 {
  margin-bottom: var(--stockcatalog-space-sm);
  color: var(--stockcatalog-primary-dark);
}

.stockcatalog-hours-day p {
  margin-bottom: 0;
  font-weight: 500;
}

.stockcatalog-hours-note {
  margin-top: var(--stockcatalog-space-lg);
  font-style: italic;
  color: var(--stockcatalog-text-light);
}

@media (min-width: 768px) {
  .stockcatalog-hours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== Thank You Page ========== */
.stockcatalog-thank-you {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-primary-light);
  text-align: center;
}

.stockcatalog-thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.stockcatalog-thank-you-icon {
  font-size: 4rem;
  color: var(--stockcatalog-success);
  margin-bottom: var(--stockcatalog-space-lg);
  animation: bounce 2s infinite;
}

.stockcatalog-thank-message {
  font-size: var(--stockcatalog-font-size-lg);
  margin-bottom: var(--stockcatalog-space-xl);
}

.stockcatalog-thank-illustration {
  max-width: 300px;
  margin: 0 auto var(--stockcatalog-space-xl);
  border-radius: var(--stockcatalog-radius-lg);
  overflow: hidden;
  box-shadow: var(--stockcatalog-shadow-md);
}

.stockcatalog-thank-you-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--stockcatalog-space-md);
}

@media (min-width: 576px) {
  .stockcatalog-thank-you-actions {
    flex-direction: row;
    justify-content: center;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}

/* ========== What's Next Section ========== */
.stockcatalog-whats-next {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-white);
  text-align: center;
}

.stockcatalog-whats-next h2 {
  margin-bottom: var(--stockcatalog-space-xl);
  position: relative;
  display: inline-block;
}

.stockcatalog-whats-next h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--stockcatalog-primary);
  border-radius: var(--stockcatalog-radius-full);
}

.stockcatalog-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stockcatalog-space-lg);
  margin-top: var(--stockcatalog-space-xl);
}

.stockcatalog-step-card {
  background-color: var(--stockcatalog-light-gray);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-xl);
  box-shadow: var(--stockcatalog-shadow-sm);
  position: relative;
}

.stockcatalog-step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--stockcatalog-primary-dark);
  color: var(--stockcatalog-white);
  border-radius: var(--stockcatalog-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--stockcatalog-font-size-lg);
}

.stockcatalog-step-card h3 {
  margin-top: var(--stockcatalog-space-md);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-step-card p {
  color: var(--stockcatalog-text-light);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .stockcatalog-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== Newsletter Section ========== */
.stockcatalog-newsletter {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-primary-light);
}

.stockcatalog-newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.stockcatalog-newsletter h2 {
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-newsletter p {
  margin-bottom: var(--stockcatalog-space-lg);
}

.stockcatalog-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--stockcatalog-space-md);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-newsletter-form input {
  padding: var(--stockcatalog-space-md);
  border: 1px solid var(--stockcatalog-gray);
  border-radius: var(--stockcatalog-radius-md);
  font-family: var(--stockcatalog-font-primary);
  font-size: var(--stockcatalog-font-size-md);
}

.stockcatalog-newsletter-form input:focus {
  border-color: var(--stockcatalog-primary);
  outline: none;
}

.stockcatalog-newsletter-privacy {
  font-size: var(--stockcatalog-font-size-sm);
  color: var(--stockcatalog-text-light);
}

@media (min-width: 576px) {
  .stockcatalog-newsletter-form {
    flex-direction: row;
  }

  .stockcatalog-newsletter-form input {
    flex: 1;
  }
}

/* ========== Error Page ========== */
.stockcatalog-error-page {
  padding: var(--stockcatalog-space-3xl) 0;
  background-color: var(--stockcatalog-primary-light);
  text-align: center;
}

.stockcatalog-error-content {
  max-width: 600px;
  margin: 0 auto;
}

.stockcatalog-error-illustration {
  max-width: 250px;
  margin: 0 auto var(--stockcatalog-space-xl);
}

.stockcatalog-error-message {
  font-size: var(--stockcatalog-font-size-lg);
  margin-bottom: var(--stockcatalog-space-lg);
}

.stockcatalog-error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--stockcatalog-primary-dark);
  opacity: 0.3;
  margin-bottom: var(--stockcatalog-space-lg);
  line-height: 1;
}

.stockcatalog-error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--stockcatalog-space-md);
}

@media (min-width: 576px) {
  .stockcatalog-error-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ========== Suggested Pages ========== */
.stockcatalog-suggested-pages {
  padding: var(--stockcatalog-space-2xl) 0;
  background-color: var(--stockcatalog-white);
  text-align: center;
}

.stockcatalog-suggested-pages h2 {
  margin-bottom: var(--stockcatalog-space-xl);
}

.stockcatalog-suggested-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--stockcatalog-space-lg);
  margin-top: var(--stockcatalog-space-lg);
}

.stockcatalog-suggested-card {
  background-color: var(--stockcatalog-light-gray);
  border-radius: var(--stockcatalog-radius-lg);
  padding: var(--stockcatalog-space-lg);
  box-shadow: var(--stockcatalog-shadow-sm);
  transition: transform var(--stockcatalog-transition-normal), box-shadow var(--stockcatalog-transition-normal);
}

.stockcatalog-suggested-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--stockcatalog-shadow-md);
}

.stockcatalog-suggested-card i {
  font-size: 2rem;
  color: var(--stockcatalog-primary-dark);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-suggested-card h3 {
  margin-bottom: var(--stockcatalog-space-sm);
}

.stockcatalog-suggested-card p {
  color: var(--stockcatalog-text-light);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-suggested-card a {
  display: inline-block;
  font-weight: 600;
  color: var(--stockcatalog-primary-dark);
  position: relative;
}

.stockcatalog-suggested-card a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--stockcatalog-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--stockcatalog-transition-normal);
}

.stockcatalog-suggested-card a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (min-width: 768px) {
  .stockcatalog-suggested-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========== Policy Content ========== */
.stockcatalog-policy-content {
  padding: var(--stockcatalog-space-2xl) 0;
}

.stockcatalog-policy-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.stockcatalog-policy-section {
  margin-bottom: var(--stockcatalog-space-xl);
}

.stockcatalog-policy-section h2 {
  color: var(--stockcatalog-primary-dark);
  margin-bottom: var(--stockcatalog-space-md);
  border-bottom: 1px solid var(--stockcatalog-gray);
  padding-bottom: var(--stockcatalog-space-sm);
}

.stockcatalog-policy-section ul {
  margin-left: var(--stockcatalog-space-lg);
  margin-bottom: var(--stockcatalog-space-md);
}

.stockcatalog-policy-section li {
  margin-bottom: var(--stockcatalog-space-xs);
}

/* ========== Privacy Popup ========== */
.stockcatalog-privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--stockcatalog-primary-light);
  padding: var(--stockcatalog-space-lg);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.stockcatalog-privacy-popup.stockcatalog-active {
  display: block;
  animation: slideUp 0.5s ease-in-out;
}

.stockcatalog-privacy-popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stockcatalog-privacy-popup h3 {
  margin-bottom: var(--stockcatalog-space-sm);
}

.stockcatalog-privacy-popup p {
  margin-bottom: var(--stockcatalog-space-md);
}

@media (min-width: 768px) {
  .stockcatalog-privacy-popup-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .stockcatalog-privacy-popup p {
    margin-bottom: 0;
    margin-right: var(--stockcatalog-space-lg);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

/* ========== Buttons ========== */
.stockcatalog-btn {
  display: inline-block;
  padding: var(--stockcatalog-space-sm) var(--stockcatalog-space-lg);
  border-radius: var(--stockcatalog-radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--stockcatalog-transition-fast);
  text-decoration: none;
  border: none;
  font-family: var(--stockcatalog-font-primary);
  font-size: var(--stockcatalog-font-size-md);
}

.stockcatalog-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.stockcatalog-btn-primary {
  background-color: var(--stockcatalog-primary-dark);
  color: var(--stockcatalog-white);
  box-shadow: var(--stockcatalog-shadow-sm);
}

.stockcatalog-btn-primary:hover {
  background-color: var(--stockcatalog-primary);
  color: var(--stockcatalog-white);
  box-shadow: var(--stockcatalog-shadow-md);
}

.stockcatalog-btn-secondary {
  background-color: var(--stockcatalog-primary-medium);
  color: var(--stockcatalog-text);
  box-shadow: var(--stockcatalog-shadow-sm);
}

.stockcatalog-btn-secondary:hover {
  background-color: var(--stockcatalog-primary-light);
  color: var(--stockcatalog-text);
  box-shadow: var(--stockcatalog-shadow-md);
}

.stockcatalog-btn-light {
  background-color: var(--stockcatalog-white);
  color: var(--stockcatalog-primary-dark);
  box-shadow: var(--stockcatalog-shadow-sm);
}

.stockcatalog-btn-light:hover {
  background-color: var(--stockcatalog-primary-light);
  color: var(--stockcatalog-primary-dark);
  box-shadow: var(--stockcatalog-shadow-md);
}

.stockcatalog-btn-outline {
  background-color: transparent;
  color: var(--stockcatalog-primary-dark);
  border: 2px solid var(--stockcatalog-primary-dark);
}

.stockcatalog-btn-outline:hover {
  background-color: var(--stockcatalog-primary-dark);
  color: var(--stockcatalog-white);
}

/* ========== Footer ========== */
.stockcatalog-footer {
  padding: var(--stockcatalog-space-xl) 0;
  background-color: var(--stockcatalog-text);
  color: var(--stockcatalog-white);
}

.stockcatalog-footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--stockcatalog-space-lg);
}

.stockcatalog-footer-logo {
  margin-bottom: var(--stockcatalog-space-lg);
}

.stockcatalog-footer .stockcatalog-logo-text {
  color: var(--stockcatalog-white);
  background: linear-gradient(to right, var(--stockcatalog-primary-light), var(--stockcatalog-primary));
  -webkit-background-clip: text;
  background-clip: text;
}

.stockcatalog-footer-tagline {
  font-size: var(--stockcatalog-font-size-sm);
  color: var(--stockcatalog-primary-light);
  margin-top: var(--stockcatalog-space-xs);
}

.stockcatalog-footer-links {
  display: flex;
  gap: var(--stockcatalog-space-lg);
}

.stockcatalog-footer-links a {
  color: var(--stockcatalog-primary-light);
  text-decoration: none;
  transition: color var(--stockcatalog-transition-fast);
}

.stockcatalog-footer-links a:hover {
  color: var(--stockcatalog-white);
  text-decoration: none;
}

.stockcatalog-footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--stockcatalog-space-md);
  font-size: var(--stockcatalog-font-size-sm);
  color: var(--stockcatalog-gray);
}

@media (min-width: 768px) {
  .stockcatalog-footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  .stockcatalog-footer-logo {
    margin-bottom: 0;
  }
}