/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    sjmedia GmbH <info@sjmedia-consulting.de>
*  @copyright 2025 sjmedia GmbH
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

/* Apple Login Button Integration für Social Login */
.idimex-apple-login-item {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
}

.idimex-apple-login-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 3em;
}

.idimex-apple-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 0;
    background-color: transparent;
    color: inherit;
    border: none;
    border-radius: 0;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    text-decoration: none;
    box-shadow: none;
    line-height: 1.2;
}

.opc_social .opc_social_item.google {
    margin-top: 13px;
}

#checkout .opc_social .opc_social_item.google {
    margin-top: 0;
}


.idimex-apple-login-btn:hover {
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
}

.idimex-apple-login-btn:active {
    background-color: #1a1a1a;
    transform: scale(0.98);
}

.idimex-apple-logo {
    width: 18px;
    height: auto;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

.idimex-apple-login-btn .opc_social_btn_text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    white-space: nowrap;
}

/* Testmodus Badge */
.idimex-apple-test-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ffc107;
    color: #000;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Testmodus Styling */
.idimex-apple-login-btn.idimex-apple-test-mode {
    opacity: 0.85;
}

.idimex-apple-login-item.idimex-apple-test-mode .opc_social_btn {
    border: 1px dashed #ffc107;
}

/* Responsive Design */
@media (max-width: 768px) {
    .idimex-apple-login-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}

