/* Minification failed. Returning unminified contents.
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(21,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(22,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(23,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(24,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(30,23): run-time error CSS1039: Token not allowed after unary operator: '-pc-font'
(31,17): run-time error CSS1039: Token not allowed after unary operator: '-pc-ink-2'
(32,28): run-time error CSS1039: Token not allowed after unary operator: '-pc-bg'
(38,23): run-time error CSS1039: Token not allowed after unary operator: '-pc-font'
(39,17): run-time error CSS1039: Token not allowed after unary operator: '-pc-ink'
(44,17): run-time error CSS1039: Token not allowed after unary operator: '-pc-ink'
(48,17): run-time error CSS1039: Token not allowed after unary operator: '-pc-red'
(52,21): run-time error CSS1039: Token not allowed after unary operator: '-pc-red-600'
(56,29): run-time error CSS1039: Token not allowed after unary operator: '-pc-red'
(65,28): run-time error CSS1039: Token not allowed after unary operator: '-pc-red'
(66,24): run-time error CSS1039: Token not allowed after unary operator: '-pc-red'
(73,32): run-time error CSS1039: Token not allowed after unary operator: '-pc-red-600'
(74,28): run-time error CSS1039: Token not allowed after unary operator: '-pc-red-600'
(83,24): run-time error CSS1039: Token not allowed after unary operator: '-pc-red'
(90,22): run-time error CSS1039: Token not allowed after unary operator: '-pc-ink'
(94,23): run-time error CSS1039: Token not allowed after unary operator: '-pc-font'
(248,23): run-time error CSS1039: Token not allowed after unary operator: '-pc-font'
 */
/* =========================================================
   Palme Yayın Grubu — public arayüz tasarım katmanı
   Tokenlar, temel tipografi, marka renkleri ve footer.
   Porto teması ve skin dosyalarından sonra yüklenir.
   ========================================================= */

:root {
    --pc-red: #e01a29;
    --pc-red-600: #c41422;
    --pc-red-50: #fdf0f1;
    --pc-ink: #16181d;
    --pc-ink-2: #3c4049;
    --pc-muted: #6b7280;
    --pc-line: #e7e8ec;
    --pc-surface: #ffffff;
    --pc-bg: #f6f7f9;
    --pc-radius-sm: 8px;
    --pc-radius: 14px;
    --pc-radius-lg: 20px;
    --pc-shadow-sm: 0 1px 2px rgba(22, 24, 29, .05), 0 1px 3px rgba(22, 24, 29, .07);
    --pc-shadow: 0 8px 24px -10px rgba(22, 24, 29, .18);
    --pc-shadow-lg: 0 20px 44px -18px rgba(22, 24, 29, .30);
    --pc-font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    --pc-ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Temel ---------- */

body {
    font-family: var(--pc-font);
    color: var(--pc-ink-2);
    background-color: var(--pc-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pc-font);
    color: var(--pc-ink);
}

::selection {
    background: rgba(224, 26, 41, .16);
    color: var(--pc-ink);
}

a {
    color: var(--pc-red);
}

    a:hover {
        color: var(--pc-red-600);
    }

:focus-visible {
    outline: 2px solid var(--pc-red);
    outline-offset: 2px;
}

/* ---------- Marka rengi: buton ve form ---------- */

.btn-primary,
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: var(--pc-red);
    border-color: var(--pc-red);
    color: #fff;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:not(:disabled):not(.disabled):active {
        background-color: var(--pc-red-600);
        border-color: var(--pc-red-600);
        color: #fff;
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 .2rem rgba(224, 26, 41, .25);
    }

.form-control:focus {
    border-color: var(--pc-red);
    box-shadow: 0 0 0 .2rem rgba(224, 26, 41, .12);
}

/* ---------- Footer ---------- */

#footer.pc-footer {
    background: var(--pc-ink);
    border-top: 0;
    margin-top: 0;
    padding: 0;
    font-family: var(--pc-font);
    font-size: 14px;
    color: rgba(255, 255, 255, .62);
}

    #footer.pc-footer p {
        color: rgba(255, 255, 255, .62);
        margin: 0;
        line-height: 1.5;
    }

    #footer.pc-footer a:not(.btn) {
        color: rgba(255, 255, 255, .85);
        text-decoration: none;
        transition: color .2s;
    }

        #footer.pc-footer a:not(.btn):hover {
            color: #fff;
        }

.pc-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 40px;
    padding: 40px 0 32px;
}

.pc-footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

#footer.pc-footer .pc-footer-logo {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 8px 14px;
}

    .pc-footer-logo img {
        display: block;
        height: 40px;
        width: auto;
    }

.pc-footer-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.pc-footer-stores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pc-footer-stores-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.pc-footer-stores-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .pc-footer-stores-list img {
        display: block;
        height: 40px;
        width: auto;
    }

.pc-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 18px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
}

#footer.pc-footer .pc-footer-credit {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pc-footer-credit img {
    display: block;
    height: 22px;
    width: auto;
    opacity: .85;
    transition: opacity .2s;
}

.pc-footer-credit a:hover img {
    opacity: 1;
}

@media (max-width: 575.98px) {
    .pc-footer-top,
    .pc-footer-brand,
    .pc-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .pc-footer-top {
        padding: 32px 0 24px;
    }
}

/* ---------- WhatsApp butonu ---------- */

.wp-widget-send-button {
    margin: 0 !important;
    bottom: 20px !important;
    right: 20px;
    height: 52px;
    min-width: 52px;
    padding: 0 20px 0 14px;
    gap: 8px;
    border-radius: 999px;
    background-color: #25d366;
    box-shadow: 0 10px 24px -8px rgba(37, 211, 102, .6);
    transition: transform .2s, box-shadow .2s !important;
}

    .wp-widget-send-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -8px rgba(37, 211, 102, .7);
        text-decoration: none;
    }

.wp-messenger-svg-whatsapp {
    width: 30px;
    height: 30px;
}

.wp-chat-text {
    font-family: var(--pc-font);
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .wp-widget-send-button {
        bottom: 16px !important;
        right: 16px;
        width: 52px;
        padding: 0;
    }

    .wp-chat-text {
        display: none;
    }
}

