/* product extra info */
.sohan-product-extra {
    background: #fafafa;
    border: 1px solid #e6e6e6;
    padding: 12px;
    margin-top: 12px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    color: #222;
}

.sohan-product-extra p {
    margin: 5px 0; /* compact gap between lines */
}

.sohan-product-extra strong {
    display: inline-block;
    width: 80px; /* small label width to align fields */
    font-weight: 600;
    color: #111;
}

/* images inside extra info (if any) */
.sohan-product-extra img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 6px 0;
}

/* taxonomy link styling */
.sohan-tax-link {
    color: #e63946;
    text-decoration: none;
    font-weight: 500;
}
.sohan-tax-link:hover {
    text-decoration: underline;
}

/* Bestseller badge */
.sohan-bestseller-badge {
    display: inline-block;
    background: linear-gradient(90deg,#ff6b6b,#ff3b3b);
    color: #fff;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 700;
    margin: 8px 0 12px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    font-size: 14px;
}

/* Modal */
.awc-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.awc-modal .awc-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.awc-modal .awc-modal-inner {
    background: #fff;
    max-width: 1100px;
    width: 95%;
    height: 80vh;
    margin: 4vh auto;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.awc-modal .awc-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 1002;
    background: #000;
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 18px;
}

/* PDF container: full height and scrollable */
#awc-pdf-container {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #f6f6f6;
}

/* make embedded object fills container */
#awc-pdf-container object,
#awc-pdf-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* read preview button */
.awc-open-pdf {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    background: #1e3a8a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
