* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.gn-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 2884 / 1024; /* автоматически задаёт нужную высоту */
  background-image: url("../images/common/coins-banner.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.gn-banner::before {
       content: "";
  display: block;
  padding-top: calc(100% / (2884 / 1024)); /* = 35.5% */
      position: absolute;
      inset: 0;
      background-image: url("../images/common/coins-banner.png");
  background-size: contain;
background-repeat: no-repeat;
      background-position: center;
      filter: grayscale(100%);
      clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
      transition: 0.5s ease;
      z-index: 1;
    }

    .gn-banner[data-mode="bars"]::before {
      clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
    }

    .gn-switch {
      position: relative;
      display: flex;
      width: 80%;
      max-width: 700px;
      margin: 0 20px 30px;
      z-index: 2;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .gn-btn {
      flex: 1;
      padding: 18px;
      text-align: center;
      cursor: pointer;
      transition: 0.3s ease;
      font-size: 16px;
      font-weight: bold;
      border: none;
      background-color: rgba(255, 255, 255, 0.9);
      box-shadow: none;
    }
    .gn-btn.active {
      background-color: rgba(179, 0, 0, 0.8);
      color: white;
    }
    .gn-content {
      display: none;
      font-size: 18px;
		box-sizing: border-box;
    }
.gn-content.active {
      display: block;
    }
							/*					Блок 2 Монеты - инфо о монетках					*/
.gn-info-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  gap: 40px;
  flex-wrap: nowrap;
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.gn-info-column {
  flex: 1;
  background: linear-gradient(to bottom right, #fefefe, #f6f6f6);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.gn-info-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.gn-info-column h2 {
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gn-info-column p {
  padding-bottom: 12px;
  font-size: 17px;
  line-height: 1.6;
}

/* Вертикальная линия между колонками */
.divider {
  width: 1px;
  background-color: #d8d8d8;
}

/* ---- АДАПТИВНОСТЬ ---- */
@media (max-width: 1024px) {
  .gn-info-section {
    padding: 40px 20px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .gn-info-section {
    flex-direction: column;
    padding: 30px 16px;
  }

  .gn-info-column {
    width: 100%;
    padding: 24px;
  }

  .divider {
    display: none;
  }
}

								/*					Блок 3 Монеты - Преимущества				*/
.gn-benefits-section {
  background-color: #D3D3D3;
  padding: 60px 0;
  text-align: center;
	margin: 0;
}

.gn-benefits-title {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.gn-benefits-wrapper {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.gn-benefit-card {
  padding: 24px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 340px;
  text-align: left;
}

.gn-icon {
  width: 48px;
  height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 16px;
  flex-shrink: 0;
}

.gn-benefit-text h3 {
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 600;
}

.gn-benefit-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}
								/*					Блок 4 Монеты - Цены				*/
.gn-prices-section {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
  color: #222;
  max-width: 900px;
  margin: 0 auto;
}

.gn-prices-downloads {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gn-prices-download {
  background-color: #2A2A2A;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.gn-prices-download:hover {
  background-color: #333;
}

.gn-prices-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 40px;
}

.gn-prices-popular {
  font-size: 36px;
  font-weight: 700;
}
.gn-prices-contacts {
  margin: 35px auto 45px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid #444; /* тонкая тёмно-серая рамка */
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  max-width: 720px;
  text-align: left;
}

.gn-contacts-bank {
  color: #d32f2f; /* красный акцент для банка */
}

.gn-contacts-icon {
  color: #444;
  margin-right: 6px;
}

.gn-prices-contacts a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.gn-prices-contacts a:hover {
  text-decoration: underline;
}



								/*					Блок 5 Монеты - Витрина				*/

 .coins-showcase-wrapper {
  background-color: #ffffff;
  padding: 20px 20px 10px;
  color: #111;
}

.coins-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.coins-showcase-title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.coins-showcase-subtitle {
  font-size: 14px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

.coins-showcase-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
}

.coins-showcase-image-block {
  flex: 1 1 500px;
  text-align: center;
}

.coins-showcase-image {
  max-width: 100%;
  transition: transform 0.2s ease;
}

.coins-showcase-image:hover {
  transform: scale(1.01);
}

.coins-showcase-info {
  flex: 1 1 350px;
}

.coins-showcase-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.6;
}

.coins-showcase-specs li {
  margin-bottom: 6px;
}

.coins-showcase-price-block {
  background-color: #fcfcfc;
  padding: 18px;
  border-left: 4px solid #c00;
  border-radius: 4px;
}

.coins-showcase-price-label {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.coins-showcase-price {
  font-size: 22px;
  font-weight: bold;
  color: #c00;
}

.coins-showcase-discount-note {
  font-size: 14px;
  color: #444;
  margin-top: 8px;
}

.coins-showcase-description {
  margin-top: 50px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.coins-showcase-description p {
  margin-bottom: 16px;
}

.coins-showcase-source {
  font-style: italic;
  color: #888;
}








							/*					Блок 1 Золотые слитки - Обо всём				*/
.gn-gold-section {
  background-color: white;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gn-gold-title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 24px;
}

.gn-gold-description p {
  margin-bottom: 16px;
  line-height: 1.6;
}
.gn-gold-contacts {
  margin-top: 30px;
  padding: 20px 24px;
  background: #fafafa;
  border-left: 4px solid #444; /* тёмно-серая полоса для акцента */
  border-radius: 6px;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
}

.gn-gold-bank {
  color: #d32f2f; /* красный акцент для банка */
}

.gn-gold-contacts a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.gn-gold-contacts a:hover {
  text-decoration: underline;
}




