/* Single Pricing Elementor - Styles */

.spe-pricing-container {
    font-family: system-ui, -apple-system, sans-serif;
}


.spe-pricing-option {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.spe-price-label {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
    justify-content: center;
}

.spe-current-price {
    font-size: 1.5em;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 0;
    line-height: 1.1;
}

.spe-price-label small,
.spe-price-label .spe-subtext {
    font-size: 0.95em;
    color: #7a7a7a;
    font-weight: 400;
    margin-top: 2px;
}

.spe-order-btn {
    width: 100%;
    padding: 16px 0;
    margin-top: 18px;
    background: #1769ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 600 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(23, 105, 255, 0.08);
}

.spe-order-btn.highlight {
    background: #008000;
}

.spe-order-btn:hover {
    background: #14213d;
}

.spe-arrow {
    font-size: 1.2em;
    margin-left: 4px;
}

.spe-original-price {
    text-decoration: line-through;
    font-size: 0.9em;
    color: #7a7a7a;
}

/* Currency Picker Styles */
.spe-currency-picker {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spe-currency-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9f9f9;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

.spe-currency-btn.active {
    background: #14213d;
    color: white;
    border-color: #14213d;
}

/* New Currency Dropdown Styles */
.spe-currency-dropdown {
    position: relative;
    margin-bottom: 20px;
    width: fit-content;
    font-family: system-ui, -apple-system, sans-serif;
    z-index: 100;
}

.spe-currency-selected {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    min-width: 180px;
}

.spe-currency-selected span:first-child {
    font-weight: 500;
    color: #333;
}

.spe-selected-currency {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.spe-selected-currency img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
}

.spe-currency-dropdown i {
    font-size: 12px;
    color: #666;
    margin-left: 5px;
}

.spe-currency-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.spe-currency-dropdown.open .spe-currency-options {
    display: block;
}

.spe-currency-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.spe-currency-option:hover {
    background: #f5f5f5;
}

.spe-currency-option.active {
    background: #f0f0f0;
}

.spe-currency-option img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    display: inline-block;
}

/* Responsive Styles for Mobile */
@media (max-width: 767px) {
  .spe-pricing-container {
    text-align: center;
  }
  .spe-pricing-option {
    flex-direction: column;
    align-items: center;
    padding: 14px;
  }
  .spe-price-label {

  }
  .spe-order-btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
  }
  .spe-current-price,
  .spe-original-price,
  .spe-above-price-text,
  .spe-chip {
    text-align: left;
    display: block;
  }
 
} 