.product-detail-page {
--product-primary: var(--primary, #385dcb);
--product-dark: #172033;
--product-text: #4b5565;
--product-muted: #6b7280;
--product-border: #e5e9f0;
--product-surface: #f6f8fb;
color: var(--product-text);
background: #fff;
}
.product-detail-page *,
.product-detail-page *::before,
.product-detail-page *::after {
box-sizing: border-box;
}
.product-breadcrumb-bar {
padding: 17px 0;
border-bottom: 1px solid var(--product-border);
background: #f9fafc;
}
.product-breadcrumb {
display: flex;
align-items: center;
gap: 0;
margin: 0;
padding: 0;
list-style: none;
color: var(--product-muted);
font-size: 14px;
white-space: nowrap;
overflow: hidden;
}
.product-breadcrumb li {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
}
.product-breadcrumb li + li::before {
content: "/";
margin: 0 10px;
color: #a5adba;
}
.product-breadcrumb a {
color: var(--product-text);
text-decoration: none;
}
.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible {
color: var(--product-primary);
}
.product-overview-section {
padding: clamp(36px, 5vw, 62px) 0;
}
.product-gallery-card {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
overflow: hidden;
border: 1px solid var(--product-border);
border-radius: 18px;
background: var(--product-surface);
box-shadow: 0 18px 45px rgba(28, 43, 72, 0.07);
}
.product-main-image,
.product-image-placeholder {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
aspect-ratio: 4 / 3;
padding: clamp(18px, 4vw, 42px);
background: linear-gradient(145deg, #fff 0%, #f3f6fa 100%);
}
.product-gallery-image {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
}
.product-image-placeholder {
flex-direction: column;
gap: 12px;
color: var(--product-muted);
}
.product-image-placeholder i,
.related-product-placeholder i {
font-size: 38px;
}
.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
top: 50%;
bottom: auto;
width: 44px;
height: 44px;
margin: 0 16px;
border: 1px solid rgba(255, 255, 255, 0.75);
border-radius: 50%;
background: rgba(23, 32, 51, 0.72);
transform: translateY(-50%);
opacity: 1;
}
.product-carousel .carousel-control-prev:hover,
.product-carousel .carousel-control-next:hover {
background: var(--product-primary);
}
.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon {
width: 18px;
height: 18px;
}
.product-thumbnails {
display: flex;
gap: 10px;
padding: 14px;
overflow-x: auto;
scrollbar-width: thin;
border-top: 1px solid var(--product-border);
background: #fff;
}
.product-thumbnail {
flex: 0 0 86px;
height: 68px;
padding: 4px;
overflow: hidden;
border: 2px solid transparent;
border-radius: 10px;
background: var(--product-surface);
cursor: pointer;
transition: border-color .2s ease, box-shadow .2s ease;
}
.product-thumbnail img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
}
.product-thumbnail.active,
.product-thumbnail:hover,
.product-thumbnail:focus-visible {
border-color: var(--product-primary);
box-shadow: 0 0 0 2px rgba(56, 93, 203, 0.12);
outline: none;
}
.product-summary {
width: 100%;
height: 100%;
padding-top: 2px;
}
.product-category-label {
display: inline-flex;
margin-bottom: 9px;
color: var(--product-primary);
font-size: 12px;
font-weight: 700;
letter-spacing: .08em;
text-decoration: none;
text-transform: uppercase;
}
.product-summary h1 {
margin: 0 0 12px;
color: var(--product-dark);
font-size: clamp(28px, 3vw, 40px);
font-weight: 750;
line-height: 1.1;
letter-spacing: -.025em;
}
.product-intro {
margin-bottom: 14px;
color: var(--product-text);
font-size: 15px;
line-height: 1.58;
}
.product-intro p:last-child {
margin-bottom: 0;
}
.product-tags {
display: flex;
flex-wrap: wrap;
gap: 7px;
margin: 0 0 14px;
}
.product-tags span {
display: inline-flex;
align-items: center;
gap: 5px;
padding: 5px 9px;
border-radius: 999px;
background: rgba(56, 93, 203, 0.09);
color: #284ba9;
font-size: 12px;
font-weight: 600;
}
.product-specs-card {
margin-top: 16px;
padding: 16px 18px;
border: 1px solid var(--product-border);
border-radius: 14px;
background: #fff;
}
.product-specs-card h2 {
margin: 0 0 6px;
color: var(--product-dark);
font-size: 16px;
font-weight: 700;
}
.product-specs {
margin: 0;
}
.product-spec-row {
display: grid;
grid-template-columns: minmax(120px, .85fr) 1.15fr;
gap: 12px;
padding: 7px 0;
border-bottom: 1px solid var(--product-border);
}
.product-spec-row:last-child {
padding-bottom: 0;
border-bottom: 0;
}
.product-spec-row:has(dd:only-child) {
grid-template-columns: 1fr;
}
.product-spec-row dt,
.product-spec-row dd {
margin: 0;
font-size: 14px;
line-height: 1.4;
}
.product-spec-row dt {
color: var(--product-muted);
font-weight: 500;
}
.product-spec-row dd {
color: var(--product-dark);
font-weight: 650;
}
.product-service-points {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 8px;
margin: 16px 0;
}
.product-service-points span {
display: flex;
flex-direction: column;
gap: 5px;
padding: 10px 8px;
border-radius: 12px;
background: var(--product-surface);
color: var(--product-dark);
font-size: 11px;
font-weight: 650;
line-height: 1.35;
text-align: center;
}
.product-service-points i {
color: var(--product-primary);
font-size: 18px;
}
.product-actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.product-button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 10px 18px;
border: 1px solid transparent;
border-radius: 10px;
font-size: 14px;
font-weight: 700;
text-decoration: none;
transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.product-button:hover {
transform: translateY(-2px);
}
.product-button-primary {
gap: 9px;
background: var(--product-primary);
color: #fff;
box-shadow: 0 10px 24px rgba(56, 93, 203, 0.22);
}
.product-button-primary:hover,
.product-button-primary:focus-visible {
background: #284ba9;
color: #fff;
}
.product-button-secondary {
border-color: #cfd6e2;
background: #fff;
color: var(--product-dark);
}
.product-button-secondary:hover,
.product-button-secondary:focus-visible {
border-color: var(--product-primary);
color: var(--product-primary);
}
.product-content-section,
.product-faq-section,
.related-products-section {
padding: clamp(54px, 7vw, 88px) 0;
}
.product-content-section,
.related-products-section {
background: var(--product-surface);
}
.product-section-heading {
margin-bottom: 30px;
}
.product-section-heading > span,
.product-section-heading > div > span {
display: block;
margin-bottom: 8px;
color: var(--product-primary);
font-size: 13px;
font-weight: 750;
letter-spacing: .1em;
text-transform: uppercase;
}
.product-section-heading h2 {
margin: 0;
color: var(--product-dark);
font-size: clamp(27px, 4vw, 38px);
font-weight: 750;
line-height: 1.2;
letter-spacing: -.02em;
}
.product-section-heading-row {
display: flex;
align-items: end;
justify-content: space-between;
gap: 20px;
}
.product-section-heading-row > a {
flex: 0 0 auto;
color: var(--product-primary);
font-weight: 700;
text-decoration: none;
}
.product-description-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 22px;
}
.product-description-block {
min-width: 0;
padding: clamp(24px, 3.4vw, 38px);
overflow-x: auto;
border: 1px solid var(--product-border);
border-radius: 16px;
background: #fff;
box-shadow: 0 12px 34px rgba(28, 43, 72, 0.055);
color: var(--product-text);
font-size: 16px;
line-height: 1.75;
}
.product-description-block:first-child,
.product-description-grid--single .product-description-block,
.product-description-block--cta {
grid-column: 1 / -1;
}
.product-description-block--cta {
position: relative;
padding-right: clamp(24px, 16vw, 260px);
overflow: hidden;
border-color: rgba(56, 93, 203, .22);
background: linear-gradient(120deg, #eef3ff 0%, #fff 72%);
}
.product-description-block--cta::after {
content: "CNC";
position: absolute;
right: 34px;
top: 50%;
color: rgba(56, 93, 203, .08);
font-size: clamp(64px, 9vw, 130px);
font-weight: 800;
line-height: 1;
transform: translateY(-50%);
pointer-events: none;
}
.detail-content > *:first-child {
margin-top: 0;
}
.detail-content > *:last-child {
margin-bottom: 0;
}
.detail-content h2,
.detail-content h3,
.detail-content h4 {
margin: 0 0 .65em;
color: var(--product-dark);
line-height: 1.3;
}
.detail-content h2 {
font-size: clamp(22px, 2.4vw, 30px);
font-weight: 750;
}
.detail-content p {
margin: 0 0 1em;
}
.detail-content p:last-child,
.detail-content ul:last-child,
.detail-content ol:last-child {
margin-bottom: 0;
}
.detail-content ul {
display: grid;
gap: 9px;
margin: 0;
padding: 0;
list-style: none;
}
.detail-content ul li {
position: relative;
padding-left: 25px;
}
.detail-content ul li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: var(--product-primary);
font-weight: 800;
}
.detail-content img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.detail-content iframe,
.detail-content video {
max-width: 100%;
}
.detail-content table {
width: 100%;
min-width: 620px;
border-collapse: collapse;
}
.detail-content th,
.detail-content td {
padding: 12px 14px;
border: 1px solid var(--product-border);
text-align: left;
}
.product-faq-list {
max-width: 980px;
}
.product-faq-item {
margin-bottom: 12px;
overflow: hidden;
border: 1px solid var(--product-border);
border-radius: 12px;
background: #fff;
}
.product-faq-item h3 {
margin: 0;
}
.product-faq-question {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
width: 100%;
padding: 19px 22px;
border: 0;
background: #fff;
color: var(--product-dark);
font-size: 16px;
font-weight: 700;
line-height: 1.45;
text-align: left;
}
.product-faq-question:hover,
.product-faq-question:focus-visible {
background: #f9fafc;
outline: none;
}
.product-faq-question i {
flex: 0 0 auto;
color: var(--product-primary);
transition: transform .25s ease;
}
.product-faq-question:not(.collapsed) i {
transform: rotate(45deg);
}
.product-faq-answer {
padding: 0 22px 21px;
color: var(--product-text);
line-height: 1.75;
}
.product-faq-answer p:last-child {
margin-bottom: 0;
}
.related-product-card {
height: 100%;
overflow: hidden;
border: 1px solid var(--product-border);
border-radius: 14px;
background: #fff;
transition: transform .25s ease, box-shadow .25s ease;
}
.related-product-card:hover {
transform: translateY(-5px);
box-shadow: 0 16px 38px rgba(28, 43, 72, 0.11);
}
.related-product-image {
display: flex;
align-items: center;
justify-content: center;
height: 230px;
padding: 18px;
overflow: hidden;
background: #fff;
}
.related-product-image img {
display: block;
width: 100%;
height: 100%;
object-fit: contain;
transition: transform .3s ease;
}
.related-product-card:hover .related-product-image img {
transform: scale(1.035);
}
.related-product-placeholder {
color: var(--product-muted);
}
.related-product-info {
padding: 20px;
border-top: 1px solid var(--product-border);
}
.related-product-info h3 {
min-height: 2.8em;
margin: 0 0 14px;
font-size: 18px;
font-weight: 700;
line-height: 1.4;
}
.related-product-info h3 a {
color: var(--product-dark);
text-decoration: none;
}
.related-product-info h3 a:hover {
color: var(--product-primary);
}
.related-product-link {
display: inline-flex;
align-items: center;
gap: 7px;
color: var(--product-primary);
font-size: 14px;
font-weight: 700;
text-decoration: none;
}
@media (min-width: 992px) {
.product-overview-row > .product-gallery-column,
.product-overview-row > .product-summary-column {
display: flex;
}
.product-carousel,
.product-carousel .carousel-inner,
.product-carousel .carousel-item {
height: 100%;
min-height: 0;
}
.product-carousel {
flex: 1 1 auto;
}
.product-main-image,
.product-image-placeholder {
height: 100%;
min-height: 0;
aspect-ratio: auto;
}
.product-summary {
position: static;
}
}
@media (max-width: 991.98px) {
.product-gallery-card,
.product-summary {
height: auto;
}
.product-main-image,
.product-image-placeholder {
aspect-ratio: 4 / 3;
}
.product-summary {
padding-top: 14px;
}
}
@media (max-width: 767.98px) {
.product-description-grid {
grid-template-columns: 1fr;
gap: 16px;
}
.product-description-block,
.product-description-block:first-child,
.product-description-block--cta {
grid-column: auto;
padding: 22px;
border-radius: 14px;
}
.product-description-block--cta::after {
display: none;
}
.product-breadcrumb li:not(:first-child):not(:last-child) {
display: none;
}
.product-overview-section {
padding: 34px 0 48px;
}
.product-gallery-card {
border-radius: 14px;
}
.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
width: 38px;
height: 38px;
margin: 0 10px;
}
.product-service-points {
grid-template-columns: 1fr;
}
.product-service-points span {
flex-direction: row;
align-items: center;
justify-content: flex-start;
padding: 12px 14px;
text-align: left;
}
.product-section-heading-row {
align-items: flex-end;
}
.related-product-image {
height: 210px;
}
}
@media (max-width: 575.98px) {
.product-main-image,
.product-image-placeholder {
aspect-ratio: 1 / 1;
padding: 16px;
}
.product-thumbnail {
flex-basis: 72px;
height: 58px;
}
.product-summary h1 {
font-size: 28px;
}
.product-specs-card {
padding: 18px;
}
.product-spec-row {
grid-template-columns: 1fr;
gap: 4px;
}
.product-actions {
display: grid;
grid-template-columns: 1fr;
}
.product-button {
width: 100%;
}
.product-section-heading-row {
display: block;
}
.product-section-heading-row > a {
display: inline-block;
margin-top: 14px;
}
.product-faq-question {
padding: 16px;
font-size: 15px;
}
.product-faq-answer {
padding: 0 16px 17px;
font-size: 15px;
}
.related-product-info h3 {
min-height: 0;
}
}
@media (prefers-reduced-motion: reduce) {
.product-detail-page *,
.product-detail-page *::before,
.product-detail-page *::after {
scroll-behavior: auto !important;
transition-duration: .01ms !important;
animation-duration: .01ms !important;
animation-iteration-count: 1 !important;
}
}