/* Güniçi Kurye - Public Styles */

/* ========== CALCULATOR ========== */
.gunici-calculator {
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gunici-calc-form {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gunici-calc-title {
    margin: 0 0 24px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.gunici-calc-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 600px) {
    .gunici-calc-fields {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.gunici-calc-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gunici-calc-field select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s;
    appearance: auto;
}

.gunici-calc-field select:focus {
    border-color: #f7941d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

.gunici-calc-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #f7941d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.gunici-calc-btn:hover {
    background: #e5850f;
}

.gunici-calc-btn:active {
    transform: scale(0.98);
}

.gunici-calc-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Result */
.gunici-calc-result {
    margin-top: 20px;
}

.gunici-result-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #f7941d;
}

.gunici-result-route {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.gunici-arrow {
    display: inline-block;
    margin: 0 8px;
    color: #f7941d;
}

.gunici-result-service {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.gunici-result-breakdown {
    margin-bottom: 16px;
}

.gunici-result-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 15px;
    color: #555;
}

.gunici-result-total {
    border-top: 2px solid #eee;
    padding-top: 12px;
    margin-top: 4px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Estimated Time */
.gunici-estimated-time {
    border-top: 1px dashed #e0e0e0;
    padding-top: 10px;
    margin-top: 8px;
    font-size: 14px;
    color: #f7941d;
    font-weight: 600;
}

.gunici-estimated-time svg {
    color: #f7941d;
}

.gunici-order-link {
    display: block;
    text-align: center;
    padding: 12px;
    background: #28a745;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    transition: background 0.2s;
}

.gunici-order-link:hover {
    background: #218838;
    color: #fff !important;
}

/* Error */
.gunici-calc-error {
    margin-top: 16px;
    padding: 12px 16px;
    background: #fff5f5;
    border: 1px solid #fee;
    border-left: 4px solid #dc3545;
    border-radius: 6px;
    color: #dc3545;
    font-size: 14px;
}

.gunici-calc-error p {
    margin: 0;
}

/* ========== ORDER FORM ========== */
.gunici-order-form {
    max-width: 700px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Progress steps */
.gunici-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.gunici-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding-top: 40px;
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.gunici-step::before {
    content: counter(step);
    counter-increment: step;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
}

.gunici-step::after {
    content: '';
    position: absolute;
    top: 15px;
    left: calc(50% + 20px);
    width: calc(100% - 40px);
    height: 2px;
    background: #e0e0e0;
    transition: background 0.3s;
}

.gunici-step:last-child::after {
    display: none;
}

.gunici-step.active::before {
    background: #f7941d;
    color: #fff;
}

.gunici-step.active {
    color: #f7941d;
}

.gunici-step.completed::before {
    background: #28a745;
    color: #fff;
    content: '✓';
}

.gunici-step.completed::after {
    background: #28a745;
}

.gunici-step.completed {
    color: #28a745;
}

/* Step panels */
.gunici-step-panel {
    display: none;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: guniciFadeIn 0.3s ease;
}

.gunici-step-panel.active {
    display: block;
}

@keyframes guniciFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.gunici-step-panel h3 {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Form fields */
.gunici-form-row {
    margin-bottom: 16px;
}

.gunici-form-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.gunici-form-row label .required {
    color: #dc3545;
}

.gunici-form-row input,
.gunici-form-row select,
.gunici-form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.gunici-form-row input:focus,
.gunici-form-row select:focus,
.gunici-form-row textarea:focus {
    border-color: #f7941d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

.gunici-form-row textarea {
    min-height: 80px;
    resize: vertical;
}

.gunici-form-row.has-error input,
.gunici-form-row.has-error select,
.gunici-form-row.has-error textarea {
    border-color: #dc3545;
}

.gunici-form-row .field-error {
    display: none;
    margin-top: 4px;
    font-size: 12px;
    color: #dc3545;
}

.gunici-form-row.has-error .field-error {
    display: block;
}

.gunici-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .gunici-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Radio group */
.gunici-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gunici-radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.gunici-radio-group label:hover {
    border-color: #f7941d;
}

.gunici-radio-group input[type="radio"] {
    width: auto;
    margin: 0;
}

.gunici-radio-group input[type="radio"]:checked + span {
    color: #f7941d;
    font-weight: 600;
}

.gunici-radio-group label:has(input:checked) {
    border-color: #f7941d;
    background: rgba(247, 148, 29, 0.05);
}

/* Navigation */
.gunici-form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    gap: 12px;
}

.gunici-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.gunici-btn-prev {
    background: #f0f0f0;
    color: #555;
}

.gunici-btn-prev:hover {
    background: #e0e0e0;
}

.gunici-btn-next {
    background: #f7941d;
    color: #fff;
    margin-left: auto;
}

.gunici-btn-next:hover {
    background: #e5850f;
}

.gunici-btn-submit {
    background: #28a745;
    color: #fff;
    font-size: 16px;
    flex: 1;
}

.gunici-btn-submit:hover {
    background: #218838;
}

.gunici-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Confirmation summary */
.gunici-summary {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.gunici-summary h4 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.gunici-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.gunici-summary-label {
    color: #666;
}

.gunici-summary-value {
    font-weight: 600;
    color: #333;
}

.gunici-summary-price {
    background: #fff;
    border: 2px solid #f7941d;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-top: 12px;
}

.gunici-summary-price .price-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
}

.gunici-summary-price .price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #f7941d;
    margin-top: 4px;
}

/* Honeypot */
.gunici-hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

/* ========== ORDER CONFIRMATION ========== */
.gunici-confirmation {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.gunici-confirmation-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #28a745;
}

.gunici-confirmation-icon {
    width: 64px;
    height: 64px;
    background: #edfaef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.gunici-confirmation h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.gunici-confirmation .reference-number {
    display: inline-block;
    padding: 8px 20px;
    background: #f0f7ff;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #2271b1;
    letter-spacing: 1px;
    margin: 12px 0;
}

.gunici-confirmation .price-display {
    font-size: 24px;
    font-weight: 700;
    color: #f7941d;
    margin: 12px 0;
}

.gunici-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25d366;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    margin-top: 16px;
    transition: background 0.2s;
}

.gunici-whatsapp-btn:hover {
    background: #1da851;
    color: #fff !important;
}

.gunici-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ========== WHATSAPP CHAT WIDGET ========== */
#gunici-wa-widget {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 9999;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Bubble */
.gunici-wa-bubble {
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: guniciWaPulse 2s infinite;
}

.gunici-wa-bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.5);
}

@keyframes guniciWaPulse {
    0% { box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 3px 16px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.08); }
    100% { box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4); }
}

/* Chat Window */
.gunici-wa-window {
    position: absolute;
    left: 0;
    bottom: 64px;
    width: 320px;
    min-height: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: guniciWaFadeIn 0.3s ease;
}

.gunici-wa-window.gunici-wa-active {
    display: flex;
}

@keyframes guniciWaFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header */
.gunici-wa-header {
    background: #075e54;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.gunici-wa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #128c7e;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

.gunici-wa-header-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gunici-wa-name {
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gunici-wa-status {
    font-size: 12px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 5px;
}

.gunici-wa-online-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4ad504;
    border-radius: 50%;
}

.gunici-wa-close {
    position: absolute;
    right: 12px;
    top: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.7;
    padding: 0;
    line-height: 1;
}

.gunici-wa-close:hover {
    opacity: 1;
}

/* Body (WhatsApp background) */
.gunici-wa-body {
    background-color: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1.5' fill='%23ccc' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23p)'/%3E%3C/svg%3E");
    padding: 20px 14px;
    flex: 1;
    min-height: 140px;
    display: flex;
    flex-direction: column;
}

/* Message Bubble */
.gunici-wa-msg {
    background: #fff;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    padding: 10px 14px 20px;
    max-width: 85%;
    position: relative;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.45;
}

.gunici-wa-msg-text {
    color: #303030;
}

.gunici-wa-msg-time {
    font-size: 11px;
    color: #999;
    position: absolute;
    right: 10px;
    bottom: 5px;
}

/* Typing animation */
.gunici-wa-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 16px;
    width: fit-content;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    margin-bottom: 14px;
}

.gunici-wa-typing span {
    width: 7px;
    height: 7px;
    background: #b1b1b1;
    border-radius: 50%;
    display: inline-block;
    animation: guniciTypingBounce 1.2s infinite;
}

.gunici-wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.gunici-wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes guniciTypingBounce {
    0%, 80%, 100% { transform: scale(1); opacity: 0.4; }
    40% { transform: scale(1.3); opacity: 1; }
}

/* Start Chat Button */
.gunici-wa-start {
    display: block;
    text-align: center;
    padding: 10px 16px;
    background: #25D366;
    color: #fff !important;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
    margin-top: auto;
}

.gunici-wa-start:hover {
    background: #1da851;
    color: #fff !important;
}

/* Mobile */
@media (max-width: 600px) {
    #gunici-wa-widget {
        left: 10px;
        bottom: 10px;
    }

    .gunici-wa-bubble {
        width: 48px;
        height: 48px;
    }

    .gunici-wa-bubble svg {
        width: 24px;
        height: 24px;
    }

    .gunici-wa-window {
        width: 280px;
        bottom: 58px;
    }
}

/* ========== KURYE ÇAĞIR PAGE ========== */
.gunici-kurye-cagir-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gunici-kc-hero {
    grid-column: 1 / -1;
    background: linear-gradient(180deg, #ffffff, #fff8ef);
    border: 1px solid #f4d6b2;
    border-radius: 12px;
    padding: 20px 24px;
}

.gunici-kc-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #fff3e0;
    color: #f7941d;
    margin-bottom: 10px;
}

.gunici-kc-hero-title {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a1a1a;
}

.gunici-kc-hero-text {
    margin: 0;
    font-size: 15px;
    color: #555;
    max-width: 760px;
}

.gunici-kc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.gunici-kc-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all .2s;
}

.gunici-kc-hero-btn-primary {
    background: #f7941d;
    color: #fff !important;
}

.gunici-kc-hero-btn-primary:hover {
    background: #e5850f;
    color: #fff !important;
}

.gunici-kc-hero-btn-secondary {
    background: #25D366;
    color: #fff !important;
}

.gunici-kc-hero-btn-secondary:hover {
    background: #1da851;
    color: #fff !important;
}

@media (max-width: 900px) {
    .gunici-kurye-cagir-wrap {
        grid-template-columns: 1fr;
    }

    .gunici-kc-hero {
        padding: 16px;
    }

    .gunici-kc-hero-title {
        font-size: 24px;
    }
}

.gunici-kc-form {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.gunici-kc-title {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.gunici-kc-fieldset {
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px 18px;
    margin: 0 0 18px;
}

.gunici-kc-fieldset legend {
    font-size: 14px;
    font-weight: 700;
    color: #f7941d;
    padding: 0 8px;
}

.gunici-kc-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 500px) {
    .gunici-kc-row-grid {
        grid-template-columns: 1fr;
    }
}

.gunici-kc-field {
    margin-bottom: 12px;
}

.gunici-kc-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.gunici-kc-field label .required {
    color: #dc3545;
}

.gunici-kc-field input,
.gunici-kc-field select,
.gunici-kc-field textarea {
    width: 100%;
    padding: 9px 11px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.gunici-kc-field input:focus,
.gunici-kc-field select:focus,
.gunici-kc-field textarea:focus {
    border-color: #f7941d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 148, 29, 0.15);
}

.gunici-kc-field textarea {
    min-height: 50px;
    resize: vertical;
}

/* "Haritada İşaretle" button */
.gunici-kc-map-pick {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 5px 12px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}

.gunici-kc-map-pick:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

.gunici-kc-map-pick.active {
    background: #fff3e0;
    border-color: #f7941d;
    color: #f7941d;
    animation: guniciPickPulse 1.5s infinite;
}

@keyframes guniciPickPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(247, 148, 29, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(247, 148, 29, 0); }
}

/* Calculate button */
.gunici-kc-calculate-btn {
    display: block;
    width: 100%;
    padding: 13px;
    background: #f7941d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    margin-bottom: 16px;
}

.gunici-kc-calculate-btn:hover {
    background: #e5850f;
}

.gunici-kc-calculate-btn:active {
    transform: scale(0.98);
}

.gunici-kc-calculate-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Result card */
.gunici-kc-result {
    margin-bottom: 12px;
}

.gunici-kc-result-card {
    background: #fafafa;
    border: 2px solid #f7941d;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 12px;
}

.gunici-kc-result-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
    color: #555;
}

.gunici-kc-result-price {
    border-top: 2px solid #eee;
    padding-top: 10px;
    margin-top: 6px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.gunici-kc-result-price span:last-child {
    color: #f7941d;
}

.gunici-kc-result-time {
    font-size: 13px;
    color: #f7941d;
    font-weight: 600;
}

/* WhatsApp send button */
.gunici-kc-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #25D366;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.2s;
}

.gunici-kc-whatsapp-btn:hover {
    background: #1da851;
    color: #fff !important;
}

.gunici-kc-whatsapp-btn svg {
    fill: #fff;
    flex-shrink: 0;
}

/* Error */
.gunici-kc-error {
    margin-top: 12px;
    padding: 10px 14px;
    background: #fff5f5;
    border: 1px solid #fee;
    border-left: 4px solid #dc3545;
    border-radius: 6px;
    color: #dc3545;
    font-size: 13px;
}

.gunici-kc-error p {
    margin: 0;
}

/* Map column */
.gunici-kc-map-col {
    position: sticky;
    top: 20px;
    align-self: start;
}

.gunici-kc-map-container {
    width: 100%;
    min-height: 500px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid #e8e8e8;
    transition: border-color 0.3s;
}

.gunici-kc-map-container.gunici-kc-picking {
    border-color: #f7941d;
    box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.15);
}

@media (max-width: 900px) {
    .gunici-kc-map-col {
        position: static;
    }

    .gunici-kc-map-container {
        min-height: 350px;
    }
}

/* Kurye Çağır page: keep map sticky, disable sticky/fixed header behavior */
body.page-id-13627 .pix-header.pix-header-desktop,
body.page-id-13627 .pix-header.pix-header-desktop.pix-header-fixed,
body.page-id-13627 .pix-header.pix-is-sticky-header.pix-header-desktop.pix-header-normal.pix-normal-sticky,
body.page-id-13627 .pix-header-transparent.pix-transparent-sticky .pix-header,
body.page-id-13627 .pix-header-boxed.pix-boxed-sticky .pix-header,
body.page-id-13627 .pix-topbar.pix-topbar-fixed.pix-header-desktop,
body.page-id-13627 header.pix-header-mobile.pix-mobile-sticky {
    position: relative !important;
    top: auto !important;
}

body.page-id-13627 .pix-header-scroll-placeholder {
    height: 0 !important;
}

body.page-id-13627 .pixfort-area-content[data-area="header"],
body.page-id-13627 .pixfort-area-content[data-area="m_header"],
body.page-id-13627 .pixfort-area-content[data-area="topbar"],
body.page-id-13627 .pixfort-area-content[data-area="m_topbar"],
body.page-id-13627 .is-smart-sticky {
    position: relative !important;
    top: auto !important;
    transform: none !important;
}

body.page-id-13627 .is-smart-sticky[data-visible="false"],
body.page-id-13627 .is-smart-sticky[data-visible="sticky"] {
    transform: none !important;
}

/* Map legend */
.gunici-kc-map-legend {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

.gunici-kc-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gunici-kc-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.gunici-kc-legend-sender {
    background: #f7941d;
}

.gunici-kc-legend-receiver {
    background: #25D366;
}

/* Map status message */
.gunici-kc-map-status {
    text-align: center;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fff3e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #f7941d;
}

/* Order form error message */
.gunici-form-error {
    padding: 12px 16px;
    background: #fff5f5;
    border: 1px solid #fee;
    border-left: 4px solid #dc3545;
    border-radius: 6px;
    color: #dc3545;
    font-size: 14px;
    margin-top: 12px;
    display: none;
}
