
/* Эффект скролла для карточки товара в каталоге, когда подносим мышку к изображению */

.catalogSection .scuWrap {
  max-height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: red transparent;
}
.catalogSection .scuWrap::-webkit-scrollbar {
  width: 12px;
}
.catalogSection .scuWrap::-webkit-scrollbar-track {
  background: transparent;
}
.catalogSection .scuWrap::-webkit-scrollbar-thumb {
  background-color: red;
  border-radius: 6px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.catalogSection .scuWrap::before,
.catalogSection .scuWrap::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: none;
  z-index: 10;
}
.catalogSection .scuWrap::before {
  top: 0;
  background: linear-gradient(to bottom, white 0%, rgba(255,255,255,0) 100%);
}
.catalogSection .scuWrap::after {
  bottom: 0;
  background: linear-gradient(to top, white 0%, rgba(255,255,255,0) 100%);
}

.imgW .product-item-scu-item-list li {
	min-height: fit-content;
	padding: 5px;
	font-size: 14px;
}
.imgW .nameSKU {
	font-size: 14px;
	text-align: left;
}
.imgW .product-item-scu-container {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0 0 10px 0;
}

/**/




/* information_page */
.information_page {
	color: #333;
}
/* information_page end */

/* information_page internal_text */
.internal_text {
	--max-width: min(100%, 1140px);
	--gap: 1.5rem;
	padding: 0;
	background: #fff;
}
.content-box {
    max-width: var(--max-width);
    margin: 0 auto;
}
.content-box__body {
    font-size: clamp(1.7rem, 1.7vw, 1.7rem);
}
.content-box__body img,
.content-box__body video,
.content-box__body table {
    max-width: 100%;
    height: auto;
}
.content-box__body table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
	border-collapse: collapse;
	min-width: 1140px;
	width: 100%;
}
.content-box__body th,
.content-box__body td {
    border: 1px solid #D9DFE2;
    padding: .5em .75em;
    text-align: left;
    white-space: nowrap;
}
.content-box__body ul,
.content-box__body ol {
    padding-left: 1.4em;
}
/* information_page internal_text end */



/* information_page image */
.information_page .top_pic {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
	border: 2px solid #D9DFE2;
}

.information_page .top_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 768px) {
    .information_page .top_pic { height: 250px; }
}
/* information_page image end */





/* table-scroll */
.table-container {
    position: relative;
    margin: 1.5rem 0;
}
.information_page .table-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.scroll-hint {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.scroll-hint:hover {
    background: rgba(0, 0, 0, 0.85);
}
.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

@media(min-width: 769px) {
    .scroll-hint {
        display: none;
    }
}

@media (max-width: 768px) {
  .information_page .table-scroll-wrapper table {
    width: auto;
    min-width: 100%; 
    display: table;
  }
}

/* table-scroll end */





/* features-section */
.features-section {
	max-width: 1200px;
	margin: 2em auto 2em auto;
	display: flex;
	justify-content: space-between;
	gap: 40px;
	padding: 0 20px;
}

	.feature-card {
		flex: 1;
		position: relative;
		background: #ffffff;
		border-radius: 16px;
		padding: 30px 20px;
		transition: all 0.3s ease;
		border: 1px solid #D9DFE2;
		text-align: center;
		min-height: 200px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}

	.feature-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
		border-color: #D9002C;
	}

	.icon-frame-wrapper {
		position: relative;
		margin-bottom: 25px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.feature-icon {
		width: 100px;
		height: 100px;
		background: #83d880;
		border-radius: 12px;
		padding: 15px;
		z-index: 3;
		position: relative;
		margin-bottom: 20px;
	}

	.feature-icon svg {
		width: 70px;
		height: 70px;
	}

	.feature-text {
		z-index: 3;
		position: relative;
	}

	.feature-text p {
		font-size: 18px;
		font-weight: 600;
		color: #000000;
		line-height: 1.4;
		margin-bottom: 4px;
	}

	.feature-text p:last-child {
		margin-bottom: 0;
	}

	/* Адаптивность */
	@media (max-width: 1024px) {
		.features-section {
			gap: 25px;
		}

		.feature-card {
			padding: 25px 15px;
			min-height: 260px;
		}

		.feature-text p {
			font-size: 16px;
		}
	}

	@media (max-width: 768px) {
		.features-section {
			flex-direction: column;
			gap: 20px;
			padding: 0;
		}

		.feature-card {
			min-height: auto;
			padding: 30px 20px;
		}
	}
/* features-section end */



/* Секция Документы компании */
		.documents_to_download-section {
			max-width: 1200px;
			margin: 40px auto 40px auto;
			padding: 0;
		}

        .documents_to_download-section .section-title {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #222;
        }

        .documents_to_download-section .section-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 900px;
        }

        .documents_to_download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }

        .documents_to_download_card {
            border: 1px solid #D9DFE2;
            border-radius: 10px;
            padding: 25px;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .documents_to_download_card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .documents_to_download_icon {
            width: 45px;
            height: 45px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .documents_to_download_content {
            display: flex;
            align-items: flex-start;
        }

        .documents_to_download_title {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #222;
            line-height: 1.4;
        }

        .documents_to_download-section .file-size {
            font-size: 13px;
            color: #777;
            margin-bottom: 16px;
            display: block;
        }

        .documents_to_download_description {
            color: #555;
            line-height: 1.5;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .download-container {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .download-label {
            font-size: 1.2rem;
            color: #888;
            white-space: nowrap;
        }

        .download-button {
            background: none;
            border: 1px solid #D9DFE2;
            border-radius: 50%;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #888;
            transition: all 0.2s ease;
            padding: 0;
            animation: border-blink 1.4s infinite;
        }

        @keyframes border-blink {
            0%   { border-color: #D9DFE2; }
            50%  { border-color: #D9002C; }
            100% { border-color: #D9DFE2; }
        }

        .download-button:hover {
            background-color: #f5f5f5;
            color: #333;
            border-color: #ccc;
        }

        .download-icon {
            font-size: 16px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .documents_to_download-grid {
                grid-template-columns: 1fr;
            }

            .documents_to_download-section .section-title {
                font-size: 24px;
            }

            .documents_to_download-section .section-description {
                font-size: 15px;
            }

        }

        @media (max-width: 480px) {
            .documents_to_download-section {
                padding: 0;
                margin: 25px 0;
            }

            .documents_to_download-section .section-title {
                font-size: 22px;
            }

            .documents_to_download_card {
                padding: 20px 20px 20px 60px;
            }

            .documents_to_download_title {
                font-size: 16px;
            }
        }
/* Секция Документы компании */











