/* --- Premium Product Section CSS --- */
.ux-main-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    width: 100%;
}

/* 1. Image Gallery (Side Thumbnails) */
.ux-gallery-wrapper {
    display: flex;
    gap: 15px;
}

.ux-thumb-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ux-thumb-btn {
    width: 65px;
    height: 65px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 2px;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.ux-thumb-btn:hover, .ux-thumb-btn.active {
    border-color: #2874f0;
    box-shadow: 0 0 8px rgba(40,116,240,0.2);
}

.ux-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ux-main-display {
    flex: 1;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* 2. Content Styling */
.ux-prod-title {
    font-size: 24px;
    font-weight: 500;
    color: #111;
    line-height: 1.3;
    margin-bottom: 10px;
}

.ux-price-area {
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.ux-price-main {
    font-size: 30px;
    font-weight: 500;
    color: #0F1111;
}

.ux-discount-pill {
    color: #CC0C39;
    font-size: 24px;
    margin-right: 10px;
}

/* 3. Trust Badges (Amazon Style) */
.ux-trust-bar {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.ux-trust-item {
    text-align: center;
    flex: 1;
}

.ux-trust-item i {
    font-size: 20px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.ux-trust-item span {
    font-size: 11px;
    color: #007185;
    font-weight: 500;
    display: block;
    line-height: 1.2;
}

/* 4. Action Area (Qty & Buttons) */
.ux-action-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ux-qty-control {
    display: flex;
    border: 1px solid #888;
    border-radius: 8px;
    overflow: hidden;
    height: 45px;
}

.ux-qty-control button {
    width: 40px;
    border: none;
    background: #f1f1f1;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.ux-qty-control input {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.ux-btn-container {
    display: flex;
    gap: 10px;
    flex: 1;
}

.ux-btn-cart, .ux-btn-buy {
    flex: 1;
    height: 48px;
    border: none;
    border-radius: 50px; /* Modern Rounded Pill Style */
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.ux-btn-cart { background: #ffd814; color: #0f1111; }
.ux-btn-cart:hover { background: #f7ca00; }

.ux-btn-buy { background: #ffa41c; color: #0f1111; }
.ux-btn-buy:hover { background: #fa8900; }

/* Responsive Mobile */
@media (max-width: 768px) {
    .ux-gallery-wrapper { flex-direction: column-reverse; }
    .ux-thumb-column { flex-direction: row; justify-content: center; }
}