

.main {
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}



.hero-showcase {
  position: relative;
  height: 70vh;
  overflow: hidden;
  background: var(--main-color);
}

.showcase-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.showcase-slide {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.showcase-slide.active {
  visibility: visible;
  opacity: 1;
}

.slide-background {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(227, 28, 121, 0.2) 100%
  );
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  color: var(--bg-color);
  text-align: center;
  transform: translate(-50%, -50%);
}

.content-wrapper {
  animation: slideUp 1s ease-out 0.5s both;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border-radius: 25px;
  padding: 8px 20px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent-color);
}

.slide-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.slide-description {
  max-width: 600px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.slide-price {
  margin-bottom: 40px;
}

.price-current {
  margin-right: 15px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 28px;
}

.price-original {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  text-decoration: line-through;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 16px 32px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.slide-cta:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  transform: translateY(-3px);
}


.slider-navigation {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.nav-dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  cursor: pointer;
}

.nav-dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}


.slider-arrows {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 100%;
  pointer-events: none;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: all;
}

.arrow-btn:hover {
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 40px;
}

.next-btn {
  right: 40px;
}



.seasonal-collections {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--bg-color) 0%,
    var(--secondary-bg-color) 100%
  );
}

.collections-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.header-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -1px;
}

.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 1.6;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

@media (max-width: 425px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

.collection-card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: var(--bg-color);
  transition: all 0.4s ease;
}

.collection-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.card-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.collection-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.collection-card:hover .collection-img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(227, 28, 121, 0.6) 100%
  );
  transition: all 0.4s ease;
}

.collection-card:hover .card-overlay {
  visibility: visible;
  opacity: 1;
}

.overlay-content {
  color: var(--bg-color);
  text-align: center;
}

.card-title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 28px;
}

.card-subtitle {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 16px;
}

.collection-features {
  margin-bottom: 25px;
  list-style: none;
}

.collection-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.collection-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  padding: 12px 24px;
  color: var(--bg-color);
  font-weight: 600;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.collection-btn:hover {
  color: var(--accent-color);
  background: var(--bg-color);
  transform: translateY(-2px);
}

.card-info {
  padding: 30px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 6px 15px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  background: var(--secondary-bg-color);
}

.card-name {
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 22px;
}

.price-range {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 18px;
}



.bestsellers-showcase {
  padding: 100px 0;
  color: var(--bg-color);
  background: var(--main-color);
}

.bestsellers-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.bestsellers-showcase .section-header {
  margin-bottom: 80px;
}

.bestsellers-showcase .section-title {
  color: var(--bg-color);
}

.bestsellers-showcase .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.bestseller-item {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: var(--bg-color);
  transition: all 0.4s ease;
}

.bestseller-item:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-15px);
}

.rank-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(227, 28, 121, 0.4);
  color: var(--bg-color);
  font-weight: 700;
  font-size: 18px;
  background: var(--accent-color);
}

.rank-badge i {
  margin-left: 3px;
  font-size: 12px;
}

.rank-1 .rank-badge {
  background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.rank-2 .rank-badge {
  background: linear-gradient(135deg, #c0c0c0, #808080);
}

.rank-3 .rank-badge {
  background: linear-gradient(135deg, #cd7f32, #8b4513);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bestseller-item:hover .product-img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.bestseller-item:hover .product-overlay {
  visibility: visible;
  opacity: 1;
}

.quick-view-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  padding: 12px 24px;
  color: var(--bg-color);
  font-weight: 600;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.quick-view-btn:hover {
  color: var(--accent-color);
  background: var(--bg-color);
  transform: scale(1.05);
}

.product-info {
  padding: 25px;
  color: var(--text-color);
}

.product-category {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.product-name {
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.stars {
  display: flex;
  gap: 2px;
  color: #ffd700;
}

.rating-score {
  color: var(--main-color);
  font-weight: 700;
}

.review-count {
  color: var(--secondary-color);
  font-size: 14px;
}

.price-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.current-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 22px;
}

.original-price {
  color: var(--secondary-color);
  font-size: 16px;
  text-decoration: line-through;
}

.discount-badge {
  border-radius: 12px;
  padding: 4px 8px;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 12px;
  background: var(--accent-color);
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 15px;
  padding: 6px 12px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 12px;
  background: var(--secondary-bg-color);
}



.brand-heritage {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--secondary-bg-color) 0%,
    var(--bg-color) 50%,
    var(--secondary-bg-color) 100%
  );
}

.heritage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.story-text {
  padding-right: 20px;
}

.story-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.story-title {
  margin-bottom: 30px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.story-description {
  margin-bottom: 40px;
}

.story-description p {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.8;
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  background: var(--bg-color);
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  color: var(--bg-color);
  font-size: 24px;
  background: var(--accent-color);
}

.stat-number {
  display: block;
  margin-bottom: 5px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 28px;
}

.stat-label {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 14px;
}

.story-values {
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: var(--bg-color);
}

.values-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 20px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-size: 15px;
}

.values-list i {
  color: var(--accent-color);
  font-size: 16px;
}

.story-visual {
  position: relative;
}

.main-image {
  position: relative;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.heritage-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  padding: 12px 20px;
  color: var(--bg-color);
  font-weight: 600;
  background: var(--accent-color);
  backdrop-filter: blur(10px);
}

.visual-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  text-align: center;
}

.gallery-img {
  width: 100%;
  height: 120px;
  margin-bottom: 8px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.gallery-caption {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 12px;
}



.connection-hub {
  padding: 100px 0;
  color: var(--bg-color);
  background: linear-gradient(
    135deg,
    var(--main-color) 0%,
    rgba(227, 28, 121, 0.9) 100%
  );
}

.hub-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 60px;
}

.contact-info {
  padding-right: 20px;
}

.info-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
}

.info-description {
  margin-bottom: 40px;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.6;
}

.special-offer {
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  background: var(--accent-color);
}

.offer-title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 24px;
}

.offer-description {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.6;
}

.offer-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.benefit-item i {
  color: var(--accent-color);
}

.contact-methods {
  border-radius: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
}

.methods-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 18px;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
}

.method-item:last-child {
  border-bottom: none;
}

.method-item i {
  width: 20px;
  color: var(--accent-color);
  font-size: 18px;
}

.method-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-label {
  font-weight: 600;
  font-size: 14px;
}

.method-value {
  opacity: 0.8;
  font-size: 13px;
}

.contact-form-wrapper {
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: var(--bg-color);
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 24px;
}

.form-subtitle {
  color: var(--secondary-color);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 2px solid var(--secondary-bg-color);
  border-radius: 12px;
  padding: 15px 20px;
  font-family: var(--font-text);
  font-size: 16px;
  background: var(--bg-color);
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(227, 28, 121, 0.1);
  outline: none;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox {
  width: 30px;
}

.checkbox-text {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
}

.policy-link {
  color: var(--accent-color);
  text-decoration: underline;
}

.submit-button {
  position: relative;
  width: 100%;
  border-radius: 15px;
  padding: 18px 30px;
  overflow: hidden;
  color: var(--bg-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    #d01967 100%
  );
  transition: all 0.3s ease;
}

.submit-button:hover {
  box-shadow: 0 10px 30px rgba(227, 28, 121, 0.4);
  transform: translateY(-2px);
}

.button-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.button-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.form-footer {
  margin-top: 20px;
  text-align: center;
}

.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-size: 12px;
}



@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




@media (max-width: 1024px) {
  .slide-title {
    font-size: 48px;
  }
  
  .section-title {
    font-size: 40px;
  }
  
  .story-title {
    font-size: 40px;
  }
  
  .info-title {
    font-size: 40px;
  }
  
  .collections-grid {
    gap: 30px;
  }
  
  .bestsellers-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .story-content {
    gap: 50px;
  }
  
  .contact-content {
    gap: 40px;
  }
  
  .heritage-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}


@media (max-width: 768px) {
  .main {
    margin-top: 70px;
  }
  
  .hero-showcase {
    height: 70vh;
  }
  
  .slide-title {
    font-size: 36px;
  }
  
  .slide-description {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .story-title {
    font-size: 32px;
  }
  
  .info-title {
    font-size: 32px;
  }
  
  .collections-grid {
    gap: 25px;
  }
  
  .bestsellers-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .heritage-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .offer-benefits {
    grid-template-columns: 1fr;
  }
  
  .arrow-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .prev-btn {
    left: 20px;
  }
  
  .next-btn {
    right: 20px;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .story-title {
    font-size: 28px;
  }
  
  .info-title {
    font-size: 28px;
  }
  
  .slide-price {
    margin-bottom: 30px;
  }
  
  .price-current {
    font-size: 24px;
  }
  
  .price-original {
    font-size: 18px;
  }
  
  .bestsellers-grid {
    grid-template-columns: 1fr;
  }
  
  .visual-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .arrow-btn {
    display: none;
  }
  
  .contact-form-wrapper {
    padding: 20px;
  }
}

@media (max-width: 425px) {
  .slide-content {
    width: 100%;
    max-width: 100%;
  }
}