/* =========================================================
   KAMILKO KURYE HESAPLAMA - TEMIZ FINAL CSS
   Eski/orijinal HTML yapisina uyumlu
   ========================================================= */

#kurye-fiyat-hesaplama.kfh-container {
    --kfh-primary: #ff4b4b;
    --kfh-primary-dark: #e13f3f;
    --kfh-primary-soft: rgba(255, 75, 75, 0.08);
    --kfh-primary-ring: rgba(255, 75, 75, 0.12);

    --kfh-text: #111827;
    --kfh-text-soft: #6b7280;
    --kfh-placeholder: #9ca3af;

    --kfh-border: rgba(255, 255, 255, 0.22);
    --kfh-field-border: rgba(255, 255, 255, 0.24);

    --kfh-card-bg: rgba(255, 255, 255, 0.24);
    --kfh-field-bg: rgba(255, 255, 255, 0.50);
    --kfh-field-bg-hover: rgba(255, 255, 255, 0.62);
    --kfh-field-bg-focus: rgba(255, 255, 255, 0.72);

    --kfh-shadow-card: 0 24px 60px rgba(15, 23, 42, 0.10);
    --kfh-shadow-field: 0 8px 20px rgba(15, 23, 42, 0.05);

    --kfh-radius-xl: 28px;
    --kfh-radius-lg: 20px;
    --kfh-radius-md: 16px;
    --kfh-radius-sm: 12px;

    --kfh-field-height: 52px;
    --kfh-row-gap: 12px;

    max-width: 920px;
    margin: 0 auto;
    padding: 14px;
    position: relative;
    z-index: 2;
    font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    box-sizing: border-box;
    background: transparent !important;
}

#kurye-fiyat-hesaplama *,
#kurye-fiyat-hesaplama *::before,
#kurye-fiyat-hesaplama *::after {
    box-sizing: border-box;
}

/* =========================================================
   ANA KART
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-card {
    position: relative;
    overflow: hidden;
    padding: 24px 18px 18px;
    border-radius: var(--kfh-radius-xl);
    background: var(--kfh-card-bg);
    border: 1px solid var(--kfh-border);
    box-shadow:
        var(--kfh-shadow-card),
        inset 0 1px 0 rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#kurye-fiyat-hesaplama .kfh-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top left, rgba(255, 75, 75, 0.05), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 75, 75, 0.03), transparent 26%);
}

#kurye-fiyat-hesaplama .kfh-card > * {
    position: relative;
    z-index: 1;
}

/* =========================================================
   HEADER
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-card-header {
    text-align: center;
    margin: 0 0 18px;
}

#kurye-fiyat-hesaplama .kfh-card-header h2 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

#kurye-fiyat-hesaplama .kfh-card-header h2::after {
    content: "";
    display: block;
    width: 76px;
    height: 4px;
    border-radius: 999px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--kfh-primary), #ff8d8d);
}

#kurye-fiyat-hesaplama .kfh-subtitle {
    margin: 0;
    color: #7b8798;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

/* =========================================================
   FORM YAPISI
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-address-container,
#kurye-fiyat-hesaplama .kfh-form-grid {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

#kurye-fiyat-hesaplama .kfh-address-container > .kfh-input-group,
#kurye-fiyat-hesaplama .kfh-form-grid > .kfh-input-group {
    margin: 0 0 var(--kfh-row-gap) 0 !important;
}

#kurye-fiyat-hesaplama .kfh-address-container > .kfh-input-group:last-child,
#kurye-fiyat-hesaplama .kfh-form-grid > .kfh-input-group:last-child {
    margin-bottom: var(--kfh-row-gap) !important;
}

#kurye-fiyat-hesaplama .kfh-form-section {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* =========================================================
   INPUT GROUP
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-input-group {
    position: relative;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    min-height: var(--kfh-field-height) !important;
    height: var(--kfh-field-height) !important;
    padding: 0 14px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 16px !important;
    background: var(--kfh-field-bg) !important;
    border: 1px solid var(--kfh-field-border) !important;
    box-shadow:
        var(--kfh-shadow-field),
        inset 0 1px 0 rgba(255, 255, 255, 0.26) !important;
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        transform 0.22s ease !important;
}

#kurye-fiyat-hesaplama .kfh-input-group:hover {
    background: var(--kfh-field-bg-hover) !important;
    border-color: rgba(255, 75, 75, 0.16) !important;
}

#kurye-fiyat-hesaplama .kfh-input-group:focus-within {
    background: var(--kfh-field-bg-focus) !important;
    border-color: rgba(255, 75, 75, 0.30) !important;
    box-shadow:
        0 0 0 4px var(--kfh-primary-ring),
        0 12px 26px rgba(255, 75, 75, 0.08) !important;
    transform: translateY(-1px);
}

/* Select bulunan satir kesinlikle ayni yukseklikte kalsin */
#kurye-fiyat-hesaplama .kfh-input-group.product,
#kurye-fiyat-hesaplama .kfh-input-group:has(select) {
    min-height: var(--kfh-field-height) !important;
    height: var(--kfh-field-height) !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* =========================================================
   IKON
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-input-icon {
    width: 30px !important;
    min-width: 30px !important;
    height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    border-radius: 10px !important;
    background: linear-gradient(180deg, rgba(255, 75, 75, 0.10), rgba(255, 75, 75, 0.04)) !important;
    border: 1px solid rgba(255, 75, 75, 0.12) !important;
    flex-shrink: 0 !important;
}

#kurye-fiyat-hesaplama .kfh-input-icon i,
#kurye-fiyat-hesaplama .kfh-input-icon svg {
    color: var(--kfh-primary) !important;
    stroke: var(--kfh-primary) !important;
    font-size: 15px !important;
    width: 15px !important;
    height: 15px !important;
}

/* =========================================================
   INPUT / SELECT / TEXTAREA
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-input-group input,
#kurye-fiyat-hesaplama .kfh-input-group select,
#kurye-fiyat-hesaplama .kfh-input-group textarea {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--kfh-text) !important;
    font-size: 14px !important;
    line-height: normal !important;
    font-weight: 600 !important;
    font-family: inherit !important;
}

#kurye-fiyat-hesaplama .kfh-input-group input::placeholder,
#kurye-fiyat-hesaplama .kfh-input-group textarea::placeholder {
    color: var(--kfh-placeholder) !important;
    opacity: 1 !important;
    font-weight: 600 !important;
}

/* =========================================================
   SELECT FIX
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-input-group select,
#kurye-fiyat-hesaplama select#product {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: transparent !important;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--kfh-primary) 50%),
        linear-gradient(135deg, var(--kfh-primary) 50%, transparent 50%) !important;
    background-repeat: no-repeat !important;
    background-size: 6px 6px, 6px 6px !important;
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50% !important;
    padding-right: 28px !important;
    cursor: pointer !important;

    min-height: 100% !important;
    height: 100% !important;
    line-height: normal !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
}

#kurye-fiyat-hesaplama .kfh-input-group select:invalid,
#kurye-fiyat-hesaplama select#product:invalid {
    color: var(--kfh-placeholder) !important;
    font-weight: 600 !important;
}

/* =========================================================
   BUTTON
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-calculate-button,
#kurye-fiyat-hesaplama button[type="button"],
#kurye-fiyat-hesaplama button[type="submit"] {
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    margin: 8px 0 0 0 !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: linear-gradient(135deg, #ff4b4b 0%, #ff5f5f 48%, #ff7b7b 100%) !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    text-decoration: none !important;
    box-shadow:
        0 18px 34px rgba(255, 75, 75, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
    cursor: pointer !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
}

#kurye-fiyat-hesaplama .kfh-calculate-button:hover,
#kurye-fiyat-hesaplama button[type="button"]:hover,
#kurye-fiyat-hesaplama button[type="submit"]:hover {
    transform: translateY(-1px) !important;
    filter: saturate(1.03) !important;
    box-shadow:
        0 20px 38px rgba(255, 75, 75, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

#kurye-fiyat-hesaplama .kfh-calculate-button svg,
#kurye-fiyat-hesaplama button[type="button"] svg,
#kurye-fiyat-hesaplama button[type="submit"] svg,
#kurye-fiyat-hesaplama .kfh-calculate-button i,
#kurye-fiyat-hesaplama button[type="button"] i,
#kurye-fiyat-hesaplama button[type="submit"] i {
    width: 16px !important;
    height: 16px !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
}

/* =========================================================
   ERROR
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-input-group.error {
    border-color: #dc2626 !important;
    box-shadow:
        0 0 0 4px rgba(220, 38, 38, 0.10),
        0 12px 24px rgba(220, 38, 38, 0.08) !important;
}

#kurye-fiyat-hesaplama .error-message {
    position: absolute !important;
    left: 0 !important;
    bottom: -20px !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 4px !important;
    color: #dc2626 !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

/* =========================================================
   MODAL
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top));
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#kurye-fiyat-hesaplama .kfh-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 1;
}

#kurye-fiyat-hesaplama .kfh-modal-content {
    width: 100%;
    max-width: 760px;
    max-height: calc(100dvh - 32px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.93) 100%);
    border: 1px solid rgba(255,255,255,0.46);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.28);
    transform: translateY(16px) scale(0.985);
    transition: transform 0.26s ease;
    position: relative;
}

#kurye-fiyat-hesaplama .kfh-modal.active .kfh-modal-content {
    transform: translateY(0) scale(1);
}

#kurye-fiyat-hesaplama .kfh-modal-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 22px;
    padding-right: 76px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.07);
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px 24px 0 0;
}

#kurye-fiyat-hesaplama .kfh-modal-header h3 {
    margin: 0;
    color: var(--kfh-text);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
}

#kurye-fiyat-hesaplama .kfh-modal-close {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 44px;
    min-width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 75, 75, 0.16);
    border-radius: 999px;
    background: rgba(255,255,255,0.98);
    color: var(--kfh-primary);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    opacity: 1;
    visibility: visible;
    z-index: 25;
    padding: 0;
}

#kurye-fiyat-hesaplama .kfh-modal-close:hover {
    color: var(--kfh-primary-dark);
    background: #fff5f5;
    border-color: rgba(255, 75, 75, 0.24);
    transform: translateY(-50%) scale(1.04);
}

#kurye-fiyat-hesaplama .kfh-modal-body {
    padding: 22px;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* =========================================================
   RESULT
   ========================================================= */

#kurye-fiyat-hesaplama .kfh-result-text {
    display: grid;
    gap: 12px;
    margin: 0 0 18px 0;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,248,248,0.95) 100%);
    border: 1px solid rgba(255, 75, 75, 0.10);
    color: var(--kfh-text);
    font-size: 14px;
    line-height: 1.7;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

#kurye-fiyat-hesaplama .kfh-result-text strong,
#kurye-fiyat-hesaplama .kfh-result-text b {
    color: var(--kfh-primary-dark);
}

#kurye-fiyat-hesaplama .kfh-price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

#kurye-fiyat-hesaplama .kfh-price-table thead th {
    padding: 16px 18px;
    text-align: left;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--kfh-primary) 0%, #ff7676 100%);
}

#kurye-fiyat-hesaplama .kfh-price-table tbody td {
    padding: 16px 18px;
    color: var(--kfh-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    background: #fff;
}

#kurye-fiyat-hesaplama .kfh-price-table tbody tr:first-child td {
    border-top: 0;
}

#kurye-fiyat-hesaplama .kfh-price-table tbody tr:hover td {
    background: #fff6f6;
}

#kurye-fiyat-hesaplama .kfh-price-table tbody td:last-child {
    font-weight: 800;
    color: var(--kfh-primary-dark);
    white-space: nowrap;
}

/* =========================================================
   WHATSAPP
   ========================================================= */

#kurye-fiyat-hesaplama .web-wp {
    margin-top: 16px;
}

#kurye-fiyat-hesaplama .whatsapp-button {
    width: 100%;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #25D366 0%, #18b957 100%);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

#kurye-fiyat-hesaplama .whatsapp-button:hover {
    transform: translateY(-1px);
    filter: saturate(1.04);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.30);
}

/* =========================================================
   GOOGLE AUTOCOMPLETE
   ========================================================= */

.pac-container {
    border: 1px solid rgba(17, 24, 39, 0.06) !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12) !important;
    padding: 8px 0 !important;
    margin-top: 8px !important;
    font-family: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    overflow: hidden !important;
    z-index: 999999 !important;
}

.pac-item {
    padding: 12px 16px !important;
    font-size: 14px !important;
    border-top: 1px solid rgba(17, 24, 39, 0.05) !important;
    cursor: pointer;
}

.pac-item:first-child {
    border-top: 0 !important;
}

.pac-item:hover {
    background: #fff5f5 !important;
}

.pac-item-query {
    color: #111827 !important;
    font-weight: 700 !important;
}

/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 767px) {
    #kurye-fiyat-hesaplama.kfh-container {
        --kfh-field-height: 48px;
        --kfh-row-gap: 10px;
        padding: 8px;
    }

    #kurye-fiyat-hesaplama .kfh-card {
        padding: 18px 12px 12px;
        border-radius: 22px;
    }

    #kurye-fiyat-hesaplama .kfh-card-header {
        margin-bottom: 14px;
    }

    #kurye-fiyat-hesaplama .kfh-card-header h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    #kurye-fiyat-hesaplama .kfh-card-header h2::after {
        width: 64px;
        margin-top: 12px;
    }

    #kurye-fiyat-hesaplama .kfh-subtitle {
        font-size: 13px;
        line-height: 1.45;
    }

    #kurye-fiyat-hesaplama .kfh-input-group {
        padding: 0 12px !important;
        border-radius: 14px !important;
        gap: 10px !important;
    }

    #kurye-fiyat-hesaplama .kfh-input-icon {
        width: 28px !important;
        min-width: 28px !important;
        height: 28px !important;
        border-radius: 9px !important;
    }

    #kurye-fiyat-hesaplama .kfh-input-icon i,
    #kurye-fiyat-hesaplama .kfh-input-icon svg {
        width: 14px !important;
        height: 14px !important;
        font-size: 14px !important;
    }

    #kurye-fiyat-hesaplama .kfh-input-group input,
    #kurye-fiyat-hesaplama .kfh-input-group select,
    #kurye-fiyat-hesaplama .kfh-input-group textarea {
        font-size: 13px !important;
    }

    #kurye-fiyat-hesaplama .kfh-input-group select,
    #kurye-fiyat-hesaplama select#product {
        background-position:
            calc(100% - 16px) 50%,
            calc(100% - 10px) 50% !important;
        padding-right: 24px !important;
    }

    #kurye-fiyat-hesaplama .kfh-calculate-button,
    #kurye-fiyat-hesaplama button[type="button"],
    #kurye-fiyat-hesaplama button[type="submit"] {
        min-height: 48px !important;
        height: 48px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
        margin-top: 6px !important;
    }

    #kurye-fiyat-hesaplama .whatsapp-button {
        min-height: 48px;
        border-radius: 14px;
        font-size: 14px;
    }

    #kurye-fiyat-hesaplama .kfh-modal {
        padding: 10px;
        padding-top: max(10px, env(safe-area-inset-top));
    }

    #kurye-fiyat-hesaplama .kfh-modal-content {
        max-height: calc(100dvh - 20px);
        border-radius: 18px;
    }

    #kurye-fiyat-hesaplama .kfh-modal-header {
        padding: 16px;
        padding-right: 68px;
        border-radius: 18px 18px 0 0;
    }

    #kurye-fiyat-hesaplama .kfh-modal-close {
        right: 14px;
        width: 42px;
        min-width: 42px;
        height: 42px;
        font-size: 28px;
    }

    #kurye-fiyat-hesaplama .kfh-modal-body {
        padding: 16px;
        max-height: calc(100dvh - 96px);
    }

    #kurye-fiyat-hesaplama .kfh-price-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    #kurye-fiyat-hesaplama .error-message {
        bottom: -18px !important;
        font-size: 10px !important;
    }
}

/* =========================================
   FINAL SELECT ALIGN FIX (KESIN COZUM)
   ========================================= */

/* wrapper aynı kalsın */
#kurye-fiyat-hesaplama .kfh-input-group:has(select) {
    display: flex !important;
    align-items: center !important;
}

/* select’i input gibi davranmaya zorla */
#kurye-fiyat-hesaplama .kfh-input-group select,
#kurye-fiyat-hesaplama select#product {
    height: 100% !important;

    display: flex !important;
    align-items: center !important;

    line-height: normal !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;

    transform: translateY(1px); /* kritik mikro fix */
}

/* =========================================================
   SELECT SATIRI ALT BOSLUK KESIN FIX
   ========================================================= */

/* dropdown satirinin kendi kutusu */
#kurye-fiyat-hesaplama .kfh-input-group.product,
#kurye-fiyat-hesaplama .kfh-input-group:has(select) {
    margin-bottom: 14px !important;
}

/* dropdown'dan sonra gelen input kesin nefes alsin */
#kurye-fiyat-hesaplama .kfh-input-group.product + .kfh-input-group,
#kurye-fiyat-hesaplama .kfh-input-group:has(select) + .kfh-input-group {
    margin-top: 14px !important;
}

/* select satiri icinde gizli ek margin/padding varsa sifirla */
#kurye-fiyat-hesaplama .kfh-input-group.product *,
#kurye-fiyat-hesaplama .kfh-input-group:has(select) * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* select'in kendisini de normalize et */
#kurye-fiyat-hesaplama .kfh-input-group select,
#kurye-fiyat-hesaplama select#product {
    height: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: normal !important;
    box-shadow: none !important;
}

/* ALT ACTION BAR */
.kfh-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* WHATSAPP BUTTON */
.kfh-modal-actions .whatsapp-button {
    flex: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

/* ALT X BUTTON */
.kfh-modal-close-alt {
    flex: 1;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255,75,75,0.25);
    background: #fff;
    color: #ff4b4b;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

.kfh-modal-close-alt:hover {
    background: #fff5f5;
}