.cs-versandKostenRechner {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  color: #333;
}

.cs-versandKostenRechner h1 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #2a2a2a;
}

.shipment-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shipment-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.shipment-row.header-row {
  font-weight: 600;
  color: #444;
  border-bottom: 2px solid #ccc;
}

.shipment-row .label {
  flex: 1;
  font-weight: 500;
  color: #555;
  min-width: 180px;
}

.shipment-row .value {
  flex: 1;
  text-align: right;
  min-width: 140px;
  color: #222;
}

.select.countrySelect {
  padding: 6px 10px;
  border: 1px solid #bbb;
  border-radius: 5px;
  font-size: 1rem;
  background: #fafafa;
}

.infoBox {
  background: #e6f4fb;
  padding: 12px 16px;
  margin-top: 24px;
  border-left: 4px solid #2196f3;
  font-size: 0.95rem;
  color: #004c79;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .shipment-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .shipment-row .value {
    text-align: left;
  }

  .cs-versandKostenRechner {
    padding: 20px 12px;
  }
}


/* -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

/* FOR SOCIALS MEDIA */

/* === Контейнер социальных карточек === */
.jvmsocial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 20px;
  animation: jvmsocial-fadeIn 0.6s ease-out;
}

/* === Одиночная карточка === */
.jvmsocial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jvmsocial-item:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* === Иконка внутри карточки === */
.jvmsocial-icon {
  width: 100px;
  height: 80px;
  object-fit: contain;
}

/* === Заголовок (лейбл) под иконкой === */
.jvmsocial-label {
  display: block;
  margin-top: 12px;
  font-size: 1rem;
  color: #333333;
  text-align: center;
}

/* === Медиазапрос для узких экранов === */
@media (max-width: 480px) {
  .jvmsocial-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    padding: 16px;
  }

  .jvmsocial-item {
    padding: 20px;
  }

  .jvmsocial-icon {
    width: 64px;
    height: 64px;
  }

  .jvmsocial-label {
    font-size: 0.875rem;
  }
}

/* === Анимация появления карточек === */
@keyframes jvmsocial-fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* FOR VIDEO SHOP */

    /* Контейнер */
.jvmvideo-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 20px;
}

/* Карточка */
.jvmvideo-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jvmvideo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Обёртка для 16:9 */
.jvmvideo-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

/* Стили iframe */
.jvmvideo-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-sizing: border-box;
}

/* Адаптив */
@media (max-width: 600px) {
  .jvmvideo-container {
    grid-template-columns: 1fr;
  }
}


/* -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.box-2 {
    padding: 26px !important;
}

.catalog-grid-add {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); /* ключевая строка */
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.catalog-box-add {
  display: block;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.catalog-box-add:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.catalog-box-add img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* -------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */

.box-2 {
    padding: 26px !important;
}