html, body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

input, select, textarea {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.main-box {
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.product-row {
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.product-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}

.btn {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    border-radius: 8px;
}

.btn-lg {
    border-radius: 10px;
    padding: 1rem 2rem;
}

.info-row {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    padding-top: 0.5rem;
    background: rgba(227, 73, 6, 0.06);
    border-color: rgba(227, 73, 6, 0.4);
}

.info-row:hover {
    transform: translateX(3px);
    background: rgba(227, 73, 6, 0.12);
}

.alert {
    border-radius: 8px;
}

.cart {
    border-radius: 8px;
}


.glow-on-hover {
    transition: all 0.2s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 2px 10px rgba(227, 73, 6, 0.2);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: rgba(227, 73, 6, 0.5);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(227, 73, 6, 0.7);
}

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-row:nth-child(1) { animation-delay: 0.1s; }
.product-row:nth-child(2) { animation-delay: 0.2s; }
.product-row:nth-child(3) { animation-delay: 0.3s; }

.info-row-icon {
    top: 6px !important;
    left: 6px !important;
}
.product-description h4 {
font-size: 1.3em !important;
}

table { border-collapse: collapse; width: 100%; padding; margin-bottom: 24px;}
th, td { border: 1px solid #ddd; text-align: left; padding: 8px 12px; }
th { background: #f5f5f5; }

/* СПОСОБЫ ОПЛАТЫ */
.payment-logos {
  text-align: center;
  margin: 10px 0;
}
.payment-logos img {
  max-width: 100%;
  height: auto;
}

/* ФУТЕР */
.legal-info {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.legal-info p {
  margin: 3px 0;
}