/* ========== ОСНОВНЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.exact-page {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ========== ВЕРХНЯЯ ТЕМНАЯ ПОЛОСА ========== */
.top-dark-bar {
    background: #1a2a24;
    padding: 12px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-menu {
    display: flex;
    gap: 32px;
}

.top-menu a {
    color: #d4cdc0;
    text-decoration: none;
    font-size: 13px;
}

.top-contacts {
    display: flex;
    gap: 28px;
}

.top-contacts span {
    color: #d4cdc0;
    font-size: 13px;
}

/* ========== ОСНОВНАЯ НАВИГАЦИЯ ========== */
.main-nav {
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ece4db;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e32;
    font-size: 14px;
    font-weight: 500;
}

.nav-links .beauty-medspa {
    color: #b87c4f;
    font-weight: 600;
}

.book-btn {
    background: #e6d9cb;
    padding: 10px 28px;
    text-decoration: none;
    color: #2c3e32;
    font-size: 14px;
    font-weight: 600;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 22px 48px 12px 48px;
    font-size: 13px;
    color: #b2aea4;
}

.breadcrumb a {
    text-decoration: none;
    color: #b2aea4;
}

.breadcrumb .current {
    color: #2c3e32;
    font-weight: 500;
}

/* ========== PRODUCT SECTION ========== */
.product-container {
    display: flex;
    gap: 60px;
    padding: 20px 48px 48px 48px;
    flex-wrap: wrap;
}

.left-column {
    flex: 1;
    min-width: 320px;
}

.product-image-area {
    background: #f7f2ea;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    aspect-ratio: 1 / 1.1;
}

.product-image-area img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ГАЛЕРЕЯ */
.gallery-section {
    margin-bottom: 20px;
}

.gallery-title {
    font-size: 12px;
    font-weight: 500;
    color: #8f9e95;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f0e8df;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    overflow: hidden;
}

.gallery-thumb.active {
    border-color: #b87c4f;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-stamp {
    font-size: 12px;
    color: #b87c4f;
    font-weight: 500;
    margin-top: 16px;
}

.right-column {
    flex: 1;
    min-width: 380px;
}

/* STEP BADGE */
.step-badge {
    display: inline-block;
    border: 1.5px solid #b87c4f;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #b87c4f;
    background: transparent;
    margin-bottom: 16px;
}

.product-name {
    font-size: 42px;
    font-weight: 500;
    color: #1e2e28;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.reviews-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.stars {
    color: #d4a373;
    font-size: 16px;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: 13px;
    color: #8f9e95;
}

.product-tagline {
    font-size: 13px;
    color: #b87c4f;
    font-weight: 500;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.price {
    font-size: 36px;
    font-weight: 600;
    color: #1e2e28;
    margin-bottom: 12px;
}

.pay-over-time {
    font-size: 13px;
    color: #8f9e95;
    margin-bottom: 28px;
}

.pay-over-time a {
    color: #b87c4f;
    text-decoration: none;
    font-weight: 500;
}

/* SIZE SELECTOR */
.size-selector {
    margin-bottom: 28px;
}

.size-label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e32;
    margin-bottom: 14px;
}

.size-options {
    display: flex;
    gap: 16px;
    width: 100%;
}

.size-option {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid #e2d8ce;
    font-size: 14px;
    font-weight: 500;
    background: white;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.size-option.active {
    border-color: #b87c4f;
    background: #fff9f3;
}

/* PURCHASE OPTIONS */
.purchase-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 1.5px solid #e2d8ce;
    background: white;
}

.purchase-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.purchase-left input {
    width: 18px;
    height: 18px;
    accent-color: #b87c4f;
}

.purchase-left label {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e32;
}

.purchase-price {
    font-weight: 600;
    color: #1e2e28;
    font-size: 15px;
}

/* CART ROW */
.cart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 20px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 44px;
    height: 52px;
    background: #f8f4ef;
    border: none;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    color: #2c3e32;
    border-left: 1.5px solid #e2d8ce;
    border-right: 1.5px solid #e2d8ce;
}

.qty-btn:first-child {
    border-left: 1.5px solid #e2d8ce;
    border-right: none;
}

.qty-btn:last-child {
    border-left: none;
    border-right: 1.5px solid #e2d8ce;
}

.qty-btn:hover {
    background: #ede5dc;
}

.qty-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    background: white;
}

.add-to-cart-btn {
    flex: 1;
    background: #2c3e32;
    color: white;
    border: none;
    padding: 0 24px;
    height: 52px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    background: #1e2e28;
}

/* ACTION LINKS */
.action-links {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 20px;
}

.wishlist-link {
    color: #8f9e95;
    text-decoration: none;
    font-size: 14px;
}

.wishlist-link:hover {
    color: #b87c4f;
}

/* ACCORDION */
.find-professional-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e32;
    margin: 8px 0 4px 0;
    padding: 8px 0 4px 0;
}

.accordion-section {
    margin-top: 0;
}

.accordion-item {
    border-bottom: 1px solid #efe7df;
}

.accordion-header {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #2c3e32;
}

.accordion-header:hover {
    color: #b87c4f;
}

.accordion-icon {
    font-size: 20px;
    color: #b87c4f;
    font-weight: 400;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: #6b7c74;
    font-size: 14px;
    line-height: 1.5;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding-bottom: 20px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* YOU MAY ALSO LIKE */
.you-may-also-like-block {
    margin-top: 32px;
    padding-top: 8px;
}

.you-may-also-like-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e32;
    margin-bottom: 16px;
}

.also-like-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fefbf7;
    border: 1px solid #efe7df;
    padding: 16px;
}

.also-like-img {
    width: 80px;
    height: 80px;
    background: #f0e8df;
    display: flex;
    align-items: center;
    justify-content: center;
}

.also-like-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.also-like-info {
    flex: 1;
}

.also-like-name {
    font-weight: 600;
    font-size: 15px;
    color: #1e2e28;
    margin-bottom: 4px;
}

.also-like-price {
    font-weight: 600;
    font-size: 18px;
    color: #1e2e28;
}

/* FOOTER */
.footer-main {
    background: #fefbf7;
    padding: 48px 48px 32px 48px;
    border-top: 1px solid #efe7df;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-block {
    flex: 1;
    min-width: 150px;
}

.footer-block .footer-head {
    font-weight: 600;
    color: #2c3e32;
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-block a {
    display: block;
    text-decoration: none;
    color: #7c8c84;
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-block a:hover {
    color: #b87c4f;
}

.footer-bottom-bar {
    background: #fefbf7;
    padding: 20px 48px 40px 48px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: #9faea5;
    border-top: 1px solid #efe7df;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 900px) {
    .top-dark-bar, .main-nav, .breadcrumb, .product-container, .footer-main, .footer-bottom-bar {
        padding-left: 24px;
        padding-right: 24px;
    }
    .cart-row {
        flex-wrap: wrap;
    }
    .also-like-card {
        flex-direction: column;
        text-align: center;
    }
    .size-options {
        flex-wrap: wrap;
    }
    .size-option {
        white-space: normal;
        flex: 1;
        min-width: 140px;
    }
    .product-name {
        font-size: 32px;
    }
    .price {
        font-size: 28px;
    }
}