/* Main container */
.pricing-tabs-container {
    font-family: inherit;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    direction: rtl;
}

/* --- Main Tab Styles --- */
.main-tabs-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}
.main-tab-button {
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #888;
    margin-bottom: -2px; /* Pulls button down to overlap the border */
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}
.main-tab-button.active {
    color: #0073aa; /* WordPress blue */
    border-bottom-color: #0073aa;
}
.main-tab-panel {
    display: none;
}
.main-tab-panel.active {
    display: block;
}

/* --- Sub Tab Styles (inside Printing tab) --- */
.sub-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}
.sub-tab-button {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    cursor: pointer;
    font-size: 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
}
.sub-tab-button.active {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}
.sub-tab-panel {
    display: none;
}
.sub-tab-panel.active {
    display: block;
}

/* --- Pricing Item Styles (same as before) --- */
.pricing-item {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.07);
}
.item-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    margin-left: 15px;
}
.item-details {
    flex-grow: 1;
    text-align: right;
}
.item-details h3, .item-details p {
    margin: 0;
    padding: 0;
}
.item-title {
    font-size: 17px;
    color: #333;
    font-weight: bold;
}
.item-description {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}
.item-price {
    font-size: 18px;
    font-weight: bold;
    color: #111;
}