* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --bg: #ffffff;
    --text: #000000;
    --text-light: #666666;
    --border: #e0e0e0;
    --accent: #000000;
    --hover: #f5f5f5;
  }
  
html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}
  
  .page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Навигация */
  .navbar {
    padding: 24px 40px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
    min-height: 64px;
    display: flex;
    align-items: center;
  }
  
  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    gap: 24px;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }
  
  .nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
  }
  
  .nav-icon {
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    transition: opacity 0.2s;
    cursor: pointer;
    flex-shrink: 0;
  }
  
  .nav-icon:hover {
    opacity: 0.6;
  }
  
  .nav-icon {
    position: relative;
  }
  
  .nav-icon svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  
  .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--text);
    color: var(--bg);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
  }
  
  .nav-brand {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.2s;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
  }
  
  .nav-brand:hover {
    opacity: 0.6;
  }
  
  .nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    text-transform: lowercase;
    transition: opacity 0.2s;
  }
  
  .nav-link:hover {
    opacity: 0.6;
  }
  
  /* Основной контент */
  .main-content {
    flex: 1;
    padding: 48px 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .product-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
  }
  
  /* Галерея изображений */
  .product-images {
    position: sticky;
    top: 100px;
    max-width: 100%;
    overflow: hidden;
  }
  
  .image-gallery {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 100%;
  }
  
  .main-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg);
    cursor: pointer;
    position: relative;
  }
  
  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%;
  }
  
  .thumbnail-images {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    width: 100%;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  }
  
  .thumbnail-images::-webkit-scrollbar {
    height: 4px;
  }
  
  .thumbnail-images::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .thumbnail-images::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
  }
  
  .thumbnail {
    width: 80px;
    height: 80px;
    min-width: 80px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    overflow: hidden;
    background: var(--bg);
  }
  
  .thumbnail.active {
    border-color: var(--text);
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Информация о товаре */
  .product-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .product-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .product-title {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  
  .product-subtitle {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
  }
  
  .product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-size: 24px;
    font-weight: 400;
    margin-top: 8px;
  }
  
  .price-current {
    font-size: 24px;
  }
  
  .price-currency {
    font-size: 18px;
  }
  
  /* Выбор размера */
  .size-selector {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .size-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .size-btn {
    padding: 12px 24px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 56px;
  }
  
  .size-btn:hover {
    background: var(--hover);
  }
  
  .size-btn.selected {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
  }
  
  .size-guide-link {
    font-size: 12px;
  }
  
  .size-guide-btn {
    background: none;
    border: none;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--text);
    padding: 0 0 2px 0;
    font-size: 12px;
    cursor: pointer;
    transition: opacity 0.2s;
    font-weight: 400;
    font-family: inherit;
  }
  
  .size-guide-btn:hover {
    opacity: 0.6;
  }
  
  /* Кнопка покупки */
  .buy-section {
    position: relative;
  }
  
  .btn-buy {
    width: 100%;
    padding: 16px 24px;
    background: var(--text);
    color: var(--bg);
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
    font-weight: 400;
  }
  
  .btn-buy:hover {
    opacity: 0.8;
  }
  
  .btn-buy:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  /* Табы */
  .product-tabs {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 8px;
  }
  
  .tab-buttons {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
  }
  
  .tab-btn {
    padding: 10px 0;
    background: none;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
    font-weight: 400;
  }
  
  .tab-btn:hover {
    color: var(--text);
  }
  
  .tab-btn.active {
    color: var(--text);
    border-bottom-color: var(--text);
  }
  
  .tab-content {
    min-height: 200px;
  }
  
  .tab-panel {
    display: none;
  }
  
  .tab-panel.active {
    display: block;
  }
  
  .tab-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
  }
  
  .tab-text p {
    margin-bottom: 16px;
  }
  
  .tab-text p:last-child {
    margin-bottom: 0;
  }
  
  .tab-text strong {
    font-weight: 500;
  }
  
  .tab-text em {
    font-style: italic;
    color: var(--text-light);
  }
  
  /* Таймер */
  .timer-section {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 8px;
  }
  
  .timer-section:hover {
    opacity: 0.7;
  }
  
  .timer-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--text-light);
  }
  
  .timer-countdown {
    font-size: 18px;
    font-weight: 400;
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
  }
  
  /* Модальные окна */
  .modal,
  .order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .modal.active,
  .order-modal.active {
    display: flex;
    opacity: 1;
  }
  
  .modal-content {
    background: var(--bg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
  }
  
  .modal.active .modal-content,
  .order-modal.active .modal-content {
    transform: scale(1);
  }
  
  .modal-content-large {
    max-width: 700px;
  }
  
  /* Корзина без скроллбара - статичная */
  #cartModal .modal-content {
    overflow-y: visible;
    overflow-x: hidden;
    max-height: none;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  
  #cartModal {
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  #cartModal .cart-items,
  #cartModal .cart-summary {
    overflow: visible;
  }
  
  #cartModal .checkout-form {
    overflow: visible;
  }
  
  /* Табы в модальном окне */
  .modal-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
  }
  
  .modal-tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
    font-weight: 400;
  }
  
  .modal-tab-btn:hover {
    color: var(--text);
  }
  
  .modal-tab-btn.active {
    color: var(--text);
    border-bottom-color: var(--text);
  }
  
  /* Формы авторизации */
  .auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* Корзина */
  .cart-items {
    margin-bottom: 30px;
  }
  
  .cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
  }
  
  .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
  }
  
  .cart-item-info {
    flex: 1;
  }
  
  .cart-item-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .cart-item-details {
    font-size: 12px;
    color: var(--text-light);
  }
  
  .cart-item-price {
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
  }
  
  .cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    padding: 5px 10px;
  }
  
  .quantity-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--text);
    padding: 0 5px;
    line-height: 1;
  }
  
  .quantity-btn:hover {
    opacity: 0.6;
  }
  
  .quantity-value {
    min-width: 30px;
    text-align: center;
    font-size: 14px;
  }
  
  .remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
  }
  
  .remove-item:hover {
    color: var(--text);
  }
  
  .cart-total {
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
  }
  
  .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
  }
  
  .total-price {
    font-size: 20px;
  }
  
  .checkout-form h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 32px 0 24px 0;
    font-weight: 500;
  }
  
  .checkout-form h3:first-child {
    margin-top: 0;
  }
  
  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modal-content h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-group label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 80px;
  }
  
  .form-group .btn-activate {
    margin-top: 8px;
    padding: 8px 16px;
    background: var(--text);
    color: var(--bg);
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: flex-start;
  }
  
  .form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .form-checkboxes label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
  }
  
  .form-checkboxes input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
  }
  
  .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .payment-methods label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
  }
  
  .payment-methods input[type="radio"] {
    cursor: pointer;
  }
  
  .btn-submit {
    padding: 18px;
    background: var(--text);
    color: var(--bg);
    border: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 10px;
  }
  
  .btn-submit:hover {
    opacity: 0.8;
  }
  
  /* Видео страница */
  .video-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 2000;
    align-items: center;
    justify-content: center;
  }
  
  .video-page.active {
    display: flex;
  }
  
  .back-button {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 20;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #000;
  }
  
  .play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
  }
  
  .play-button-wrapper.hidden {
    display: none;
  }
  
  .play-button {
    width: 0;
    height: 0;
    border-left: 30px solid #fff;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    margin-left: 10px;
  }
  
  .loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
  
  .countdown-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: #fff;
  }
  
  .countdown-text {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .countdown-timer {
    font-size: 36px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
  }
  
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
  }
  
  .video-container.visible {
    opacity: 1;
  }
  
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Модальное окно полноэкранного просмотра */
  .image-fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .image-fullscreen-modal.active {
    display: flex;
    opacity: 1;
  }
  
  .fullscreen-image-container {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .fullscreen-image-container img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  
  .fullscreen-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
  }
  
  .fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }
  
  .fullscreen-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
    font-weight: 300;
    line-height: 1;
  }
  
  .fullscreen-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
  }
  
  .fullscreen-arrow-left {
    left: 30px;
  }
  
  .fullscreen-arrow-right {
    right: 30px;
  }
  
  .fullscreen-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
  }
  
  /* Футер */
  .footer {
    padding: 48px 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
  }
  
  .footer-links a:hover {
    opacity: 0.6;
  }
  
  .footer-brand {
    font-size: 12px;
    text-transform: lowercase;
    letter-spacing: 2px;
  }
  
  .footer-sku {
    font-size: 12px;
    color: var(--text-light);
  }
  
/* Адаптивность */
@media (max-width: 1024px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 48px;
    width: 100%;
    max-width: 100%;
  }

  .product-images {
    position: static;
    max-width: 100%;
    width: 100%;
  }

  .image-gallery {
    max-width: 100%;
    width: 100%;
  }

  .main-image {
    max-width: 100%;
    width: 100%;
  }
}
  
@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
    min-height: 56px;
  }

  .nav-container {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }

  .nav-brand {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .nav-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .nav-icon svg {
    width: 18px;
    height: 18px;
  }

  .main-content {
    padding: 24px 16px;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  .product-container {
    gap: 32px;
    width: 100%;
    max-width: 100%;
  }

  .product-images {
    max-width: 100%;
    width: 100%;
  }

  .thumbnail {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .tab-buttons {
    gap: 24px;
    overflow-x: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
  
@media (max-width: 480px) {
  .navbar {
    padding: 16px;
    min-height: 56px;
  }

  .nav-container {
    gap: 16px;
  }

  .nav-brand {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .nav-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .nav-icon svg {
    width: 16px;
    height: 16px;
  }

  .main-content {
    padding: 24px 16px;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  .product-container {
    width: 100%;
    max-width: 100%;
  }

  .product-images {
    max-width: 100%;
    width: 100%;
  }

  .main-image {
    max-width: 100%;
    width: 100%;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .product-title {
    font-size: 20px;
  }

  .modal-content {
    padding: 30px 20px;
    max-width: 100%;
    width: calc(100% - 40px);
  }
  
  /* Корзина без скроллбара на мобильных */
  #cartModal .modal-content {
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
    height: auto;
  }
  
  #cartModal {
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .fullscreen-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .fullscreen-arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .fullscreen-arrow-left {
    left: 15px;
  }

  .fullscreen-arrow-right {
    right: 15px;
  }

  .fullscreen-counter {
    bottom: 15px;
    font-size: 12px;
    padding: 6px 12px;
  }
}
  