.stores-title {
  margin-bottom: 24px;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.store-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-dark-line);
  border-radius: 16px;
  padding: 40px;
  transition: var(--transition);
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 42, 59, 0.1);
  border-color: var(--red);
}

.store-card::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: var(--gray-light);
  border-radius: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23EF233C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.store-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  padding-right: 60px;
}

.store-location {
  color: var(--gray-dark);
  font-size: 16px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--gray-light);
  border-radius: 8px;
  display: inline-block;
}

.store-phones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-dark-line);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  transition: var(--transition);
}

.phone-link::before {
  content: "";
  width: 32px;
  height: 32px;
  background: var(--red-gradient);
  border-radius: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.phone-link:hover {
  color: var(--red);
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-dark-line);
  border-radius: 16px;
  padding: 40px;
}

.info-card h2 {
  font-size: 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-card h2::before {
  content: "";
  width: 48px;
  height: 48px;
  background: var(--gray-light);
  border-radius: 12px;
  flex-shrink: 0;
}

.info-card:first-child h2::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23EF233C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpolyline points='12 6 12 12 16 14'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--gray-light);
}

.info-card:last-child h2::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23EF233C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--gray-light);
}

.hours-title{
  margin-bottom:24px;
}

/* Working Hours */
.working-hours {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 24px;
}

.working-hours p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-dark-line);
  font-size: 18px;
}

.working-hours p:first-child {
  padding-top: 0;
}

.working-hours p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.day {
  font-weight: 500;
  color: var(--blue-dark);
}

.time {
  color: var(--gray-dark);
  font-weight: 500;
}

.time.closed {
  color: var(--white);
  background: var(--red-gradient);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 14px;
}

/* Contact Email */
.contact-email {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.email-label {
  color: var(--gray-dark);
  font-size: 16px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 24px;
  transition: var(--transition);
  padding: 20px 24px;
  background: var(--gray-light);
  border-radius: 12px;
}

.email-link::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--red-gradient);
  border-radius: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.email-link:hover {
  color: var(--red);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(239, 35, 60, 0.15);
}

/* Map Section */
.map-section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.map-section-title::before {
  content: "";
  width: 48px;
  height: 48px;
  background: var(--gray-light);
  border-radius: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23EF233C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6'%3E%3C/polygon%3E%3Cline x1='8' y1='2' x2='8' y2='18'%3E%3C/line%3E%3Cline x1='16' y1='6' x2='16' y2='22'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80px;
  opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 1023px) {
  .stores-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .store-card {
    padding: 24px;
  }

  .store-card::before {
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
  }

  .store-card h3 {
    font-size: 20px;
    padding-right: 50px;
  }

  .phone-link {
    font-size: 18px;
  }

  .phone-link::before {
    width: 28px;
    height: 28px;
  }

  .info-card {
    padding: 24px;
  }

  .info-card h2 {
    font-size: 22px;
  }

  .info-card h2::before {
    width: 40px;
    height: 40px;
  }

  .working-hours {
    padding: 16px;
  }

  .working-hours p {
    font-size: 16px;
    padding: 12px 0;
  }

  .email-link {
    font-size: 18px;
    padding: 16px;
  }

  .email-link::before {
    width: 32px;
    height: 32px;
  }

  .map-placeholder {
    height: 300px;
  }

  .map-section-title::before {
    width: 40px;
    height: 40px;
  }
}