/* БАЗОВЫЕ СТИЛИ ДЛЯ СТРАНИЦЫ ТОВАРА */

/* Основной контейнер товара */
.woocommerce div.product {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Изображения товара */
.woocommerce div.product div.images {
    width: 100%;
    max-width: 500px;
}

.woocommerce div.product div.images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Информация о товаре */
.woocommerce div.product div.summary {
    width: 100%;
}

/* Название товара */
.woocommerce div.product h1.product_title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

/* Цена */
.woocommerce div.product .price {
    font-size: 28px;
    font-weight: 700;
    color: #e8732e;
    margin-bottom: 20px;
}

/* Кнопки */
.woocommerce div.product .single_add_to_cart_button {
    background: #e8732e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.woocommerce div.product .single_add_to_cart_button:hover {
    background: #d16525;
    transform: translateY(-1px);
}

/* Описание товара */
.woocommerce div.product .woocommerce-product-details__short-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* =========================================== */
/* ПРОСТОЕ МЕНЮ ПОКУПКИ - КАК ПРОСИЛИ */
/* =========================================== */

/* Скрываем поле количества */
.woocommerce div.product .quantity {
    display: none !important;
}

/* Скрываем краткое описание */
.woocommerce div.product .woocommerce-product-details__short-description {
    display: none !important;
}

/* Название товара - в одну строку */
.woocommerce div.product h1.product_title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Цена - справа */
.woocommerce div.product .price {
    font-size: 32px;
    font-weight: 700;
    color: #e8732e;
    text-align: right;
    margin-bottom: 20px;
    display: block;
}

/* Кнопка "В корзину" - без иконки */
.woocommerce div.product .single_add_to_cart_button {
    background: #e8732e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 200px;
    margin: 0 0 10px auto;
}

.woocommerce div.product .single_add_to_cart_button:hover {
    background: #d16525;
    transform: translateY(-1px);
}

/* Убираем иконку корзины */
.woocommerce div.product .single_add_to_cart_button::before {
    display: none !important;
}

/* Кнопка "Купить сейчас" */
.woocommerce div.product .buy-now-button {
    background: transparent;
    color: #e8732e;
    border: 2px solid #e8732e;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    text-decoration: none;
    width: 200px;
    margin: 0 0 10px auto;
}

.woocommerce div.product .buy-now-button:hover {
    background: #e8732e;
    color: #fff;
    transform: translateY(-1px);
}

/* Статус наличия */
.woocommerce div.product .product-stock-wrapper {
    text-align: right;
    margin-bottom: 15px;
}

.woocommerce div.product .in-stock {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.15);
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
    margin-left: auto;
    width: fit-content;
}