/* Stylverra Fitness Studio - Main Stylesheet */

/* Import unique fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Custom Properties */
:root {
  --stylverra-dark: #1A1A19;
  --stylverra-forest: #31511E;
  --stylverra-sage: #859F3D;
  --stylverra-cream: #F6FCDF;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  --stylverra-font-primary: 'Crimson Text', serif;
  --stylverra-font-secondary: 'Inter', sans-serif;
  
  --stylverra-radius: 8px;
  --stylverra-shadow: 0 4px 20px rgba(26, 26, 25, 0.1);
  --stylverra-shadow-lg: 0 8px 40px rgba(26, 26, 25, 0.15);
  
  --stylverra-container-width: 1200px;
  --stylverra-header-height: 80px;
}

/* Global Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--stylverra-font-secondary);
  line-height: 1.6;
  color: var(--stylverra-dark);
  background-color: var(--stylverra-cream);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--stylverra-font-primary);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(26, 26, 25, 0.1);
  margin-bottom: var(--space-md);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h5 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
h6 { font-size: clamp(1.1rem, 1.5vw, 1.2rem); }

p {
  margin-bottom: var(--space-sm);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

a {
  color: var(--stylverra-forest);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--stylverra-sage);
  text-shadow: 1px 1px 3px rgba(133, 159, 61, 0.3);
}

/* Header and Navigation */
.stylverra-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(246, 252, 223, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--space-sm) 0;
  box-shadow: var(--stylverra-shadow);
  transition: all 0.3s ease;
  height: var(--stylverra-header-height);
  display: flex;
  align-items: center;
}

.stylverra-nav-container {
  max-width: var(--stylverra-container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stylverra-logo {
  height: 40px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 155px;
}
.stylverra-logo text {
    font-size: 40px;
}

.stylverra-logo:hover {
  transform: scale(1.05);
}

.stylverra-nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

.stylverra-nav-link {
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--stylverra-radius);
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.stylverra-nav-link:hover {
  background: var(--stylverra-sage);
  color: var(--stylverra-cream);
  transform: translateY(-2px);
}

.stylverra-mobile-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: var(--space-xs);
  background: none;
  border: none;
  position: relative;
  z-index: 1001;
}

.stylverra-hamburger {
  width: 25px;
  height: 3px;
  background: var(--stylverra-forest);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Main Content */
.stylverra-main {
  margin-top: 0;
}

/* Hero Section */
.stylverra-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--stylverra-forest) 0%, var(--stylverra-sage) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--stylverra-cream);
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

.stylverra-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="%23F6FCDF" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23F6FCDF" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23F6FCDF" opacity="0.15"/></svg>') repeat;
  animation: stylverra-float 20s ease-in-out infinite;
}

.stylverra-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  padding: var(--space-xl);
}

.stylverra-hero h1 {
  margin-bottom: var(--space-lg);
  animation: stylverra-slideUp 1s ease-out;
}

.stylverra-hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-xl);
  animation: stylverra-slideUp 1s ease-out 0.3s both;
}

.stylverra-cta {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--stylverra-cream);
  color: var(--stylverra-forest);
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  text-shadow: none;
  box-shadow: var(--stylverra-shadow-lg);
  transition: all 0.3s ease;
  animation: stylverra-slideUp 1s ease-out 0.6s both;
  min-width: 200px;
  text-align: center;
  margin: 30px 0 0 0;
}

.stylverra-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(26, 26, 25, 0.2);
  color: var(--stylverra-forest);
}

/* Sections */
.stylverra-section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.stylverra-container {
  max-width: var(--stylverra-container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.stylverra-section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.stylverra-section-title {
  color: var(--stylverra-forest);
  margin-bottom: var(--space-md);
}

.stylverra-section-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.2rem);
  color: var(--stylverra-sage);
  max-width: 600px;
  margin: 0 auto;
}

/* Programs Grid */
.stylverra-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
}

.stylverra-program-card {
  background: white;
  border-radius: var(--stylverra-radius);
  padding: var(--space-xl);
  box-shadow: var(--stylverra-shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stylverra-program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--stylverra-shadow-lg);
}

.stylverra-program-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: var(--stylverra-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.stylverra-program-card:hover .stylverra-program-icon {
  background: var(--stylverra-forest);
  transform: scale(1.1);
}

/* Pricing Section */
.stylverra-pricing {
  background: linear-gradient(to bottom, var(--stylverra-cream), white);
}

.stylverra-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xxl);
}

.stylverra-pricing-card {
  background: white;
  border-radius: var(--stylverra-radius);
  padding: var(--space-xl);
  box-shadow: var(--stylverra-shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
justify-content: space-between;
flex-direction: column;
}

.stylverra-pricing-card.stylverra-featured {
  border: 3px solid var(--stylverra-sage);
  transform: scale(1.02);
}

.stylverra-pricing-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--stylverra-shadow-lg);
}

.stylverra-pricing-card.stylverra-featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.stylverra-price {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-family: var(--stylverra-font-primary);
  color: var(--stylverra-forest);
  margin: var(--space-md) 0;
}

.stylverra-price-period {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--stylverra-sage);
}

/* About Section */
.stylverra-about {
  background: var(--stylverra-forest);
  color: var(--stylverra-cream);
}

.stylverra-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.stylverra-about-content h2 {
  color: var(--stylverra-cream);
}

.stylverra-about-image {
  border-radius: var(--stylverra-radius);
  overflow: hidden;
  box-shadow: var(--stylverra-shadow-lg);
}

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

.stylverra-about-image:hover img {
  transform: scale(1.05);
}

/* Contact Section - Enhanced Responsive Design */
.stylverra-contact {
  background: white;
}

.stylverra-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: start;
}

.stylverra-contact-form {
  background: var(--stylverra-cream);
  padding: var(--space-xl);
  border-radius: var(--stylverra-radius);
  box-shadow: var(--stylverra-shadow);
  width: 100%;
}

.stylverra-contact-form h3 {
  margin-bottom: var(--space-lg);
  color: var(--stylverra-forest);
}

.stylverra-form-group {
  margin-bottom: var(--space-md);
}

.stylverra-form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--stylverra-forest);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.stylverra-form-input,
.stylverra-form-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid transparent;
  border-radius: var(--stylverra-radius);
  background: white;
  font-family: inherit;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.stylverra-form-input:focus,
.stylverra-form-textarea:focus {
  outline: none;
  border-color: var(--stylverra-sage);
  box-shadow: 0 0 0 3px rgba(133, 159, 61, 0.1);
}

.stylverra-form-button {
  background: var(--stylverra-forest);
  color: var(--stylverra-cream);
  border: none;
  padding: var(--space-md) var(--space-xl);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  width: 100%;
  min-height: 50px;
}

.stylverra-form-button:hover {
  background: var(--stylverra-sage);
  transform: translateY(-2px);
  box-shadow: var(--stylverra-shadow);
}

.stylverra-contact-info {
  padding: var(--space-xl);
}

.stylverra-contact-info h3 {
  margin-bottom: var(--space-lg);
  color: var(--stylverra-forest);
}

.stylverra-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--stylverra-cream);
  border-radius: var(--stylverra-radius);
  transition: all 0.3s ease;
}

.stylverra-contact-item:hover {
  transform: translateX(5px);
  box-shadow: var(--stylverra-shadow);
}

.stylverra-contact-icon {
  width: 50px;
  height: 50px;
  margin-right: var(--space-md);
  background: var(--stylverra-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stylverra-contact-item h4 {
  margin-bottom: var(--space-xs);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--stylverra-forest);
}

.stylverra-contact-item p {
  margin: 0;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--stylverra-dark);
  line-height: 1.4;
}

/* Footer */
.stylverra-footer {
  background: var(--stylverra-dark);
  color: var(--stylverra-cream);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.stylverra-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.stylverra-footer-section h4 {
  color: var(--stylverra-sage);
  margin-bottom: var(--space-md);
  font-size: clamp(1.1rem, 1.3vw, 1.2rem);
}

.stylverra-footer-section p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
}

.stylverra-footer-links {
  list-style: none;
}

.stylverra-footer-links li {
  margin-bottom: var(--space-xs);
}

.stylverra-footer-links a {
  color: var(--stylverra-cream);
  opacity: 0.8;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
}

.stylverra-footer-links a:hover {
  opacity: 1;
  color: var(--stylverra-sage);
}

.stylverra-footer-bottom {
  border-top: 1px solid rgba(246, 252, 223, 0.1);
  padding-top: var(--space-lg);
  text-align: center;
  opacity: 0.7;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}

/* Animations */
@keyframes stylverra-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stylverra-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.stylverra-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.stylverra-fade-in.stylverra-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Policy Pages Styles */
.stylverra-policy-page {
  padding: calc(var(--stylverra-header-height) + var(--space-xl)) 0 var(--space-xxl);
  background: white;
}

.stylverra-policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  font-size:42px;
}

.stylverra-policy-content h1 {
  color: var(--stylverra-forest);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.stylverra-policy-content h2 {
  color: var(--stylverra-sage);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.stylverra-policy-content p {
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.stylverra-policy-date {
  text-align: center;
  color: var(--stylverra-sage);
  font-style: italic;
  margin-bottom: var(--space-xxl);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
}

/* Thank You Page */
.stylverra-thankyou-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--stylverra-sage), var(--stylverra-forest));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stylverra-cream);
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.stylverra-thankyou-content {
  max-width: 600px;
  width: 100%;
  padding: var(--space-xl);
}

.stylverra-thankyou-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-xl);
  background: var(--stylverra-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: stylverra-slideUp 1s ease-out;
}

/* Responsive Design - Enhanced Mobile Experience */

/* Tablet Styles */
@media (max-width: 1024px) {


  .stylverra-nav-menu {
    gap: var(--space-xs);
    font-size: 0.8rem;
  }
  :root {
    --space-xl: 2.5rem;
    --space-xxl: 3.5rem;
  }
  
  .stylverra-about-grid,
  .stylverra-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .stylverra-programs-grid,
  .stylverra-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile Navigation */
@media (max-width: 768px) {
  :root {
    --space-sm: 1.2rem;
    --space-md: 1.8rem;
    --space-lg: 2.4rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    --stylverra-header-height: 70px;
  }
  
  .stylverra-mobile-toggle {
    display: flex;
  }
  
  .stylverra-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--stylverra-cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transition: left 0.3s ease;
    z-index: 999;
    padding: var(--space-xl);
  }
  
  .stylverra-nav-menu.stylverra-menu-active {
    left: 0;
  }
  
  .stylverra-mobile-toggle.stylverra-active .stylverra-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .stylverra-mobile-toggle.stylverra-active .stylverra-hamburger:nth-child(2) {
    opacity: 0;
  }
  
  .stylverra-mobile-toggle.stylverra-active .stylverra-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .stylverra-nav-link {
    font-size: 1.3rem;
    padding: var(--space-md);
    border-radius: 10px;
    min-width: 150px;
    text-align: center;
  }
  
  /* Hero adjustments */
  .stylverra-hero {
    min-height: 90vh;
    padding: var(--space-lg) var(--space-md);
  }
  
  .stylverra-hero-content {
    padding: var(--space-lg);
  }
  
  /* Programs grid mobile */
  .stylverra-programs-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .stylverra-program-icon {
    width: 90px;
    height: 90px;
  }
  
  /* Pricing grid mobile */
  .stylverra-pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .stylverra-pricing-card.stylverra-featured {
    transform: none;
    order: -1;
  }
  
  /* Contact section mobile improvements */
  .stylverra-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .stylverra-contact-form {
    padding: var(--space-lg);
    order: 2;
  }
  
  .stylverra-contact-info {
    padding: var(--space-lg);
    order: 1;
  }
  
  .stylverra-contact-item {
    padding: var(--space-md);
    flex-direction: row;
    align-items: center;
  }
  
  .stylverra-contact-icon {
    width: 60px;
    height: 60px;
    margin-right: var(--space-md);
    flex-shrink: 0;
  }
  

  
  /* Footer mobile */
  .stylverra-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  :root {
    --space-xs: 0.7rem;
    --space-sm: 1rem;
    --space-md: 1.4rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
    --space-xxl: 3rem;
    --stylverra-header-height: 65px;
  }
  
  .stylverra-container {
    padding: 0 var(--space-sm);
  }
  
  .stylverra-nav-container {
    padding: 0 var(--space-sm);
  }
  
  .stylverra-logo {
    height: 35px;
  }
  
  .stylverra-hero {
    min-height: 85vh;
    padding: var(--space-md);
  }
  
  .stylverra-hero-content {
    padding: var(--space-md);
  }
  
  .stylverra-cta {
    padding: var(--space-md) var(--space-lg);
    min-width: 180px;
  }
  
  .stylverra-program-card,
  .stylverra-pricing-card {
    padding: var(--space-lg);
  }
  
  .stylverra-section {
    padding: var(--space-xl) 0;
  }
  
  .stylverra-section-header {
    margin-bottom: var(--space-xl);
  }
  
  /* Contact improvements for small screens */
  .stylverra-contact-form,
  .stylverra-contact-info {
    padding: var(--space-md);
  }
  
  .stylverra-contact-item {
    padding: var(--space-sm);
    margin-bottom: var(--space-md);
  }
  
  .stylverra-contact-icon {
    width: 50px;
    height: 50px;
    margin-right: var(--space-sm);
  }
  
  .stylverra-form-button {
    padding: var(--space-sm) var(--space-md);
    min-height: 45px;
  }
  .stylverra-policy-content h1 {
    font-size: 35px;
}
}

/* Extra Small Screens (360px and below) */
@media (max-width: 360px) {
  :root {
    --space-xs: 0.6rem;
    --space-sm: 0.8rem;
    --space-md: 1.2rem;
    --space-lg: 1.8rem;
    --space-xl: 2.2rem;
    --space-xxl: 2.8rem;
    --stylverra-header-height: 60px;
  }
  
  .stylverra-container {
    padding: 0 var(--space-xs);
  }
  
  .stylverra-nav-container {
    padding: 0 var(--space-xs);
  }
  
  .stylverra-logo {
    height: 30px;
  }
  
  .stylverra-hero {
    padding: var(--space-sm);
  }
  
  .stylverra-hero-content {
    padding: var(--space-sm);
  }
  
  .stylverra-programs-grid {
    gap: var(--space-md);
  }
  
  .stylverra-program-icon {
    width: 70px;
    height: 70px;
  }
  
  .stylverra-program-card,
  .stylverra-pricing-card {
    padding: var(--space-md);
  }
  
  /* Contact section for extra small screens */
  .stylverra-contact-form,
  .stylverra-contact-info {
    padding: var(--space-sm);
  }
  
  .stylverra-contact-item {
    padding: var(--space-xs);
    margin-bottom: var(--space-sm);
    flex-direction: column;
    text-align: center;
  }
  
  .stylverra-contact-icon {
    width: 45px;
    height: 45px;
    margin-right: 0;
    margin-bottom: var(--space-xs);
  }
  
  .stylverra-form-group {
    margin-bottom: var(--space-sm);
  }
  
  .stylverra-form-input,
  .stylverra-form-textarea {
    padding: var(--space-xs);
  }
  
  .stylverra-form-button {
    padding: var(--space-xs) var(--space-sm);
    min-height: 40px;
  }
  
  .stylverra-footer {
    padding: var(--space-xl) 0 var(--space-md);
  }
  
  .stylverra-footer-grid {
    gap: var(--space-md);
  }
  
  .stylverra-thankyou-content {
    padding: var(--space-md);
  }
  
  .stylverra-thankyou-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
  }
}

/* Print Styles */
@media print {
  .stylverra-header,
  .stylverra-mobile-toggle,
  .stylverra-footer {
    display: none !important;
  }
  
  .stylverra-main {
    margin-top: 0 !important;
  }
  
  .stylverra-hero {
    min-height: auto !important;
    padding: 2rem !important;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --stylverra-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --stylverra-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

.stylverra-pricing-card.stylverra-fade-in.stylverra-visible ul {
    padding-left: 16px;
}