.product-page { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2rem; align-items: start; margin-bottom: 2rem;}@media (max-width: 992px) { .product-page { grid-template-columns: minmax(0, 1fr); gap: 1.5rem; }}.product-page__gallery { display: flex; flex-direction: column; gap: 0.75rem; min-width: 0;}.product-page__stage { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; aspect-ratio: 1/1; padding: 0.5rem; background: var(--white); border: 1px solid var(--gray-300); border-radius: 1.5rem; overflow: hidden; cursor: zoom-in; transition: border-color 0.2s ease;}.product-page__stage:hover { border-color: var(--gray-500);}.product-page__stage-img { display: block; width: 100%; height: 100%; -o-object-fit: contain; object-fit: contain; -o-object-position: center; object-position: center; transition: transform 0.3s ease;}.product-page__stage:hover .product-page__stage-img { transform: scale(1.04);}.product-page__zoom { position: absolute; right: 0.75rem; bottom: 0.75rem; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: var(--gray-700); background: var(--white); border: 1px solid var(--gray-300); border-radius: 50%; transition: color 0.2s ease, border-color 0.2s ease;}.product-page__stage:hover .product-page__zoom { color: var(--main); border-color: var(--main);}.product-page__zoom svg { width: 18px; height: 18px;}.product-page__thumbs { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.25rem; scrollbar-width: thin;}.product-page__thumb { flex-shrink: 0; width: 74px; height: 74px; padding: 0.25rem; background: var(--white); border: 1px solid var(--gray-300); border-radius: 0.8rem; overflow: hidden; cursor: pointer; transition: border-color 0.2s ease, box-shadow 0.2s ease;}.product-page__thumb:hover { border-color: var(--gray-500);}.product-page__thumb--active { border-color: var(--main); box-shadow: 0 0 0 1px var(--main);}.product-page__thumb img { display: block; width: 100%; height: 100%; -o-object-fit: contain; object-fit: contain;}.product-page__summary { display: flex; flex-direction: column; gap: 1rem; min-width: 0;}.product-page__title { margin: 0; font-size: 28px; font-weight: 700; line-height: 34px; color: var(--heading);}@media (max-width: 768px) { .product-page__title { font-size: 22px; line-height: 28px; }}.product-page__meta { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.5rem;}.product-page__chip { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.25rem 0.6rem; font-size: 13px; font-weight: 300; line-height: 20px; color: var(--description); text-decoration: none; background: var(--white); border: 1px solid var(--gray-400); border-radius: 0.5rem; transition: color 0.2s ease, border-color 0.2s ease;}a.product-page__chip:hover { color: var(--main); border-color: var(--main);}.product-page__chip svg { flex-shrink: 0; width: 14px; height: 14px;}.product-page__chip--stock { color: var(--main); border-color: var(--main);}.product-page__rating { display: flex; align-items: center; gap: 0.5rem;}.product-page__stars { display: inline-flex; gap: 2px;}.product-page__stars svg { width: 16px; height: 16px; color: var(--gray-400);}.product-page__stars svg.is-on { color: #f5a623;}.product-page__rating-link { font-size: 13px; font-weight: 300; color: var(--description); text-decoration: none; transition: color 0.2s ease;}.product-page__rating-link:hover { color: var(--main);}.product-page__pricing { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem; background: var(--gray-100); border-radius: 0.8rem;}.product-page__price-row { display: flex; flex-direction: row; align-items: baseline; flex-wrap: wrap; gap: 0.75rem;}.product-page__pricing .price-new { font-size: 28px; font-weight: 700; line-height: 34px; color: var(--heading);}.product-page__pricing .price-old { font-size: 18px; font-weight: 300; color: red; text-decoration: line-through;}.product-page__price-note { font-size: 12px; font-weight: 300; line-height: 16px; color: var(--description);}.product-page__discounts { display: flex; flex-direction: column; gap: 0.25rem; margin: 0; padding: 0; list-style: none;}.product-page__discount { display: flex; align-items: center; gap: 0.4rem; font-size: 13px; font-weight: 300; line-height: 20px; color: var(--description);}.product-page__discount svg { flex-shrink: 0; width: 14px; height: 14px; color: var(--main);}.product-page__options { display: flex; flex-direction: column; gap: 1rem;}.product-page__options-title,.product-page__block-title { margin: 0; font-size: 16px; font-weight: 500; line-height: 22px; color: var(--heading);}.product-option { display: flex; flex-direction: column; gap: 0.4rem;}.product-option__label { font-size: 14px; font-weight: 400; line-height: 20px; color: var(--heading);}.product-option__label--required::after { content: "*"; margin-left: 0.2rem; color: red;}.product-option__hint { font-size: 12px; font-weight: 300; line-height: 16px; color: var(--description);}.product-page .form-control,.product-page .form-select { font-size: 14px; font-weight: 300; color: var(--color); background: var(--white); border: 1px solid var(--gray-400); border-radius: 0.6rem; padding: 0.55rem 0.75rem; box-shadow: none;}.product-page .form-control:focus,.product-page .form-select:focus { border-color: var(--main); box-shadow: none;}.product-option__choices { display: flex; flex-direction: column; gap: 0.4rem;}.product-option__choice { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 0.75rem; background: var(--white); border: 1px solid var(--gray-400); border-radius: 0.6rem; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;}.product-option__choice:hover { border-color: var(--main);}.product-option__choice input { flex-shrink: 0; width: 18px; height: 18px; margin: 0; accent-color: var(--main); cursor: pointer;}.product-option__choice-img { flex-shrink: 0; width: 34px; height: 34px; -o-object-fit: contain; object-fit: contain; border-radius: 0.4rem;}.product-option__choice-text { font-size: 14px; font-weight: 300; line-height: 20px; color: var(--color);}.product-option__choice-price { margin-left: auto; font-size: 13px; font-weight: 400; color: var(--main); white-space: nowrap;}.product-page__buy { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.5rem;}.product-page__qty-row { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; flex-wrap: wrap;}.product-page__qty { display: flex; flex-direction: row; align-items: center; gap: 0.5rem;}.product-page__qty-input { width: 56px; height: 38px; padding: 0 0.25rem; font-size: 14px; text-align: center; color: var(--color); background: var(--white); border: 1px solid var(--gray-400); border-radius: 0.5rem;}.product-page__qty-input::-webkit-outer-spin-button,.product-page__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0;}.product-page__actions { display: flex; flex-direction: row; align-items: center; gap: 0.5rem;}.product-btn { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 0.5rem; flex-grow: 1; height: 45px; padding: 0 1.25rem; font-family: inherit; font-size: 14px; line-height: 18px; color: var(--main-contrast); background: var(--main); border: 1px solid var(--main); border-radius: 0.6rem; cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;}.product-btn:hover { background: var(--main-active); border-color: var(--main-active);}.product-btn:disabled { opacity: 0.6; cursor: default;}.product-btn svg { flex-shrink: 0; width: 18px; height: 18px;}.product-btn--icon { flex-grow: 0; flex-shrink: 0; width: 45px; height: 45px; padding: 0; color: var(--gray-600); background: var(--white); border: 1px solid var(--gray-400);}.product-btn--icon:hover { color: var(--main); background: var(--white); border-color: var(--main);}.product-btn--ghost { flex-grow: 0; color: var(--gray-700); background: var(--white); border: 1px solid var(--gray-400);}.product-btn--ghost:hover { color: var(--main); background: var(--white); border-color: var(--main);}.product-tabs { margin-bottom: 2rem;}.product-tabs__nav { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; padding: 0; border: none; list-style: none;}.product-tabs__link { display: flex; align-items: center; gap: 0.5rem; height: 42px; padding: 0 1rem; font-size: 14px; font-weight: 400; color: var(--gray-700); text-decoration: none; background: var(--gray-100); border: 1px solid transparent; border-radius: 0.6rem; cursor: pointer; transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;}.product-tabs__link:hover { color: var(--main);}.product-tabs__link.active { color: var(--main-contrast); background: var(--main); border-color: var(--main);}.product-tabs__link svg { flex-shrink: 0; width: 16px; height: 16px;}.product-tabs__panel { font-size: 14px; font-weight: 300; line-height: 24px; color: var(--description);}.product-tabs__panel img { max-width: 100%; height: auto; border-radius: 0.8rem;}.product-attributes { display: flex; flex-direction: column; gap: 1.5rem;}.product-attributes__group-title { margin: 0 0 0.5rem; font-size: 16px; font-weight: 500; color: var(--heading);}.product-attributes__table { width: 100%; border-collapse: collapse;}.product-attributes__table tr { border-bottom: 1px solid var(--gray-300);}.product-attributes__table tr:last-child { border-bottom: none;}.product-attributes__table th,.product-attributes__table td { padding: 0.6rem 0; font-size: 14px; font-weight: 300; line-height: 20px; text-align: left; vertical-align: top;}.product-attributes__table th { width: 45%; color: var(--description);}.product-attributes__table td { color: var(--color);}.product-review { display: flex; flex-direction: column; gap: 0.35rem; padding: 1rem; background: var(--gray-100); border-radius: 0.8rem; margin-bottom: 0.75rem;}.product-review__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;}.product-review__author { font-size: 14px; font-weight: 500; color: var(--heading);}.product-review__date { font-size: 12px; font-weight: 300; color: var(--description);}.product-review__text { font-size: 14px; font-weight: 300; line-height: 22px; color: var(--color);}.product-review-form { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem;}.product-review-form__rating { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;}.product-review-form__scale { display: flex; align-items: center; gap: 0.5rem; font-size: 13px; font-weight: 300; color: var(--description);}.product-review-form__scale input { accent-color: var(--main); cursor: pointer;}.product-related { margin-bottom: 2rem;}.product-related__title { margin: 0 0 1rem; font-size: 20px; font-weight: 500; color: var(--heading);}.gallery-modal .modal-content { border: none; border-radius: 1.5rem; overflow: hidden;}.gallery-modal .modal-header { border-bottom: 1px solid var(--gray-300);}.gallery-modal .modal-title { font-size: 16px; font-weight: 500; color: var(--heading);}.gallery-modal .modal-body { padding: 1rem;}.gallery-modal__slide { display: flex; align-items: center; justify-content: center; aspect-ratio: 1/1; background: var(--white); border: 1px solid var(--gray-300); border-radius: 1rem; overflow: hidden;}.gallery-modal__slide img { display: block; max-width: 100%; max-height: 100%; -o-object-fit: contain; object-fit: contain;}.gallery-modal .swiper-slide { max-width: 100% !important; margin-right: 0 !important;}.gallery-modal .swiper-button-next,.gallery-modal .swiper-button-prev { color: var(--main);}.gallery-modal .swiper-pagination-bullet-active { background: var(--main);}.product-page__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; font-size: 13px; font-weight: 300; color: var(--description);}.product-option__error { color: red;}