/* === СТРАНИЦА ТОВАРА — ФИНАЛЬНАЯ ВЕРСИЯ БЕЗ РАДИУСОВ И ТЕНЕЙ === */

.content-area {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    overflow-x: hidden;
}

.product-container {
    position: relative;
    max-width: 1400px;
    padding: 0 20px;
    min-height: 100vh;
}

/* === КАРТИНКА — 55vw, постоянная высота === */
.product-main-image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 48vw !important;
    height: 90vh !important;
    max-height: 950px !important;
    object-fit: cover !important;
    object-position: center;
    z-index: 10;
    opacity: 0;
    transform: translate(-140px, -140px) scale(0.88);
    animation: slideInFromTopLeft 1.6s 0.1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-details h1 {
    margin-bottom: 20px !important;
}
/* === ОПИСАНИЕ — узкий блок, ТА ЖЕ ВЫСОТА ЧТО И ФОТО === */
.single-product .product-details {
    margin-left: clamp(500px, 55vw, 900px) !important;
    margin-top: 150px !important;
    padding: 20px 20px;
    background: #fff;
    border: 1px solid #eee;
    min-height: 55vh !important;
    max-height: 950px !important;
    height: 55vh !important;           /* жёстко фиксируем высоту */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeInUp 1.2s 0.6s ease-out forwards;
}

/* === КНОПКА В КОРЗИНУ === */
.single-product .product-add-to-cart {
    margin-left: clamp(500px, 55vw, 900px) !important;
    margin-top: 40px;
    max-width: 600px;
}

/* === ТЕКСТ === */
.product-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-family: "PT Mono", monospace;
    line-height: 1.1;
}

.product-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-family: "PT Mono", monospace;
    margin-bottom: 32px;
}

/* === КНОПКА === */
.single_add_to_cart_button {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 22px 40px;
    font-size: 17px;
    font-family: "PT Mono", monospace;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    border: none;
}

.single_add_to_cart_button:hover {
    background: #fff;
    color: #000;
    border: 1px solid #000;
    transform: translateY(-4px);
}

/* === АДАПТИВ — только на мобилке переключаемся === */
@media (max-width: 1040px) {
    .product-main-image {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: -100px;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .single-product .product-details,
    .single-product .product-add-to-cart {
        margin-left: 0 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 40px 24px !important;
    }
    
    .product-container {
        margin: 40px auto;
        padding: 0 16px;
        min-height: auto !important;
    }
    
    .single-product .product-add-to-cart {
        margin-top: 32px;
    }
}

/* === АНИМАЦИИ === */
@keyframes slideInFromTopLeft {
    0% { opacity: 0; transform: translate(-140px, -140px) scale(0.88); }
    100% { opacity: 1; transform: translate(0,0) scale(1); }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}


/* === НИЖНИЙ БЛОК — КАК У TYPOLOGY (2025) === */
.second-block-bottom-block {
    padding: 120px 0 160px;
    background: #FAF7F4;
}

.second-block-bottom-block .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Слоган — огромный, прижат к левому краю */
.second-block-bottom-block h2 {
    font-family: "PT Mono", monospace;
    font-size: clamp(18px, 10vw, 36px);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: -2px;
    color: #111;
    margin: 0 0 100px 0;
    text-align: left;
}

/* Две колонки */
.second-block-bottom-block .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 100px;
    align-items: start;
}

/* Фото товара — центрировано */
.second-block-bottom-block .order-2 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Текст справа — чисто, дорого, как у Typology */
.second-block-bottom-block .order-1 {
    padding-top: 20px;
    font-family: "PT Mono", monospace;
    font-size: 19px;
    line-height: 1.75;
    color: #222;
}

.second-block-bottom-block .order-1 p {
    margin: 0 0 32px 0;
}

.second-block-bottom-block .order-1 p:last-child {
    margin-bottom: 0;
}

/* Полный состав — отделён линией */
.second-block-bottom-block .border-t {
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #ccc;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

/* === АДАПТИВ === */
@media (max-width: 1024px) {
    .second-block-bottom-block .grid {
        gap: 60px;
    }
    .second-block-bottom-block h2 {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
            .second-block-bottom-block {
        padding: 80px 0 120px;
    }
    
    .second-block-bottom-block h2 {
        font-size: 64px;
        margin-bottom: 60px;
    }
    
    .second-block-bottom-block .grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .second-block-bottom-block .order-2,
    .second-block-bottom-block .order-1 {
        order: unset !important;
    }
    
    .second-block-bottom-block .order-2 img {
        max-width: 320px;
    }
    
    .second-block-bottom-block .order-1 {
        font-size: 18px;
        padding-top: 0;
    }
    
    .second-block-bottom-block .border-t {
        padding-top: 40px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .second-block-bottom-block h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }
}