.product-page-section {
    padding: 20px 140px 20px 140px;
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.product-page-section * {
    box-sizing: border-box;
}

.prod-container {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

.prod-gallery {
    flex: 0 0 85%;
    max-width: 85%;
    min-width: 0;
}

.prod-info {
    flex: 1;
    min-width: 0;
}

.main-image-wrapper {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.tiktok-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: normal;
    color: #000;
}

.main-prod-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.prod-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 5px;
}

.prod-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumb-img {
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    object-fit: cover;
    opacity: 0.6;
    transition: all 0.2s;
}

.thumb-img:hover, .thumb-img.active {
    opacity: 1;
    border-color: #e27890;
}

.nav-arrow {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-arrow:hover {
    background: #f9f9f9;
    color: #000;
}

.prod-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #000;
    margin-top: 0;
}

.prod-benefits {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.prod-benefits li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-box {
    border: 2px solid #e27890;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff0f4;
    position: relative;
    cursor: pointer;
}

.pricing-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #e27890;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    background: #fff;
    flex-shrink: 0;
}

.radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #e27890;
    border-radius: 50%;
}

.deal-title {
    font-weight: 800;
    font-size: 16px;
    color: #000;
    margin-right: auto;
}

.stock-tag {
    background: #d9534f;
    color: #fff;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-sub {
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #555;
    align-items: center;
    margin-top: 5px;
}

.price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 13px;
}

.new-price {
    font-weight: 800;
    color: #d9534f;
    font-size: 18px;
}

.add-to-cart-btn {
    width: 100%;
    background: #2e8b57;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.add-to-cart-btn:hover {
    background: #257046;
}

.accordion-container {
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.acc-item {
    border-bottom: 1px solid #eee;
}

.acc-header {
    display: flex;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #222;
    text-align: left;
}

.acc-header svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    fill: currentColor;
}

.acc-icon {
    margin-left: auto;
    font-size: 20px;
    color: #777;
    line-height: 1;
    flex-shrink: 0;
}

.acc-icon::after {
    content: '+';
}

.acc-item.open .acc-icon::after {
    content: '-';
}

.acc-content {
    display: none;
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding-left: 40px;
}

.acc-item.open .acc-content {
    display: block;
}

.ba-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 10px;
}

.ba-gallery img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

@media (max-width: 900px) {
    .product-page-section {
        padding: 10px 15px !important;
        display: block;
    }

    .prod-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        flex-direction: column !important;
        gap: 15px;
        align-items: stretch;
    }

    .prod-gallery {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        margin-bottom: 10px;
    }

    .prod-info {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 5px;
    }

    .prod-title {
        font-size: 26px;
        line-height: 1.2;
        margin-top: 5px;
        text-align: left;
    }

    .prod-thumbnails {
        justify-content: flex-start;
    }

    .thumb-img {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }

    .pricing-sub {
        padding-left: 0;
    }

    .old-price {
        text-align: end;
    }

    .new-price {
        text-align: end;
    }

    .add-to-cart-btn {
        padding: 18px;
        margin-bottom: 0;
    }
}