/* Shopolume Main Stylesheet */

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --shopolume-dark-blue: #5C7285;
  --shopolume-dark-green: #818C78;
  --shopolume-light-green: #A7B49E;
  --shopolume-cream: #E2E0C8;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Font sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-md: 1rem;
  --font-lg: 1.25rem;
  --font-xl: 1.5rem;
  --font-2xl: 2rem;
  --font-3xl: 2.5rem;
  --font-4xl: 3rem;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--shopolume-dark-blue);
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

h1 {
  font-size: var(--font-4xl);
}

h2 {
  font-size: var(--font-3xl);
}

h3 {
  font-size: var(--font-2xl);
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--shopolume-dark-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--shopolume-dark-blue);
}

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

/* Container */
.shopolume-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header */
.shopolume-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: var(--space-sm) 0;
  transition: all 0.3s ease;
}

.shopolume-header.scrolled {
  padding: var(--space-xs) 0;
  background-color: rgba(255, 255, 255, 0.98);
}

.shopolume-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shopolume-logo {
  display: block;
  width: 180px;
  transition: all 0.3s ease;
}

.shopolume-header.scrolled .shopolume-logo {
  width: 150px;
}

/* Navigation */
.shopolume-nav {
  display: flex;
  align-items: center;
}

.shopolume-nav-list {
  display: flex;
  list-style: none;
}

.shopolume-nav-item {
  margin-left: var(--space-md);
}

.shopolume-nav-link {
  font-weight: 500;
  font-size: var(--font-md);
  padding: var(--space-xs) var(--space-sm);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.shopolume-nav-link:hover {
  background-color: var(--shopolume-cream);
}

.shopolume-nav-link.active {
  color: var(--shopolume-dark-blue);
  background-color: var(--shopolume-cream);
}

.shopolume-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1001;
}

.shopolume-mobile-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--shopolume-dark-blue);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.shopolume-hero {
  padding-top: calc(80px + var(--space-xl));
  padding-bottom: var(--space-xl);
  background-color: var(--shopolume-cream);
  position: relative;
  overflow: hidden;
}

.shopolume-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.shopolume-hero-title {
  margin-bottom: var(--space-md);
  font-size: var(--font-4xl);
  color: var(--shopolume-dark-blue);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.shopolume-hero-subtitle {
  font-size: var(--font-xl);
  margin-bottom: var(--space-lg);
  color: var(--shopolume-dark-green);
}

.shopolume-button {
  display: inline-block;
  background-color: var(--shopolume-dark-green);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.shopolume-button:hover {
  background-color: var(--shopolume-dark-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

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

/* Features Section */
.shopolume-features {
  padding: var(--space-xl) 0;
}

.shopolume-section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.shopolume-section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-lg);
  color: var(--shopolume-dark-green);
}

.shopolume-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.shopolume-feature {
  text-align: center;
  padding: var(--space-md);
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.shopolume-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.shopolume-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
}

.shopolume-feature-title {
  margin-bottom: var(--space-sm);
  color: var(--shopolume-dark-blue);
}

/* Products Section */
.shopolume-products {
  padding: var(--space-xl) 0;
  background-color: var(--shopolume-cream);
}

.shopolume-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.shopolume-product {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  
}

.shopolume-product:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.shopolume-product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.shopolume-product-content {
  padding: var(--space-md);
}

.shopolume-product-title {
  margin-bottom: var(--space-xs);
}

.shopolume-product-price {
  font-size: var(--font-xl);
  font-weight: 700;
  color: var(--shopolume-dark-green);
  margin-bottom: var(--space-sm);
}

.shopolume-product-description {
  margin-bottom: var(--space-md);
}

/* Testimonials Section */
.shopolume-testimonials {
  padding: var(--space-xl) 0;
}

.shopolume-testimonials-container {
  position: relative;
  padding: var(--space-md) 0;
}

.shopolume-testimonial {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-md);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.shopolume-testimonial-text {
  font-size: var(--font-lg);
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
}

.shopolume-testimonial-text::before,
.shopolume-testimonial-text::after {
  content: '"';
  font-size: var(--font-3xl);
  color: var(--shopolume-light-green);
  position: absolute;
}

.shopolume-testimonial-text::before {
  left: -20px;
  top: -10px;
}

.shopolume-testimonial-text::after {
  right: -20px;
  bottom: -30px;
}

.shopolume-testimonial-author {
  font-weight: 600;
  color: var(--shopolume-dark-blue);
}

/* Classes Schedule */
.shopolume-schedule {
  padding: var(--space-xl) 0;
  background-color: var(--shopolume-cream);
}

.shopolume-schedule-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: var(--space-sm);
}

.shopolume-schedule-day {
  text-align: center;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background-color: var(--shopolume-dark-blue);
  color: white;
  border-radius: 8px 8px 0 0;
}

.shopolume-schedule-slot {
  background-color: white;
  padding: var(--space-sm);
  margin-bottom: var(--space-sm);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.shopolume-schedule-time {
  font-weight: 600;
  color: var(--shopolume-dark-green);
}

.shopolume-schedule-class {
  margin-top: var(--space-xs);
}

/* About Section */
.shopolume-about {
  padding: var(--space-xl) 0;
}

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

.shopolume-about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.shopolume-about-image img {
  display: block;
  width: 100%;
  height: auto;
}

.shopolume-about-content h2 {
  margin-bottom: var(--space-md);
}

.shopolume-about-list {
  list-style: none;
  margin-bottom: var(--space-md);
}

.shopolume-about-list-item {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.shopolume-about-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--shopolume-light-green);
  border-radius: 50%;
}

/* Contact Section */
.shopolume-contact {
  padding: var(--space-xl) 0;
  background-color: var(--shopolume-cream);
}

.shopolume-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.shopolume-contact-info h3 {
  margin-bottom: var(--space-md);
}

.shopolume-contact-list {
  list-style: none;
}

.shopolume-contact-item {
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
}

.shopolume-contact-icon {
  width: 24px;
  height: 24px;
  margin-right: var(--space-sm);
}

.shopolume-contact-form {
  background-color: white;
  padding: var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.shopolume-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.shopolume-input,
.shopolume-textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.shopolume-input:focus,
.shopolume-textarea:focus {
  outline: none;
  border-color: var(--shopolume-dark-green);
  box-shadow: 0 0 0 2px rgba(129, 140, 120, 0.2);
}

.shopolume-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
.shopolume-footer {
  padding: var(--space-lg) 0;
  background-color: var(--shopolume-dark-blue);
  color: white;
}

.shopolume-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-lg);
}

.shopolume-footer-logo {
  width: 150px;
  margin-bottom: var(--space-md);
  filter: brightness(0) invert(1);
}

.shopolume-footer-about {
  margin-bottom: var(--space-md);
}

.shopolume-footer h4 {
  color: white;
  margin-bottom: var(--space-md);
}

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

.shopolume-footer-link {
  margin-bottom: var(--space-sm);
}

.shopolume-footer-link a {
  color: rgba(255, 255, 255, 0.8);
}

.shopolume-footer-link a:hover {
  color: white;
}

.shopolume-footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shopolume-footer-copyright {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.8);
}

/* Policy Pages */
.shopolume-policy {
  padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
}

.shopolume-policy-container {
  max-width: 800px;
  margin: 0 auto;
}

.shopolume-policy-title {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.shopolume-policy-section {
  margin-bottom: var(--space-lg);
}

.shopolume-policy-section h3 {
  margin-bottom: var(--space-md);
}

.shopolume-policy-list {
  list-style-position: inside;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.shopolume-policy-list li {
  margin-bottom: var(--space-sm);
}

/* Success Page */
.shopolume-success {
  padding: calc(20px + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
}

.shopolume-success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
}

.shopolume-success-title {
  margin-bottom: var(--space-md);
}

.shopolume-success-text {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shopolume-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Custom Icons */
.shopolume-icon-yoga {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M12,2c2.2,0,4,1.8,4,4s-1.8,4-4,4s-4-1.8-4-4S9.8,2,12,2z M18,14c0,1.1-0.9,2-2,2h-8c-1.1,0-2-0.9-2-2v-3h12V14z M8,18h8v4H8V18z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-meditation {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M12,2C6.5,2,2,6.5,2,12s4.5,10,10,10s10-4.5,10-10S17.5,2,12,2z M12,20c-4.4,0-8-3.6-8-8s3.6-8,8-8s8,3.6,8,8S16.4,20,12,20z M12,6c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S15.3,6,12,6z M12,16c-2.2,0-4-1.8-4-4s1.8-4,4-4s4,1.8,4,4S14.2,16,12,16z M12,10c-1.1,0-2,0.9-2,2s0.9,2,2,2s2-0.9,2-2S13.1,10,12,10z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-pilates {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M15,4c0,1.7-1.3,3-3,3S9,5.7,9,4s1.3-3,3-3S15,2.3,15,4z M5,9.2c0-0.7,0.4-1.2,1-1.2h12c0.6,0,1,0.5,1,1.2 C19,16,15.9,20,12,20S5,16,5,9.2z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-taichi {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M12,2c5.5,0,10,4.5,10,10s-4.5,10-10,10S2,17.5,2,12S6.5,2,12,2z M12,4c-4.4,0-8,3.6-8,8s3.6,8,8,8 c-4.4,0-8-3.6-8-8S7.6,4,12,4z M12,12c2.2,0,4-1.8,4-4c0,2.2,1.8,4,4,4c-2.2,0-4,1.8-4,4C16,13.8,14.2,12,12,12z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-aqua {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M22,16c-0.9,0-1.7,0.2-2.5,0.5C18.7,16.2,17.9,16,17,16s-1.7,0.2-2.5,0.5C13.7,16.2,12.9,16,12,16 s-1.7,0.2-2.5,0.5C8.7,16.2,7.9,16,7,16s-1.7,0.2-2.5,0.5C3.7,16.2,2.9,16,2,16v2c1.1,0,2,0.4,2.9,0.9C5.8,18.4,6.7,18,7.8,18 c1.1,0,2,0.4,2.9,0.9c0.9-0.5,1.8-0.9,2.9-0.9c1.1,0,2,0.4,2.9,0.9c0.9-0.5,1.8-0.9,2.9-0.9c1.1,0,2,0.4,2.9,0.9 c0.9-0.5,1.8-0.9,2.9-0.9V16z M20.5,11.5C20.5,8.5,16.7,2,12,2S3.5,8.5,3.5,11.5c0,2.5,3.8,5.5,8.5,5.5S20.5,14,20.5,11.5z M12,15 c-3.9,0-6.5-2.3-6.5-3.5C5.5,10.3,8.1,8,12,8s6.5,2.3,6.5,3.5C18.5,12.7,15.9,15,12,15z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-phone {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M6.6,10.8c1.4,2.8,3.8,5.1,6.6,6.6l2.2-2.2c0.3-0.3,0.7-0.4,1-0.2c1.1,0.4,2.3,0.6,3.6,0.6c0.6,0,1,0.4,1,1V20 c0,0.6-0.4,1-1,1C10.6,21,3,13.4,3,4c0-0.6,0.4-1,1-1h3.5c0.6,0,1,0.4,1,1c0,1.2,0.2,2.4,0.6,3.6c0.1,0.3,0,0.7-0.2,1L6.6,10.8z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-email {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M20,4H4C2.9,4,2,4.9,2,6v12c0,1.1,0.9,2,2,2h16c1.1,0,2-0.9,2-2V6C22,4.9,21.1,4,20,4z M20,8l-8,5L4,8V6l8,5l8-5V8z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-location {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M12,2C8.1,2,5,5.1,5,9c0,5.2,7,13,7,13s7-7.8,7-13C19,5.1,15.9,2,12,2z M12,11.5c-1.4,0-2.5-1.1-2.5-2.5 s1.1-2.5,2.5-2.5s2.5,1.1,2.5,2.5S13.4,11.5,12,11.5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.shopolume-icon-check {
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23818C78" d="M9,16.2L4.8,12l-1.4,1.4L9,19L21,7l-1.4-1.4L9,16.2z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .shopolume-features-grid,
  .shopolume-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shopolume-schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --font-3xl: 2.2rem;
    --font-4xl: 2.5rem;
  }
  
  .shopolume-hero {
    padding-top: calc(70px + var(--space-lg));
    padding-bottom: var(--space-lg);
  }
  
  .shopolume-hero-image {
    opacity: 0.15;
    width: 100%;
  }
  
  .shopolume-hero-content {
    max-width: 100%;
  }
  
  .shopolume-about-grid,
  .shopolume-contact-grid,
  .shopolume-footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .shopolume-about-image {
    order: -1;
  }

  .shopolume-nav-link
 {
    font-size: var(--font-xs);
 }
 .shopolume-nav-item {
  margin-left: var(--space-xs);
}
}

@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
    --font-2xl: 1.8rem;
    --font-3xl: 2rem;
    --font-4xl: 2.2rem;
  }
  
  .shopolume-mobile-toggle {
    display: block;
  }
  
  .shopolume-nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px var(--space-md) var(--space-md);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 1000;
  }
  
  .shopolume-nav-list.active {
    right: 0;
  }
  
  .shopolume-nav-item {
    margin: var(--space-xs) 0;
    width: 100%;
  }
  
  .shopolume-nav-link {
    display: block;
    padding: var(--space-xs);
    width: 100%;
  }
  
  .shopolume-features-grid,
  .shopolume-products-grid {
    grid-template-columns: 1fr;
  }
  
  .shopolume-schedule-grid {
    grid-template-columns: 1fr;
  }
  
  .shopolume-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .shopolume-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .shopolume-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
  }

  .shopolume-nav-link
  {
     font-size: var(--font-xs); 
  }
  .shopolume-nav-item {
    margin-left: var(--space-xs);
  }
}

@media (max-width: 480px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3.5rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.75rem;
    --font-4xl: 2rem;
  }
  
  html {
    font-size: 18px;
  }
  
  .shopolume-header {
    padding: var(--space-xs) 0;
  }
  
  .shopolume-logo {
    width: 150px;
  }
  
  .shopolume-header.scrolled .shopolume-logo {
    width: 130px;
  }
  
  .shopolume-hero {
    padding-top: calc(60px + var(--space-md));
  }
  
  .shopolume-nav-list {
    width: 80%;
  }
  
  .shopolume-contact-form {
    padding: var(--space-md);
  }
  
  .shopolume-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .shopolume-footer-copyright {
    margin-bottom: var(--space-sm);
  }
  
  .shopolume-feature, 
  .shopolume-product, 
  .shopolume-testimonial {
    padding: var(--space-sm);
  }
  .shopolume-product-description {
    font-size: 16px;
}
.shopolume-about-list-item {
    margin-bottom: var(--space-xs);
    font-size: 16px;
}
.shopolume-product-content {
    padding: var(--space-xs);
}
p {  margin-bottom: var(--space-md);
    font-size: 16px;
}
.shopolume-container {
    padding: 0 var(--space-sm);
}
.shopolume-footer h4 {
    margin-bottom: var(--space-sm);
    font-size: 25px;
}
}

@media (max-width: 360px) {
   .shopolume-button{
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.8rem;
  }
  .shopolume-testimonial-text {
    font-size: var(--font-md);
  }
}