/**
 * SocialME Blesta Packets - Styles
 * Self-contained CSS matching the socialme_packets design
 */

/* =====================================================
   PACKAGE CAROUSEL LAYOUT
   ===================================================== */
.sbp_carousel {
    position: relative;
    margin-top: 30px;
}

/* Visible cards per view. Overridden per-shortcode via inline
   --sbp-c / --sbp-c-t / --sbp-c-m (from columns / columns_tablet /
   columns_mobile). Defaults: 4 up to 1080p, 5 above, 2 tablet, 1 mobile. */
.socialme_blesta_packets_grid {
    --sbp-gap: 25px;
    --sbp-c: 3;
    --sbp-c-lg: 4;
    --sbp-c-t: 2;
    --sbp-c-m: 1;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    gap: var(--sbp-gap);
    scrollbar-width: thin;
    scrollbar-color: #00A149 #e6e6e6;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 14px 0;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.socialme_blesta_packets_grid.sbp-no-snap {
    scroll-snap-type: none;
}

.socialme_blesta_packets_grid.sbp-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

/* Cards stretch to the tallest card inside their own shortcode */
.socialme_blesta_packets_grid .socialme_packet_div {
    height: auto;
}

.socialme_blesta_packets_grid::-webkit-scrollbar {
    height: 8px;
}

.socialme_blesta_packets_grid::-webkit-scrollbar-thumb {
    background: #00A149;
    border-radius: 8px;
}

/* Exactly --sbp-c cards fit and fill the row width; extra cards scroll.
   With fewer packages than --sbp-c, grow stretches them to fill the width. */
.socialme_blesta_packets_grid .socialme_packet_div {
    flex: 1 0 calc((100% - (var(--sbp-c) - 1) * var(--sbp-gap)) / var(--sbp-c));
    min-width: 0;
    scroll-snap-align: start;
}

@media (max-width: 924px) {
    .socialme_blesta_packets_grid .socialme_packet_div {
        flex-basis: calc((100% - (var(--sbp-c-t) - 1) * var(--sbp-gap)) / var(--sbp-c-t));
    }
}

@media (max-width: 768px) {
    .socialme_blesta_packets_grid .socialme_packet_div {
        flex-basis: calc((100% - (var(--sbp-c-m) - 1) * var(--sbp-gap)) / var(--sbp-c-m));
    }
}

/* Screens larger than 1080p (>=1921px) show one extra column. */
@media (min-width: 1921px) {
    .socialme_blesta_packets_grid .socialme_packet_div {
        flex: 1 0 calc((100% - (var(--sbp-c-lg) - 1) * var(--sbp-gap)) / var(--sbp-c-lg));
    }
}

/* Carousel arrows (SVG chevrons) - hidden until JS confirms scrollable
   content, then only shown on the side that has more to reveal. */
.sbp_carousel .sbp_carousel_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #000000;
    cursor: pointer;
    transition: filter 0.25s, opacity 0.25s, transform 0.25s;
}

.sbp_carousel .sbp_carousel_arrow.sbp_carousel_arrow_enabled {
    display: flex;
}

.sbp_carousel .sbp_carousel_arrow svg {
    width: 56px;
    height: 56px;
}

.sbp_carousel .sbp_carousel_arrow:hover {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
    transform: translateY(-50%) scale(1.05);
}

.sbp_carousel .sbp_carousel_arrow_prev {
    left: -18px;
}

.sbp_carousel .sbp_carousel_arrow_next {
    right: -18px;
}

.socialme_blesta_packets_grid {
    --sbp-fade: 70px;
}

/* Directional edge fades hinting at off-screen packages. Right fade only
   while there is more content beyond, left fade only once scrolled. */
.sbp_carousel.sbp-edge-right .socialme_blesta_packets_grid {
    mask-image: linear-gradient(to right, black calc(100% - var(--sbp-fade)), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black calc(100% - var(--sbp-fade)), transparent 100%);
}

.sbp_carousel.sbp-edge-left .socialme_blesta_packets_grid {
    mask-image: linear-gradient(to left, black calc(100% - var(--sbp-fade)), transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black calc(100% - var(--sbp-fade)), transparent 100%);
}

.sbp_carousel.sbp-edge-left.sbp-edge-right .socialme_blesta_packets_grid {
    mask-image: linear-gradient(to right, transparent 0, black var(--sbp-fade), black calc(100% - var(--sbp-fade)), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black var(--sbp-fade), black calc(100% - var(--sbp-fade)), transparent 100%);
}

@media (max-width: 600px) {
    .sbp_carousel .sbp_carousel_arrow svg {
        width: 46px;
        height: 46px;
    }
    .sbp_carousel .sbp_carousel_arrow_prev {
        left: -8px;
    }
    .sbp_carousel .sbp_carousel_arrow_next {
        right: -8px;
    }
}

/* ==== Green divider line under the title/subtitle ==== */
.sbp_header_line {
    height: 2px;
    background-color: #00a149;
    width: 100%;
    margin: 8px 0 14px 0;
    border-radius: 2px;
}

/* =====================================================
   PERIOD SELECTOR INLINE - NUMBER BUTTONS WITH LABEL
   ===================================================== */
.sbp_period_selector_block {
    margin: 10px 0 20px 0;
    text-align: center;
}

.sbp_period_label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.sbp_period_selector_inline {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 100%;
    background: #f0f0f0;
    border-radius: 30px;
    padding: 4px;
    margin: 0 auto 12px auto;
    justify-content: center;
    row-gap: 4px;
    overflow: hidden;
}

.sbp_period_selector_inline::before {
    content: '';
    position: absolute;
    top: var(--slider-top, 4px);
    left: var(--slider-left, 4px);
    width: var(--slider-width, auto);
    height: var(--slider-height, calc(100% - 8px));
    background: #00A149;
    border-radius: 26px;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    box-shadow: 0 2px 8px rgba(0, 161, 73, 0.3);
}

.sbp_period_option {
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: color 0.2s ease;
    user-select: none;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.sbp_period_option.sbp_period_selected {
    color: #fff;
    font-weight: 600;
}

/* Period options are equal width */
.sbp_period_option {
    flex: 1;
}

@media only screen and (max-width: 600px) {
    .sbp_period_option {
        padding: 8px 14px;
        font-size: 13px;
    }
}

/* =====================================================
   PACKAGE CARD - NEW DESIGN
   ===================================================== */
.socialme_packet_gap {
    flex-grow: 1;
}

.socialme_packet_div {
    padding: 25px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, transform 0.2s;
    line-height: 1.4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    position: relative;
    text-align: left;
    background: #fafafa;
}

.socialme_packet_div:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #00A149;
}

/* "Το πιο δημοφιλές" highlight wrap */
.socialme_packet_div.sbp_popular {
    border: 2px solid #FD5A23;
}

.socialme_packet_div.sbp_popular:hover {
    border-color: #FD5A23;
}

/* Headroom above the scroll container so the badge (which straddles the
   card's top border) is not clipped by the carousel's overflow. */
.socialme_blesta_packets_grid.sbp_has_popular {
    padding-top: 24px;
}

.sbp_popular_badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FD5A23;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 16px;
    white-space: nowrap;
    z-index: 5;
    line-height: 1.3;
}

.raw-html-embed {
    font-size: 15px;
}

/* =====================================================
   PACKAGE HEADER - NEW DESIGN
   ===================================================== */
.socialme_packet_header {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 0px;
    margin: 0 0 5px 0;
}

.socialme_packet_header_with_text_right {
    justify-content: space-between;
}

.socialme_packet_header_icon {
    width: 80px;
    flex-shrink: 0;
}

.socialme_packet_header_icon > img {
    max-width: 100%;
    max-height: 60px;
}

.socialme_packet_header_with_text_right > .socialme_packet_header_icon {
    display: none;
}

.socialme_packet_header_title {
    font-size: 26px;
    font-weight: 700;
    padding: 0;
    text-align: left;
    width: 100%;
    overflow-wrap: break-word;
    color: #fd5a23;
    letter-spacing: -0.5px;
}

.sbp_package_subtitle_small {
    color: #000;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    margin: 4px 0 8px 0;
}

.sbp_package_subtitle {
    display: none;
}

.socialme_packet_title_right {
    text-align: center;
    font-weight: 900;
    max-width: 113px;
    color: black;
}

.socialme_packet_after_title {
    font-size: 20px;
    text-align: center;
    margin: 15px 0px;
    font-weight: bold;
    color: blue;
}

@media only screen and (max-width: 60000px) {
    .socialme_packet_header {
        flex-direction: row;
    }
    .socialme_packet_header_title {
        text-align: left;
    }
    .socialme_packet_header_icon {
        text-align: center;
        position: relative;
        width: 100%;
    }
    .socialme_packet_header_icon > img {
        position: absolute;
        top: 4px;
        left: 0;
        width: 44px;
    }
}

/* =====================================================
   PRICING - NEW DESIGN
   ===================================================== */
.socialme_packet_price_hidden {
    display: none;
}

.sbp_pricing_section {
    text-align: center;
    #padding: 20px 15px;
    position: relative;
}

/* Savings Badge (top right) */
.sbp_savings_badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: #e74c3c;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

/* Original crossed-out price */
.sbp_original_price {
    color: #999;
    font-size: 15px;
    text-decoration: line-through;
    margin-bottom: 5px;
}

/* MAIN PRICE - Large and prominent */
.sbp_main_price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin: 10px 0;
}

.sbp_currency {
    font-size: 28px;
    font-weight: 700;
    color: #00a149;
}

.sbp_amount {
    font-size: 40px;
    font-weight: 900;
    color: #00a149;
    line-height: 1;
    letter-spacing: -1px;
}

.sbp_period {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

/* Monthly equivalent (big price ÷ period months), discreet under the price */
.sbp_monthly_breakdown {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin: -6px 0 8px;
}

/* Promo text (e.g., "+ 2 years free") */
.sbp_promo_text {
    color: #00A149;
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0;
}

/* Renewal price */
.sbp_renewal_price {
    color: #666;
    font-size: 13px;
    margin: 8px 0;
}

/* Setup fee */
.sbp_setup_fee {
    color: #e74c3c;
    font-size: 14px;
    margin: 8px 0;
    font-weight: 600;
}

/* OLD PRICING STYLES (keeping for backwards compatibility) */
.socialme_packet_price {
    text-align: center;
    margin: 4px 0px;
    color: black;
}

.socialme_packet_price_def {
    color: #00A149;
}

.socialme_packet_price_def_only {
    color: black;
    font-size: 25px;
    margin-right: 10px;
    position: relative;
}

.socialme_packet_price_def_a {
    font-size: 25px;
    font-weight: bold;
}

.socialme_packet_price_def_b {
    font-size: 25px;
    font-weight: bold;
}

.socialme_packet_price_def_c {
    font-size: 20px;
    font-weight: bold;
}

.socialme_packet_price_2parts {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 6px;
}

.socialme_packet_price_old {
    color: black;
    font-size: 22px;
}

.socialme_packet_price_old span {
    position: relative;
}

.socialme_packet_price_old span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 2px solid;
    border-color: red;
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-6deg);
}

.socialme_packet_price_new {
    margin: 2px 0px 4px 0px;
}

.socialme_packet_price_new_a {
    font-size: 25px;
    font-weight: bold;
}

.socialme_packet_price_new_b {
    font-size: 25px;
    font-weight: bold;
}

.socialme_packet_price_new_c {
    font-size: 20px;
    font-weight: bold;
}

.socialme_packet_price_total {
    color: #00A149;
    font-size: 25px;
    font-weight: bold;
    margin: 4px 0px;
}

.socialme_packet_price_total_text {
    font-size: 15px;
    margin: 4px 0px;
}

.socialme_packet_price_kerdos {
    color: #00A149;
    font-size: 18px;
    font-weight: 700;
    margin: 4px 0px;
}

.socialme_packet_price_duration {
    font-size: 12px;
    margin: 4px 0px;
    font-weight: 700;
}

.socialme_packet_price_energopoiisi {
    font-weight: 700;
    font-size: 25px;
    margin: 4px 0px;
}

.socialme_packet_price_energopoiisi_a > .myeurosymbol {
    font-size: 20px;
}

.socialme_packet_price_energopoiisi_b {
    font-size: 15px;
}

.socialme_packet_price_energopoiisi_org {
    margin-right: 10px;
    font-weight: normal;
    font-size: 22px;
}

.socialme_packet_price_energopoiisi_org > span {
    position: relative;
}

.socialme_packet_price_energopoiisi_org > span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 2px solid;
    border-color: red;
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-6deg);
}

.socialme_packet_price_energopoiisi_p {
    color: #00A149;
    font-size: 18px !important;
    font-weight: 700;
    margin: 4px 0px 4px 10px;
}

.sbp_installments {
    font-size: 16px;
    text-align: center;
    margin: 10px 0 0 0;
    color: #FD5A23;
    font-weight: 600;
}

.socialme_packet_nofpa {
    font-size: 12px;
    text-align: center;
    margin: 10px 0;
    color: #999;
    font-style: italic;
}

.socialme_packet_after_price {
    font-size: 80%;
    text-align: center;
    margin: 4px 0px;
}

.socialme_packet_request_offer {
    color: #0E34FB;
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    margin: 20px 0px;
}

/* =====================================================
   BADGE
   ===================================================== */
.socialme_packet_badge {
    color: white;
    font-size: 20px;
    font-weight: 900;
    background-color: #FD5A23;
    padding: 4px 10px;
    position: absolute;
    right: 0px;
    top: 0px;
    border-radius: 0px 10px 0px 10px;
}

/* =====================================================
   SPECS / FEATURES - NEW DESIGN
   ===================================================== */
.sbp_features_list {
    margin: 20px 0;
    padding: 15px;
    text-align: left;
    /* Descriptions are <br>-separated lines: line-height drives their spacing */
    line-height: 1.9;
}

/* Neutralize doubled/trailing <br> sloppy spacing from source HTML */
.sbp_features_list br + br {
    display: none;
}

.sbp_features_list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sbp_features_list li {
    padding: 11px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sbp_features_list p {
    margin: 10px 0;
}

/* Blue checkmarks for features */
.sbp_features_list i.fas.fa-check,
.sbp_features_list i.fa-check {
    color: #00A149 !important;
    font-size: 16px;
    margin-top: 2px;
    /* Keep the icon's inline box compact so it does not inflate the line box */
    line-height: 1;
}

/* Disabled/grayed out features */
.sbp_features_list li.disabled,
.sbp_features_list li:has(i.fa-times) {
    opacity: 0.4;
}

/* Money back guarantee - HIDDEN */
.sbp_money_back_guarantee {
    display: none !important;
}

/* OLD SPECS (backwards compatibility) */
.socialme_packet_specs_items {
    margin: 15px 0;
}

.socialme_packet_specs_item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    margin: 4px 0px;
}

.socialme_packet_specs_item_icon {
    width: 20px;
}

.socialme_packet_specs_item_icon > i {
    color: #00a149;
    font-size: 20px;
}

.socialme_packet_specs_item_text {
    width: calc(100% - 40px);
    padding: 0px 2px 0px 8px;
}

.socialme_packet_specs_item_info {
    width: 20px;
    text-align: right;
}

.socialme_packet_specs_item_info > i {
    color: blue;
    font-size: 20px;
    cursor: pointer;
}

.socialme_packet_specs_group_item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
    margin: 12px 0px 6px 0px;
}

.socialme_packet_specs_group_item_text {
    width: calc(100% - 40px);
    padding: 0px 2px 0px 0px;
}

.socialme_packet_specs_group_item_info {
    width: 20px;
    text-align: right;
}

.socialme_packet_specs_group_item_info > i {
    color: blue;
    font-size: 20px;
    cursor: pointer;
}

.socialme_packet_after_specs {
    text-align: center;
    margin: 15px 0px;
    color: black;
}

/* Style for Blesta description HTML */
.socialme_packet_specs_items i.fas.fa-check,
.socialme_packet_specs_items i.fa-check {
    color: #00a149;
    margin-right: 8px;
}

.socialme_packet_specs_items i.fas.fa-times,
.socialme_packet_specs_items i.fa-times {
    color: #dc3545;
    margin-right: 8px;
}

/* =====================================================
   BUTTONS - ORANGE OUTLINE DESIGN
   ===================================================== */
.socialme_packet_buttons {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin: 20px 0;
}

.sbp_buy_button {
    text-align: center;
}

.sbp_btn_outline {
    display: inline-block;
    padding: 14px 50px;
    font-family: "Bague", Sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #FD5A23;
    background: transparent;
    border: 2px solid #FD5A23;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sbp_btn_outline:hover {
    background: #FD5A23;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 90, 35, 0.3);
}

.sbp_btn_orange {
    color: #FD5A23;
    border-color: #FD5A23;
}

.sbp_btn_orange:hover {
    background: #FD5A23;
    color: #fff;
}

/* Contact button */
.sbp_contact_button_wrapper {
    text-align: center;
    margin: 15px 0;
}

/* =====================================================
   BOTTOM BUTTONS - ΑΓΟΡΑ + ΕΠΙΚΟΙΝΩΝΙΑ SIDE BY SIDE
   ===================================================== */
.sbp_bottom_buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
}

.sbp_bottom_buttons .sbp_buy_button,
.sbp_bottom_buttons .sbp_contact_button_wrapper {
    flex: 1 1 calc(50% - 10px);
    min-width: 130px;
    margin: 0;
}

.sbp_bottom_buttons .sbp_buy_button a.sbp_btn_outline,
.sbp_bottom_buttons .sbp_contact_button_wrapper a.sbp_btn_outline {
    display: inline-block;
    width: 100%;
    padding: 13px 12px;
    border-radius: 10px;
    font-size: 15px;
    text-align: center;
    box-sizing: border-box;
}

/* Αγορά - green */
.sbp_bottom_buttons a.sbp_btn_green,
.sbp_bottom_buttons a.sbp_btn_green:hover {
    color: #fff;
    background: #00a149;
    border-color: #00a149;
}

.sbp_bottom_buttons a.sbp_btn_green:hover {
    background: #008a3d;
    border-color: #008a3d;
}

/* Επικοινωνία - orange */
.sbp_bottom_buttons a.sbp_btn_orange,
.sbp_bottom_buttons a.sbp_btn_orange:hover {
    color: #fff;
    background: #fd5a23;
    border-color: #fd5a23;
}

.sbp_bottom_buttons a.sbp_btn_orange:hover {
    background: #e54d1a;
    border-color: #e54d1a;
}

/* "Λεπτομέρειες" link inside the Blesta package description (comes
   through as raw Bootstrap classes - btn btn-success btn-lg btn-block -
   from Blesta itself, which this site doesn't load Bootstrap CSS for).
   Style it to match the Αγορά/Επικοινωνία buttons instead. */
.socialme_packet_div .socialme-enabled-select {
    display: table;
    padding: 14px 50px;
    margin: 15px auto 0 auto;
    font-family: "Bague", Sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #00a149;
    background: transparent;
    border: 2px solid #00a149;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.socialme_packet_div .socialme-enabled-select:hover {
    background: #00a149;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 161, 73, 0.3);
}

/* OLD BUTTONS (keeping for backwards compatibility) */
.socialme_packet_button_addtocart_hidden {
    display: none;
}

.socialme_packet_button_addtocart,
.socialme_packet_button_request_offer {
    margin: 15px 0px;
    text-align: center;
}

.socialme_packet_button_addtocart a,
.socialme_packet_button_request_offer a {
    font-family: "Bague", Sans-serif;
    font-size: 17px;
    font-weight: 600;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #00A149;
    border-radius: 10px 10px 10px 10px !important;
    padding: 13px 30px 13px 30px !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.socialme_packet_button_addtocart a:hover {
    background-color: #008a3d;
    transform: scale(1.05);
}

.socialme_packet_button_callus {
    margin: 15px 0px;
    text-align: center;
    display: none;
}

.socialme_packet_button_callus a {
    font-family: "Bague", Sans-serif;
    font-size: 17px;
    font-weight: 600;
    background-color: #FD5A23;
    color: #FFFFFF;
    border-radius: 10px 10px 10px 10px !important;
    padding: 13px 14px 13px 14px !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.socialme_packet_button_talktosales {
    margin: 15px 0px;
    text-align: center;
}

.socialme_packet_button_talktosales a {
    font-family: "Bague", Sans-serif;
    font-size: 17px;
    font-weight: 600;
    background-color: #FD5A23;
    color: #FFFFFF;
    border-radius: 10px 10px 10px 10px !important;
    padding: 13px 14px 13px 14px !important;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.socialme_packet_button_talktosales a:hover,
.socialme_packet_button_callus a:hover {
    background-color: #e54d1a;
    transform: scale(1.05);
}

.socialme_packet_button_talktosales_hidden {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .socialme_packet_button_callus {
        display: block;
    }
    .socialme_packet_button_talktosales {
        display: none;
    }
}

/* =====================================================
   RESPONSIVE VISIBILITY
   ===================================================== */
/* Desktop/Tablet: hide "Κλήση" button, show "Επικοινωνία" */
@media (min-width: 768px) {
    .hidedesktop {
        display: none !important;
    }
}

/* Mobile: hide "Επικοινωνία" button, show "Κλήση" */
@media (max-width: 767px) {
    .hidemobile {
        display: none !important;
    }
}

/* =====================================================
   TOOLTIPSTER INTEGRATION
   ===================================================== */
.socialme_packet_tooltipster {
    max-width: 200px;
    font-size: 18px;
    line-height: 1.1;
}

.tooltipster {
    cursor: help;
}

/* =====================================================
   ELEMENTOR BUTTON COMPATIBILITY
   ===================================================== */
.elementor-button-wrapper {
    display: inline-block;
}

.elementor-button {
    display: inline-block;
    text-decoration: none;
}

.elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elementor-animation-grow:hover {
    transform: scale(1.05);
}

/* Hide redundant period selectors when using Blesta shortcodes */
.sbp-hidden-period-selector {
    display: none !important;
}

/* =====================================================
   BLESTA CONNECTION - ADD TO CART BUTTON
   ===================================================== */
/* Wrapper for add-to-cart buttons */


/* The actual button link - inherits styles from .socialme_packet_button_addtocart a */
.sbc-add-to-cart-wrapper .elementor-button {
    background-color: #00A149 !important;
    cursor: pointer;
}

.sbc-add-to-cart-wrapper .elementor-button:hover {
    background-color: #008a3d !important;
}
