

:root {
  --vs-primary: #3F72AF;
  --vs-secondary: #FF5A5F;
  --vs-accent: #6ECB63;
  --vs-dark: #1F2937;
  --vs-light: #F8FAFC;
  --vs-background: #F0F4F8;
  --vs-success: #00B894;
  --vs-warning: #FFB800;
  
  --vs-transition: all 0.3s ease;
  --vs-shadow: 0 4px 20px rgba(0,0,0,0.1);
  --vs-radius: 8px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--vs-dark);
  background-color: var(--vs-background);
  overflow-x: hidden;
}

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

a {
  color: var(--vs-primary);
  text-decoration: none;
  transition: var(--vs-transition);
}

a:hover, a:focus {
  color: var(--vs-secondary);
}

.bg-primary {
  background-color: var(--vs-dark);
}


h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}


.vs-grid {
  display: grid;
  gap: 2rem;
}

.vs-flex {
  display: flex;
  align-items: center;
}

.vs-wrap {
  padding-inline: max(5vw, 1rem);
  max-width: 1440px;
  margin-inline: auto;
}

.vs-flow > * + * {
  margin-top: var(--flow-space, 1.5rem);
}


.vs-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--vs-light);
  box-shadow: var(--vs-shadow);
  padding: 1rem;
}

.vs-nav {
  justify-content: space-between;
  padding: 0 1rem;
}

.vs-nav-brand {
  height: 60px;
}

.vs-nav-brand img {
  height: 100%;
  width: auto;
}

.vs-nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.vs-nav-links li a {
  font-weight: 600;
  color: var(--vs-dark);
  padding: 0.5rem;
  position: relative;
}

.vs-nav-links li a:hover {
  color: var(--vs-primary);
}

.vs-nav-links li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vs-accent);
  transition: var(--vs-transition);
}

.vs-nav-links li a:hover::after {
  width: 100%;
}

.vs-nav-cta {
  background-color: var(--vs-primary);
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--vs-radius);
  box-shadow: 0 4px 6px rgba(63, 114, 175, 0.2);
}

.vs-nav-cta:hover {
  background-color: var(--vs-secondary);
}

.vs-nav-cta::after {
  display: none;
}

.vs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.vs-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--vs-dark);
  transition: var(--vs-transition);
}


.vs-kpi-dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.vs-kpi-card {
  background-color: var(--vs-light);
  padding: 1.5rem;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  transition: var(--vs-transition);
  text-align: center;
}

.vs-kpi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vs-kpi-value {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--vs-primary);
  margin-bottom: 0.5rem;
}

.vs-kpi-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--vs-dark);
  opacity: 0.8;
}


.vs-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 8rem);
  background-color: var(--vs-dark);
  color: var(--vs-light);
}

.vs-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.vs-hero-image {
  position: relative;
  height: 100%;
  min-height: 300px;
  border-radius: var(--vs-radius);
  overflow: hidden;
}

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

.vs-hero-text {
  --flow-space: 1.25rem;
}

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


.vs-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--vs-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--vs-transition);
  border: none;
}

.vs-btn-primary {
  background-color: var(--vs-primary);
  color: white !important;
}

.vs-btn-primary:hover {
  background-color: #2D5A8B;
}

.vs-btn-secondary {
  background-color: var(--vs-secondary);
  color: white !important;
}

.vs-btn-secondary:hover {
  background-color: #E64146;
}

.vs-btn-outline {
  background-color: transparent;
  border: 2px solid var(--vs-light);
  color: var(--vs-light) !important;
}

.vs-btn-outline:hover {
  background-color: var(--vs-light);
  color: var(--vs-dark) !important;
}

.vs-btn-dark {
  background-color: var(--vs-dark);
  color: white !important;
}

.vs-btn-dark:hover {
  background-color: #111827;
}


.vs-categories {
  padding: 4rem 0;
}

.vs-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vs-category-card {
  position: relative;
  height: 350px;
  border-radius: var(--vs-radius);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  transition: var(--vs-transition);
}

.vs-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vs-category-image {
  position: absolute;
  width: 100%;
  height: 100%;
}

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

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

.vs-category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--vs-light);
  transition: var(--vs-transition);
}

.vs-category-card:hover .vs-category-content {
  padding-bottom: 2rem;
}

.vs-category-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.vs-category-description {
  opacity: 0.9;
  max-height: 0;
  overflow: hidden;
  transition: var(--vs-transition);
}

.vs-category-card:hover .vs-category-description {
  max-height: 100px;
}


.vs-products {
  padding: 4rem 0;
  background-color: var(--vs-light);
}

.vs-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vs-product-card {
  background: white;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  overflow: hidden;
  transition: var(--vs-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vs-product-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.vs-product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vs-product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vs-product-description {
  color: #4B5563;
  margin-bottom: 1rem;
  flex: 1;
}

.vs-product-meta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1rem;
}

.vs-product-price {
  font-weight: 700;
  color: var(--vs-primary);
  font-size: 1.25rem;
  line-height: 1.2;
}

.vs-product-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}

.vs-product-actions .vs-size-select {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  height: 46px;
  margin-bottom: 0 !important;
}

.vs-product-actions .vs-btn {
  white-space: nowrap;
  min-height: 46px;
  flex: 0 0 auto;
}


.vs-store-info {
  padding: 4rem 0;
}

.vs-store-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.vs-store-image {
  position: relative;
  height: 400px;
  border-radius: var(--vs-radius);
  overflow: hidden;
}

.vs-store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-store-details {
  --flow-space: 1.25rem;
}

.vs-store-hours {
  margin-top: 1.5rem;
}

.vs-store-hours-list {
  list-style: none;
}

.vs-store-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}


.vs-why-us {
  padding: 4rem 0;
  background-color: var(--vs-light);
}

.vs-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.vs-feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  transition: var(--vs-transition);
}

.vs-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vs-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(63, 114, 175, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--vs-primary);
}

.vs-feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}


.vs-contact {
  padding: 4rem 0;
}

.vs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.vs-contact-info {
  --flow-space: 1.25rem;
}

.vs-form-group {
  margin-bottom: 1.5rem;
}

.vs-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.vs-form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: var(--vs-radius);
  transition: var(--vs-transition);
}

.vs-form-control:focus {
  outline: none;
  border-color: var(--vs-primary);
  box-shadow: 0 0 0 3px rgba(63, 114, 175, 0.2);
}

.iti {
  width: 100%;
}

.vs-form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.vs-form-checkbox input {
  margin-top: 0.25rem;
}


.vs-footer {
  background-color: var(--vs-dark);
  color: var(--vs-light);
  padding: 4rem 0 2rem;
}

.vs-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.vs-footer-logo {
  margin-bottom: 1rem;
}

.vs-footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.vs-footer-contact {
  list-style: none;
}

.vs-footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: flex-start;
}

.vs-footer-contact li i {
  margin-top: 0.25rem;
}

.vs-footer-links-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

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

.vs-footer-links li {
  margin-bottom: 0.75rem;
}

.vs-footer-links li a {
  color: var(--vs-light);
  opacity: 0.8;
  transition: var(--vs-transition);
}

.vs-footer-links li a:hover {
  opacity: 1;
  color: var(--vs-accent);
}

.vs-footer-hours {
  list-style: none;
}

.vs-footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.vs-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  opacity: 0.8;
  font-size: 0.875rem;
}


.vs-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vs-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.vs-modal-content {
  background-color: white;
  border-radius: var(--vs-radius);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--vs-shadow);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.vs-modal.is-active .vs-modal-content {
  transform: translateY(0);
}

.vs-modal-header {
  margin-bottom: 1.5rem;
}

.vs-modal-title {
  font-size: 1.5rem;
}

.vs-modal-body {
  margin-bottom: 1.5rem;
}

.vs-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}


.vs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vs-dark);
  color: var(--vs-light);
  padding: 1rem;
  z-index: 999;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.vs-cookie-banner.is-visible {
  transform: translateY(0);
}

.vs-cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.vs-cookie-text {
  flex: 1;
  min-width: 250px;
}

.vs-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.vs-cookie-settings-modal .vs-modal-content {
  max-width: 700px;
}

.vs-cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E5E7EB;
}

.vs-cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.vs-cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.vs-cookie-category-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.vs-cookie-category-switch {
  display: flex;
  align-items: center;
}

.vs-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.vs-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.vs-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E5E7EB;
  transition: .4s;
  border-radius: 24px;
}

.vs-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .vs-slider {
  background-color: var(--vs-accent);
}

input:focus + .vs-slider {
  box-shadow: 0 0 1px var(--vs-accent);
}

input:checked + .vs-slider:before {
  transform: translateX(22px);
}

.vs-cookie-category-description {
  color: #4B5563;
  font-size: 0.9375rem;
}


.vs-thank-you {
  text-align: center;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vs-thank-you-icon {
  font-size: 4rem;
  color: var(--vs-success);
  margin-bottom: 1.5rem;
}


.vs-about-hero {
  background-color: var(--vs-primary);
  padding: 4rem 0;
  color: white;
}

.vs-about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vs-about-value {
  background: white;
  padding: 2rem;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
}

.vs-about-history {
  padding: 4rem 0;
}

.vs-timeline {
  margin-top: 3rem;
  position: relative;
}

.vs-timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--vs-primary);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.vs-timeline-item {
  padding: 0 2rem 2rem;
  position: relative;
  width: 50%;
  left: 0;
}

.vs-timeline-item:nth-child(even) {
  left: 50%;
}

.vs-timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
}

.vs-timeline-date {
  position: absolute;
  width: max-content;
  padding: 0.5rem 1rem;
  background: var(--vs-accent);
  color: white;
  border-radius: 20px;
  top: 0;
  left: 100%;
  transform: translateX(-50%);
}

.vs-timeline-item:nth-child(even) .vs-timeline-date {
  left: 0;
  transform: translateX(-50%);
}


.vs-products-filters {
  background: white;
  padding: 1.5rem;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  margin-bottom: 2rem;
}

.vs-filters-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.vs-filter-control {
  padding: 0.5rem;
  border: 1px solid #D1D5DB;
  border-radius: var(--vs-radius);
  width: 100%;
}

.vs-filter-control:focus {
  outline: none;
  border-color: var(--vs-primary);
}


.vs-cart {
  padding: 4rem 0;
}

.vs-cart-empty {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
}

.vs-cart-items {
  background: white;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  overflow: hidden;
}

.vs-cart-item {
  display: grid;
  grid-template-columns: 100px 2fr 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #E5E7EB;
  align-items: center;
}

.vs-cart-item:last-child {
  border-bottom: none;
}

.vs-cart-image {
  width: 100%;
  height: 80px;
  border-radius: var(--vs-radius);
  overflow: hidden;
}

.vs-cart-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-cart-quantity {
  display: flex;
  align-items: center;
}

.vs-quantity-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F4F6;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--vs-transition);
}

.vs-quantity-btn:hover {
  background: #E5E7EB;
}

.vs-cart-quantity input {
  width: 40px;
  height: 32px;
  text-align: center;
  margin: 0 0.5rem;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
}

.vs-cart-remove {
  background: none;
  border: none;
  color: var(--vs-secondary);
  cursor: pointer;
  transition: var(--vs-transition);
}

.vs-cart-remove:hover {
  color: #E64146;
}

.vs-cart-summary {
  background: white;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}

.vs-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #E5E7EB;
}

.vs-summary-row:last-of-type {
  border-bottom: none;
  margin-bottom: 1rem;
}

.vs-summary-total {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--vs-primary);
}


.vs-checkout {
  padding: 4rem 0;
}

.vs-checkout-form {
  background: white;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  padding: 1.5rem;
}

.vs-form-title {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #E5E7EB;
}

.vs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vs-form-section {
  margin-bottom: 2rem;
}

.vs-checkout-summary {
  background: white;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  padding: 1.5rem;
}

.vs-checkout-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #E5E7EB;
}

.vs-checkout-item:last-of-type {
  border-bottom: none;
}

.vs-checkout-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--vs-radius);
  overflow: hidden;
}

.vs-checkout-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-checkout-item-info {
  flex: 1;
}

.vs-checkout-item-title {
  font-weight: 600;
}

.vs-checkout-item-meta {
  font-size: 0.875rem;
  color: #4B5563;
}

.vs-checkout-item-price {
  font-weight: 600;
  color: var(--vs-primary);
}


.vs-legal {
  padding: 4rem 0;
}

.vs-legal-content {
  background: white;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  padding: 2rem;
}

.vs-legal-updated {
  color: #6B7280;
  margin-bottom: 2rem;
}

.vs-legal-section {
  margin-bottom: 2rem;
}

.vs-legal-section:last-child {
  margin-bottom: 0;
}


.vs-map {
  width: 100%;
  height: 400px;
  border-radius: var(--vs-radius);
  overflow: hidden;
  box-shadow: var(--vs-shadow);
  border: none;
}

.vs-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.vs-contact-method {
  background: white;
  padding: 2rem;
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  text-align: center;
  transition: var(--vs-transition);
}

.vs-contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.vs-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(63, 114, 175, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--vs-primary);
  font-size: 1.5rem;
}


@media screen and (max-width: 1024px) {
  .vs-nav-links {
    gap: 1rem;
  }
  
  .vs-hero-content,
  .vs-store-content,
  .vs-contact-grid {
    grid-template-columns: 1fr;
  }
  
  .vs-store-image {
    height: 300px;
  }
  
  .vs-timeline::before {
    left: 2rem;
  }
  
  .vs-timeline-item,
  .vs-timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    padding-left: 4rem;
  }
  
  .vs-timeline-date,
  .vs-timeline-item:nth-child(even) .vs-timeline-date {
    left: 2rem;
    transform: none;
  }
}

@media screen and (max-width: 768px) {
  .vs-hamburger {
    display: flex;
  }
  
  .vs-nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 250px;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 1.5rem 1.5rem;
    background-color: var(--vs-light);
    z-index: 9;
    transition: right 0.3s ease;
  }
  
  .vs-nav-links.is-active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  .vs-cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .vs-cart-item > *:nth-child(3),
  .vs-cart-item > *:nth-child(4) {
    grid-column: 2;
  }
  
  .vs-form-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
  
  .vs-kpi-dashboard {
    grid-template-columns: 1fr;
  }
  
  .vs-hero-actions,
  .vs-cookie-actions {
    justify-content: center;
  }
  
  .vs-cookie-content {
    justify-content: center;
    text-align: center;
  }
}
