{
    "id": 2994,
    "date": "2025-12-21T13:05:18",
    "date_gmt": "2025-12-21T10:05:18",
    "guid": {
        "rendered": "https:\/\/koshk.net\/?page_id=2994"
    },
    "modified": "2025-12-21T13:20:49",
    "modified_gmt": "2025-12-21T10:20:49",
    "slug": "calculator",
    "status": "publish",
    "type": "page",
    "link": "https:\/\/koshk.net\/en\/calculator\/",
    "title": {
        "rendered": "Calculator"
    },
    "content": {
        "rendered": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>KOSHK Space Pricing Calculator<\/title>\n  <style>\n    @import url('https:\/\/fonts.googleapis.com\/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');\n    \n    .koshk-calc-wrapper {\n      --koshk-primary: #ff7a00;\n      --koshk-primary-dark: #e66d00;\n      --koshk-primary-light: #ff9433;\n      --koshk-bg: #ffffff;\n      --koshk-bg-alt: #f8f9fa;\n      --koshk-text: #1a1a1a;\n      --koshk-text-muted: #6b7280;\n      --koshk-border: #e5e7eb;\n      --koshk-success: #10b981;\n      --koshk-info: #3b82f6;\n      --koshk-shadow-sm: 0 1px 3px rgba(0,0,0,0.04);\n      --koshk-shadow-md: 0 4px 16px rgba(0,0,0,0.06);\n      --koshk-shadow-lg: 0 20px 40px rgba(0,0,0,0.08);\n    }\n    \n    .koshk-calc-wrapper * {\n      margin: 0;\n      padding: 0;\n      box-sizing: border-box;\n    }\n    \n    .koshk-calc-wrapper {\n      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;\n      background: linear-gradient(135deg, #fef3eb 0%, #ffffff 100%);\n      padding: 20px;\n      color: var(--koshk-text);\n      line-height: 1.6;\n    }\n    \n    .koshk-calc-container {\n      max-width: 960px;\n      margin: 0 auto;\n      background: var(--koshk-bg);\n      border-radius: 24px;\n      box-shadow: var(--koshk-shadow-lg);\n      overflow: hidden;\n      animation: koshkSlideUp 0.6s ease-out;\n    }\n    \n    @keyframes koshkSlideUp {\n      from {\n        opacity: 0;\n        transform: translateY(30px);\n      }\n      to {\n        opacity: 1;\n        transform: translateY(0);\n      }\n    }\n    \n    .koshk-calc-header {\n      background: linear-gradient(135deg, var(--koshk-primary) 0%, var(--koshk-primary-dark) 100%);\n      padding: 40px;\n      color: white;\n      position: relative;\n      overflow: hidden;\n    }\n    \n    .koshk-calc-header::before {\n      content: '';\n      position: absolute;\n      top: -50%;\n      right: -10%;\n      width: 300px;\n      height: 300px;\n      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);\n      border-radius: 50%;\n      animation: koshkPulse 4s ease-in-out infinite;\n    }\n    \n    @keyframes koshkPulse {\n      0%, 100% { transform: scale(1); opacity: 0.5; }\n      50% { transform: scale(1.2); opacity: 0.3; }\n    }\n    \n    .koshk-header-content {\n      position: relative;\n      z-index: 1;\n      display: flex;\n      align-items: center;\n      gap: 20px;\n    }\n    \n    .koshk-calc-logo {\n      width: 64px;\n      height: 64px;\n      background: white;\n      border-radius: 16px;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      font-weight: 800;\n      font-size: 32px;\n      color: var(--koshk-primary);\n      box-shadow: 0 8px 24px rgba(0,0,0,0.15);\n    }\n    \n    .koshk-header-text h1 {\n      font-size: 28px;\n      font-weight: 800;\n      margin-bottom: 8px;\n    }\n    \n    .koshk-header-text p {\n      font-size: 15px;\n      opacity: 0.95;\n      font-weight: 400;\n    }\n    \n    .koshk-calc-content {\n      padding: 40px;\n    }\n    \n    .koshk-progress-bar {\n      display: flex;\n      gap: 12px;\n      margin-bottom: 40px;\n      padding: 20px;\n      background: var(--koshk-bg-alt);\n      border-radius: 16px;\n    }\n    \n    .koshk-progress-step {\n      flex: 1;\n      text-align: center;\n      padding: 16px;\n      background: white;\n      border-radius: 12px;\n      border: 2px solid var(--koshk-border);\n      transition: all 0.3s ease;\n      cursor: default;\n    }\n    \n    .koshk-progress-step.koshk-active {\n      border-color: var(--koshk-primary);\n      background: linear-gradient(135deg, #fff5eb 0%, white 100%);\n      box-shadow: var(--koshk-shadow-md);\n    }\n    \n    .koshk-progress-step.koshk-completed {\n      border-color: var(--koshk-success);\n      background: linear-gradient(135deg, #f0fdf4 0%, white 100%);\n    }\n    \n    .koshk-step-number {\n      width: 32px;\n      height: 32px;\n      border-radius: 50%;\n      background: var(--koshk-border);\n      color: var(--koshk-text-muted);\n      display: inline-flex;\n      align-items: center;\n      justify-content: center;\n      font-weight: 700;\n      margin-bottom: 8px;\n      transition: all 0.3s ease;\n    }\n    \n    .koshk-progress-step.koshk-active .koshk-step-number {\n      background: var(--koshk-primary);\n      color: white;\n    }\n    \n    .koshk-progress-step.koshk-completed .koshk-step-number {\n      background: var(--koshk-success);\n      color: white;\n    }\n    \n    .koshk-step-label {\n      font-size: 13px;\n      font-weight: 600;\n      color: var(--koshk-text-muted);\n    }\n    \n    .koshk-progress-step.koshk-active .koshk-step-label,\n    .koshk-progress-step.koshk-completed .koshk-step-label {\n      color: var(--koshk-text);\n    }\n    \n    .koshk-calc-section {\n      margin-bottom: 40px;\n      animation: koshkFadeIn 0.5s ease-out;\n    }\n    \n    @keyframes koshkFadeIn {\n      from { opacity: 0; transform: translateY(10px); }\n      to { opacity: 1; transform: translateY(0); }\n    }\n    \n    .koshk-section-title {\n      font-size: 20px;\n      font-weight: 700;\n      margin-bottom: 20px;\n      color: var(--koshk-text);\n      display: flex;\n      align-items: center;\n      gap: 12px;\n    }\n    \n    .koshk-section-icon {\n      width: 40px;\n      height: 40px;\n      background: linear-gradient(135deg, var(--koshk-primary-light), var(--koshk-primary));\n      border-radius: 10px;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      color: white;\n      font-size: 20px;\n    }\n    \n    .koshk-input-grid {\n      display: grid;\n      grid-template-columns: 1fr 1fr 1fr;\n      gap: 16px;\n      margin-bottom: 20px;\n    }\n    \n    .koshk-input-group {\n      display: flex;\n      flex-direction: column;\n    }\n    \n    .koshk-input-group.koshk-full {\n      grid-column: 1 \/ -1;\n    }\n    \n    .koshk-calc-wrapper label {\n      font-size: 14px;\n      font-weight: 600;\n      color: var(--koshk-text);\n      margin-bottom: 8px;\n      display: flex;\n      align-items: center;\n      gap: 6px;\n    }\n    \n    .koshk-tooltip {\n      display: inline-flex;\n      align-items: center;\n      justify-content: center;\n      width: 18px;\n      height: 18px;\n      border-radius: 50%;\n      background: var(--koshk-text-muted);\n      color: white;\n      font-size: 12px;\n      cursor: help;\n      position: relative;\n    }\n    \n    .koshk-tooltip:hover::after {\n      content: attr(data-tip);\n      position: absolute;\n      bottom: 100%;\n      left: 50%;\n      transform: translateX(-50%);\n      background: var(--koshk-text);\n      color: white;\n      padding: 8px 12px;\n      border-radius: 8px;\n      font-size: 12px;\n      white-space: nowrap;\n      margin-bottom: 8px;\n      z-index: 100;\n      box-shadow: var(--koshk-shadow-md);\n    }\n    \n    .koshk-calc-wrapper input,\n    .koshk-calc-wrapper select {\n      width: 100%;\n      padding: 14px 16px;\n      border: 2px solid var(--koshk-border);\n      border-radius: 12px;\n      font-size: 15px;\n      font-family: inherit;\n      transition: all 0.3s ease;\n      background: white;\n      color: var(--koshk-text);\n    }\n    \n    .koshk-calc-wrapper input:focus,\n    .koshk-calc-wrapper select:focus {\n      outline: none;\n      border-color: var(--koshk-primary);\n      box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);\n    }\n    \n    .koshk-calc-wrapper input::placeholder {\n      color: var(--koshk-text-muted);\n      opacity: 0.6;\n    }\n    \n    .koshk-helper-text {\n      font-size: 12px;\n      color: var(--koshk-text-muted);\n      margin-top: 6px;\n      display: flex;\n      align-items: center;\n      gap: 4px;\n    }\n    \n    .koshk-calc-btn {\n      width: 100%;\n      padding: 18px 32px;\n      background: linear-gradient(135deg, var(--koshk-primary) 0%, var(--koshk-primary-dark) 100%);\n      color: white;\n      border: none;\n      border-radius: 14px;\n      font-size: 16px;\n      font-weight: 700;\n      cursor: pointer;\n      transition: all 0.3s ease;\n      box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);\n      position: relative;\n      overflow: hidden;\n    }\n    \n    .koshk-calc-btn::before {\n      content: '';\n      position: absolute;\n      top: 50%;\n      left: 50%;\n      width: 0;\n      height: 0;\n      border-radius: 50%;\n      background: rgba(255,255,255,0.2);\n      transform: translate(-50%, -50%);\n      transition: width 0.6s, height 0.6s;\n    }\n    \n    .koshk-calc-btn:hover::before {\n      width: 300px;\n      height: 300px;\n    }\n    \n    .koshk-calc-btn:hover {\n      transform: translateY(-2px);\n      box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4);\n    }\n    \n    .koshk-calc-btn:active {\n      transform: translateY(0);\n    }\n    \n    .koshk-calc-btn span {\n      position: relative;\n      z-index: 1;\n    }\n    \n    .koshk-calc-results {\n      display: none;\n      animation: koshkSlideDown 0.5s ease-out;\n    }\n    \n    @keyframes koshkSlideDown {\n      from {\n        opacity: 0;\n        transform: translateY(-20px);\n      }\n      to {\n        opacity: 1;\n        transform: translateY(0);\n      }\n    }\n    \n    .koshk-calc-results.koshk-show {\n      display: block;\n    }\n    \n    .koshk-calc-alert {\n      padding: 20px;\n      background: linear-gradient(135deg, #fff5eb 0%, #fef3eb 100%);\n      border: 2px solid var(--koshk-primary-light);\n      border-radius: 16px;\n      margin-bottom: 30px;\n      display: flex;\n      gap: 16px;\n      align-items: start;\n    }\n    \n    .koshk-alert-icon {\n      width: 48px;\n      height: 48px;\n      background: var(--koshk-primary);\n      border-radius: 12px;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      color: white;\n      font-size: 24px;\n      flex-shrink: 0;\n    }\n    \n    .koshk-alert-content h3 {\n      font-size: 16px;\n      font-weight: 700;\n      margin-bottom: 8px;\n      color: var(--koshk-text);\n    }\n    \n    .koshk-alert-content p {\n      font-size: 14px;\n      color: var(--koshk-text-muted);\n      line-height: 1.6;\n    }\n    \n    .koshk-price-card {\n      background: white;\n      border: 2px solid var(--koshk-border);\n      border-radius: 16px;\n      padding: 24px;\n      margin-bottom: 20px;\n      transition: all 0.3s ease;\n    }\n    \n    .koshk-price-card:hover {\n      border-color: var(--koshk-primary-light);\n      box-shadow: var(--koshk-shadow-md);\n      transform: translateY(-2px);\n    }\n    \n    .koshk-price-card-header {\n      display: flex;\n      justify-content: space-between;\n      align-items: center;\n      margin-bottom: 16px;\n      padding-bottom: 16px;\n      border-bottom: 2px dashed var(--koshk-border);\n    }\n    \n    .koshk-price-label {\n      font-size: 15px;\n      font-weight: 600;\n      color: var(--koshk-text-muted);\n    }\n    \n    .koshk-price-value {\n      font-size: 28px;\n      font-weight: 800;\n      color: var(--koshk-primary);\n    }\n    \n    .koshk-price-unit {\n      font-size: 14px;\n      font-weight: 500;\n      color: var(--koshk-text-muted);\n      margin-left: 4px;\n    }\n    \n    .koshk-price-range {\n      display: flex;\n      gap: 12px;\n      margin-top: 16px;\n    }\n    \n    .koshk-range-item {\n      flex: 1;\n      padding: 16px;\n      background: var(--koshk-bg-alt);\n      border-radius: 12px;\n      text-align: center;\n    }\n    \n    .koshk-range-label {\n      font-size: 12px;\n      color: var(--koshk-text-muted);\n      margin-bottom: 6px;\n      font-weight: 600;\n    }\n    \n    .koshk-range-value {\n      font-size: 20px;\n      font-weight: 700;\n      color: var(--koshk-text);\n    }\n    \n    .koshk-zones-guide {\n      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);\n      border: 2px solid #bae6fd;\n      border-radius: 16px;\n      padding: 24px;\n      margin-top: 30px;\n    }\n    \n    .koshk-zones-guide h4 {\n      font-size: 18px;\n      font-weight: 700;\n      margin-bottom: 20px;\n      color: var(--koshk-text);\n      display: flex;\n      align-items: center;\n      gap: 10px;\n    }\n    \n    .koshk-zone {\n      background: white;\n      border-radius: 12px;\n      padding: 16px;\n      margin-bottom: 12px;\n      display: flex;\n      gap: 16px;\n      align-items: start;\n      transition: all 0.3s ease;\n    }\n    \n    .koshk-zone:hover {\n      transform: translateX(4px);\n      box-shadow: var(--koshk-shadow-sm);\n    }\n    \n    .koshk-zone:last-child {\n      margin-bottom: 0;\n    }\n    \n    .koshk-zone-icon {\n      width: 44px;\n      height: 44px;\n      border-radius: 10px;\n      display: flex;\n      align-items: center;\n      justify-content: center;\n      font-size: 22px;\n      flex-shrink: 0;\n    }\n    \n    .koshk-zone.koshk-premium .koshk-zone-icon {\n      background: linear-gradient(135deg, #fef3c7, #fde68a);\n    }\n    \n    .koshk-zone.koshk-standard .koshk-zone-icon {\n      background: linear-gradient(135deg, #dbeafe, #bfdbfe);\n    }\n    \n    .koshk-zone.koshk-basic .koshk-zone-icon {\n      background: linear-gradient(135deg, #f3e8ff, #e9d5ff);\n    }\n    \n    .koshk-zone-content h5 {\n      font-size: 15px;\n      font-weight: 700;\n      margin-bottom: 6px;\n      color: var(--koshk-text);\n    }\n    \n    .koshk-zone-price {\n      font-size: 20px;\n      font-weight: 800;\n      color: var(--koshk-primary);\n      margin-bottom: 8px;\n    }\n    \n    .koshk-zone-description {\n      font-size: 13px;\n      color: var(--koshk-text-muted);\n      line-height: 1.5;\n    }\n    \n    .koshk-discount-section {\n      margin-top: 30px;\n    }\n    \n    .koshk-discount-grid {\n      display: grid;\n      grid-template-columns: repeat(3, 1fr);\n      gap: 16px;\n    }\n    \n    .koshk-discount-card {\n      background: white;\n      border: 2px solid var(--koshk-border);\n      border-radius: 16px;\n      padding: 20px;\n      text-align: center;\n      transition: all 0.3s ease;\n      position: relative;\n      overflow: hidden;\n    }\n    \n    .koshk-discount-card::before {\n      content: '';\n      position: absolute;\n      top: 0;\n      left: 0;\n      right: 0;\n      height: 4px;\n      background: linear-gradient(90deg, var(--koshk-primary), var(--koshk-primary-light));\n      transform: scaleX(0);\n      transition: transform 0.3s ease;\n    }\n    \n    .koshk-discount-card:hover::before {\n      transform: scaleX(1);\n    }\n    \n    .koshk-discount-card:hover {\n      border-color: var(--koshk-primary);\n      box-shadow: var(--koshk-shadow-md);\n      transform: translateY(-4px);\n    }\n    \n    .koshk-discount-badge {\n      display: inline-block;\n      background: linear-gradient(135deg, #10b981, #059669);\n      color: white;\n      padding: 6px 12px;\n      border-radius: 20px;\n      font-size: 12px;\n      font-weight: 700;\n      margin-bottom: 12px;\n    }\n    \n    .koshk-discount-period {\n      font-size: 14px;\n      font-weight: 600;\n      color: var(--koshk-text-muted);\n      margin-bottom: 8px;\n    }\n    \n    .koshk-discount-price {\n      font-size: 24px;\n      font-weight: 800;\n      color: var(--koshk-text);\n      margin-bottom: 4px;\n    }\n    \n    .koshk-discount-detail {\n      font-size: 12px;\n      color: var(--koshk-text-muted);\n    }\n    \n    .koshk-info-box {\n      background: linear-gradient(135deg, #fef3eb 0%, #fff5eb 100%);\n      border-left: 4px solid var(--koshk-primary);\n      padding: 20px;\n      border-radius: 12px;\n      margin-top: 30px;\n    }\n    \n    .koshk-info-box h4 {\n      font-size: 16px;\n      font-weight: 700;\n      margin-bottom: 12px;\n      color: var(--koshk-text);\n    }\n    \n    .koshk-info-box ul {\n      list-style: none;\n      padding: 0;\n    }\n    \n    .koshk-info-box li {\n      padding: 8px 0;\n      font-size: 14px;\n      color: var(--koshk-text-muted);\n      display: flex;\n      align-items: start;\n      gap: 10px;\n    }\n    \n    .koshk-info-box li::before {\n      content: '\u2713';\n      color: var(--koshk-success);\n      font-weight: 700;\n      flex-shrink: 0;\n    }\n    \n    @media (max-width: 768px) {\n      .koshk-calc-header {\n        padding: 30px 20px;\n      }\n      \n      .koshk-header-content {\n        flex-direction: column;\n        text-align: center;\n      }\n      \n      .koshk-calc-logo {\n        width: 56px;\n        height: 56px;\n        font-size: 28px;\n      }\n      \n      .koshk-header-text h1 {\n        font-size: 24px;\n      }\n      \n      .koshk-calc-content {\n        padding: 24px 20px;\n      }\n      \n      .koshk-progress-bar {\n        flex-direction: column;\n        gap: 8px;\n      }\n      \n      .koshk-input-grid {\n        grid-template-columns: 1fr;\n      }\n      \n      .koshk-discount-grid {\n        grid-template-columns: 1fr;\n      }\n      \n      .koshk-price-range {\n        flex-direction: column;\n      }\n    }\n  <\/style>\n<\/head>\n<body>\n  <div class=\"koshk-calc-wrapper\">\n    <div class=\"koshk-calc-container\">\n      <div class=\"koshk-calc-header\">\n        <div class=\"koshk-header-content\">\n          <div class=\"koshk-calc-logo\">K<\/div>\n          <div class=\"koshk-header-text\">\n            <h1>KOSHK Space Pricing Calculator<\/h1>\n            <p>Calculate your space rental pricing in 3 easy steps \u2022 Get instant, accurate pricing guidance<\/p>\n          <\/div>\n        <\/div>\n      <\/div>\n      \n      <div class=\"koshk-calc-content\">\n        <div class=\"koshk-progress-bar\">\n          <div class=\"koshk-progress-step koshk-active\" id=\"koshk-step1-indicator\">\n            <div class=\"koshk-step-number\">1<\/div>\n            <div class=\"koshk-step-label\">Your Rent<\/div>\n          <\/div>\n          <div class=\"koshk-progress-step\" id=\"koshk-step2-indicator\">\n            <div class=\"koshk-step-number\">2<\/div>\n            <div class=\"koshk-step-label\">Space Size<\/div>\n          <\/div>\n          <div class=\"koshk-progress-step\" id=\"koshk-step3-indicator\">\n            <div class=\"koshk-step-number\">3<\/div>\n            <div class=\"koshk-step-label\">Get Results<\/div>\n          <\/div>\n        <\/div>\n        \n        <div class=\"koshk-calc-section\">\n          <div class=\"koshk-section-title\">\n            <div class=\"koshk-section-icon\">\ud83d\udcb0<\/div>\n            <span>Step 1: Tell us about your rent<\/span>\n          <\/div>\n          \n          <div class=\"koshk-input-grid\">\n            <div class=\"koshk-input-group\">\n              <label>\n                Rent Amount\n                <span class=\"koshk-tooltip\" data-tip=\"The total rent you pay for your space\">?<\/span>\n              <\/label>\n              <input type=\"number\" id=\"koshk-rent-amount\" placeholder=\"e.g., 50000\" min=\"0\" step=\"0.01\">\n              <div class=\"koshk-helper-text\">\ud83d\udca1 Enter only numbers (no commas)<\/div>\n            <\/div>\n            \n            <div class=\"koshk-input-group\">\n              <label>\n                Payment Period\n                <span class=\"koshk-tooltip\" data-tip=\"How often you pay rent\">?<\/span>\n              <\/label>\n              <select id=\"koshk-rent-period\">\n                <option value=\"year\">Per Year<\/option>\n                <option value=\"month\">Per Month<\/option>\n              <\/select>\n            <\/div>\n            \n            <div class=\"koshk-input-group\">\n              <label>\n                Currency\n                <span class=\"koshk-tooltip\" data-tip=\"Your rent currency\">?<\/span>\n              <\/label>\n              <select id=\"koshk-currency\">\n                <option value=\"USD\">USD ($)<\/option>\n                <option value=\"SAR\">SAR (\u0631.\u0633)<\/option>\n                <option value=\"EUR\">EUR (\u20ac)<\/option>\n                <option value=\"AED\">AED (\u062f.\u0625)<\/option>\n                <option value=\"GBP\">GBP (\u00a3)<\/option>\n              <\/select>\n            <\/div>\n          <\/div>\n        <\/div>\n        \n        <div class=\"koshk-calc-section\">\n          <div class=\"koshk-section-title\">\n            <div class=\"koshk-section-icon\">\ud83d\udccf<\/div>\n            <span>Step 2: Your space details<\/span>\n          <\/div>\n          \n          <div class=\"koshk-input-grid\">\n            <div class=\"koshk-input-group\">\n              <label>\n                Total Store Area\n                <span class=\"koshk-tooltip\" data-tip=\"The full size of your store in square meters\">?<\/span>\n              <\/label>\n              <input type=\"number\" id=\"koshk-store-meters\" placeholder=\"e.g., 100\" min=\"1\" step=\"0.1\">\n              <div class=\"koshk-helper-text\">\ud83d\udcd0 In square meters (m\u00b2)<\/div>\n            <\/div>\n            \n            <div class=\"koshk-input-group\">\n              <label>\n                Minimum Price Floor\n                <span class=\"koshk-tooltip\" data-tip=\"Minimum daily rate per square meter (recommended: $5)\">?<\/span>\n              <\/label>\n              <input type=\"number\" id=\"koshk-min-per-meter\" value=\"5\" min=\"0\" step=\"0.01\">\n              <div class=\"koshk-helper-text\">\u26a0\ufe0f Minimum USD per m\u00b2 per day<\/div>\n            <\/div>\n          <\/div>\n        <\/div>\n        \n        <button class=\"koshk-calc-btn\" id=\"koshk-calc-btn\">\n          <span>\u2728 Calculate My Pricing \u2728<\/span>\n        <\/button>\n        \n        <div class=\"koshk-calc-results\" id=\"koshk-results\">\n          <div class=\"koshk-calc-alert\">\n            <div class=\"koshk-alert-icon\">\ud83d\udca1<\/div>\n            <div class=\"koshk-alert-content\">\n              <h3>Understanding Your Pricing<\/h3>\n              <p>Your price is calculated per square meter per day. We show you 3 price points: a <strong>Low<\/strong> price (20% below average), an <strong>Average<\/strong> price, and a <strong>High<\/strong> price (20% above average). This range helps you price different zones of your space based on their visibility and foot traffic.<\/p>\n            <\/div>\n          <\/div>\n          \n          <div class=\"koshk-price-card\">\n            <div class=\"koshk-price-card-header\">\n              <div class=\"koshk-price-label\">Your Center\/Average Price<\/div>\n              <div>\n                <span class=\"koshk-price-value\" id=\"koshk-center-price\">$0.00<\/span>\n                <span class=\"koshk-price-unit\">per m\u00b2 \/ day<\/span>\n              <\/div>\n            <\/div>\n            \n            <div class=\"koshk-price-range\">\n              <div class=\"koshk-range-item\">\n                <div class=\"koshk-range-label\">Low (-20%)<\/div>\n                <div class=\"koshk-range-value\" id=\"koshk-low-price\">$0.00<\/div>\n              <\/div>\n              <div class=\"koshk-range-item\" style=\"background: linear-gradient(135deg, #fef3eb, #fff5eb);\">\n                <div class=\"koshk-range-label\">Average<\/div>\n                <div class=\"koshk-range-value\" style=\"color: var(--koshk-primary);\" id=\"koshk-center-price-2\">$0.00<\/div>\n              <\/div>\n              <div class=\"koshk-range-item\">\n                <div class=\"koshk-range-label\">High (+20%)<\/div>\n                <div class=\"koshk-range-value\" id=\"koshk-high-price\">$0.00<\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n          \n          <div class=\"koshk-zones-guide\">\n            <h4>\ud83c\udfaf Where to Use Each Price (Super Simple Guide)<\/h4>\n            \n            <div class=\"koshk-zone koshk-premium\">\n              <div class=\"koshk-zone-icon\">\u2b50<\/div>\n              <div class=\"koshk-zone-content\">\n                <h5>High Price Zone<\/h5>\n                <div class=\"koshk-zone-price\" id=\"koshk-high-zone-price\">$0.00\/day<\/div>\n                <div class=\"koshk-zone-description\">\n                  <strong>Best Spots:<\/strong> Right by your store entrance, window displays everyone sees from outside, the first table\/shelf customers see when they walk in, areas next to the cash register\n                  <br><br>\n                  <strong>Why charge more?<\/strong> These are your &#8220;prime real estate&#8221; spots &#8211; like having a billboard in Times Square! Maximum people see these spots = maximum value for brands\n                <\/div>\n              <\/div>\n            <\/div>\n            \n            <div class=\"koshk-zone koshk-standard\">\n              <div class=\"koshk-zone-icon\">\u2728<\/div>\n              <div class=\"koshk-zone-content\">\n                <h5>Average Price Zone<\/h5>\n                <div class=\"koshk-zone-price\" id=\"koshk-avg-zone-price\">$0.00\/day<\/div>\n                <div class=\"koshk-zone-description\">\n                  <strong>Best Spots:<\/strong> Middle aisles, eye-level shelves, seating areas where people wait, spaces near popular products\n                  <br><br>\n                  <strong>Why average price?<\/strong> Good visibility but not the first thing people see. Still gets plenty of eyeballs, just not the absolute maximum\n                <\/div>\n              <\/div>\n            <\/div>\n            \n            <div class=\"koshk-zone koshk-basic\">\n              <div class=\"koshk-zone-icon\">\ud83d\udce6<\/div>\n              <div class=\"koshk-zone-content\">\n                <h5>Low Price Zone<\/h5>\n                <div class=\"koshk-zone-price\" id=\"koshk-low-zone-price\">$0.00\/day<\/div>\n                <div class=\"koshk-zone-description\">\n                  <strong>Best Spots:<\/strong> Back corners, near storage\/bathroom areas, bottom shelves, spots behind other displays\n                  <br><br>\n                  <strong>Why lower price?<\/strong> Less foot traffic means fewer people see it. Still useful for brands, just less premium. Think of it as a &#8220;budget-friendly&#8221; option\n                <\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n          \n          <div class=\"koshk-discount-section\">\n            <div class=\"koshk-section-title\">\n              <div class=\"koshk-section-icon\">\ud83c\udf81<\/div>\n              <span>Discounted Rates for Longer Bookings<\/span>\n            <\/div>\n            <p style=\"color: var(--koshk-text-muted); margin-bottom: 20px; font-size: 14px;\">\n              <strong>Pro Tip:<\/strong> Offer discounts for longer commitments! Brands booking weekly\/monthly\/yearly get better rates, and you get guaranteed income. Win-win! \ud83c\udf89\n            <\/p>\n            \n            <div class=\"koshk-discount-grid\">\n              <div class=\"koshk-discount-card\">\n                <div class=\"koshk-discount-badge\">~14% off daily<\/div>\n                <div class=\"koshk-discount-period\">Weekly Rate<\/div>\n                <div class=\"koshk-discount-price\" id=\"koshk-week-price\">$0<\/div>\n                <div class=\"koshk-discount-detail\" id=\"koshk-week-detail\">for full store \u2022 7 days<\/div>\n              <\/div>\n              \n              <div class=\"koshk-discount-card\">\n                <div class=\"koshk-discount-badge\">~33% off daily<\/div>\n                <div class=\"koshk-discount-period\">Monthly Rate<\/div>\n                <div class=\"koshk-discount-price\" id=\"koshk-month-price\">$0<\/div>\n                <div class=\"koshk-discount-detail\" id=\"koshk-month-detail\">for full store \u2022 30 days<\/div>\n              <\/div>\n              \n              <div class=\"koshk-discount-card\">\n                <div class=\"koshk-discount-badge\">~45% off daily<\/div>\n                <div class=\"koshk-discount-period\">Yearly Rate<\/div>\n                <div class=\"koshk-discount-price\" id=\"koshk-year-price\">$0<\/div>\n                <div class=\"koshk-discount-detail\" id=\"koshk-year-detail\">for full store \u2022 365 days<\/div>\n              <\/div>\n            <\/div>\n          <\/div>\n          \n          <div class=\"koshk-info-box\">\n            <h4>\ud83c\udf93 Quick Pricing Tips for Success<\/h4>\n            <ul>\n              <li><strong>Start smart:<\/strong> Use the average price first. You can always adjust up for premium spots or down for slow zones<\/li>\n              <li><strong>Be flexible:<\/strong> High-traffic days (weekends\/holidays)? Charge the high price! Slow days? Offer the low price to fill space<\/li>\n              <li><strong>Bundle deals:<\/strong> Offer package pricing &#8211; &#8220;Rent 3 spots, get 15% off!&#8221; to attract bigger brands<\/li>\n              <li><strong>Think location:<\/strong> That shelf everyone passes to get coffee? High price. Back corner near restroom? Low price<\/li>\n              <li><strong>Test &#038; learn:<\/strong> Start with these prices, see what sells, and adjust. There&#8217;s no perfect formula &#8211; it&#8217;s about what works for YOUR space!<\/li>\n            <\/ul>\n          <\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n  \n  <script>\n    (function() {\n      const $ = id => document.getElementById(id);\n      \n      function updateProgress(step) {\n        for (let i = 1; i <= 3; i++) {\n          const stepEl = $(`koshk-step${i}-indicator`);\n          if (i < step) {\n            stepEl.classList.add('koshk-completed');\n            stepEl.classList.remove('koshk-active');\n          } else if (i === step) {\n            stepEl.classList.add('koshk-active');\n            stepEl.classList.remove('koshk-completed');\n          } else {\n            stepEl.classList.remove('koshk-active', 'koshk-completed');\n          }\n        }\n      }\n      \n      $('koshk-rent-amount').addEventListener('input', () => updateProgress(1));\n      $('koshk-store-meters').addEventListener('input', () => updateProgress(2));\n      \n      function getCurrencySymbol(currency) {\n        const symbols = {\n          'USD': '$',\n          'SAR': '\u0631.\u0633',\n          'EUR': '\u20ac',\n          'AED': '\u062f.\u0625',\n          'GBP': '\u00a3'\n        };\n        return symbols[currency] || currency;\n      }\n      \n      function formatPrice(value, currency) {\n        const symbol = getCurrencySymbol(currency);\n        const formatted = Number(value).toLocaleString(undefined, {\n          minimumFractionDigits: 2,\n          maximumFractionDigits: 2\n        });\n        return `${symbol}${formatted}`;\n      }\n      \n      function compute() {\n        const rent = parseFloat($('koshk-rent-amount').value || 0);\n        const period = $('koshk-rent-period').value;\n        const meters = parseFloat($('koshk-store-meters').value || 0);\n        const minPerMeterUSD = parseFloat($('koshk-min-per-meter').value || 5);\n        const currency = $('koshk-currency').value;\n        \n        if (!rent || rent <= 0) {\n          alert('\u26a0\ufe0f Please enter your rent amount!');\n          $('koshk-rent-amount').focus();\n          return;\n        }\n        \n        if (!meters || meters <= 0) {\n          alert('\u26a0\ufe0f Please enter your store size in square meters!');\n          $('koshk-store-meters').focus();\n          return;\n        }\n        \n        updateProgress(3);\n        \n        const annualRent = period === 'month' ? rent * 12 : rent;\n        const dailyTotal = annualRent \/ 365;\n        let centerPerMeterPerDayUSD = dailyTotal \/ meters;\n        \n        if (centerPerMeterPerDayUSD < minPerMeterUSD) {\n          centerPerMeterPerDayUSD = minPerMeterUSD;\n        }\n        \n        const low = Math.max(centerPerMeterPerDayUSD * 0.8, minPerMeterUSD);\n        const high = Math.max(centerPerMeterPerDayUSD * 1.2, minPerMeterUSD);\n        \n        const weekMult = 6;\n        const monthMult = 20;\n        const yearMult = 200;\n        \n        const weekTotal = centerPerMeterPerDayUSD * weekMult * meters;\n        const monthTotal = centerPerMeterPerDayUSD * monthMult * meters;\n        const yearTotal = centerPerMeterPerDayUSD * yearMult * meters;\n        \n        $('koshk-center-price').textContent = formatPrice(centerPerMeterPerDayUSD, currency);\n        $('koshk-center-price-2').textContent = formatPrice(centerPerMeterPerDayUSD, currency);\n        $('koshk-low-price').textContent = formatPrice(low, currency);\n        $('koshk-high-price').textContent = formatPrice(high, currency);\n        \n        $('koshk-high-zone-price').textContent = formatPrice(high, currency) + '\/m\u00b2';\n        $('koshk-avg-zone-price').textContent = formatPrice(centerPerMeterPerDayUSD, currency) + '\/m\u00b2';\n        $('koshk-low-zone-price').textContent = formatPrice(low, currency) + '\/m\u00b2';\n        \n        $('koshk-week-price').textContent = formatPrice(weekTotal, currency);\n        $('koshk-week-detail').textContent = `${formatPrice(centerPerMeterPerDayUSD * weekMult, currency)} per m\u00b2 \u2022 7 days`;\n        \n        $('koshk-month-price').textContent = formatPrice(monthTotal, currency);\n        $('koshk-month-detail').textContent = `${formatPrice(centerPerMeterPerDayUSD * monthMult, currency)} per m\u00b2 \u2022 30 days`;\n        \n        $('koshk-year-price').textContent = formatPrice(yearTotal, currency);\n        $('koshk-year-detail').textContent = `${formatPrice(centerPerMeterPerDayUSD * yearMult, currency)} per m\u00b2 \u2022 365 days`;\n        \n        $('koshk-results').classList.add('koshk-show');\n        \n        setTimeout(() => {\n          $('koshk-results').scrollIntoView({ behavior: 'smooth', block: 'start' });\n        }, 100);\n      }\n      \n      $('koshk-calc-btn').addEventListener('click', compute);\n      \n      ['koshk-rent-amount', 'koshk-store-meters', 'koshk-min-per-meter'].forEach(id => {\n        $(id).addEventListener('keydown', function(e) {\n          if (e.key === 'Enter') compute();\n        });\n      });\n    })();\n  <\/script>\n<\/body>\n<\/html>",
        "protected": false
    },
    "excerpt": {
        "rendered": "<p>KOSHK Space Pricing Calculator K KOSHK Space Pricing Calculator Calculate your space rental pricing in 3 easy steps \u2022 Get instant, accurate pricing guidance 1 Your Rent 2 Space Size 3 Get Results \ud83d\udcb0 Step 1: Tell us about your rent Rent Amount ? \ud83d\udca1 Enter only numbers (no commas) Payment Period ? Per YearPer [&hellip;]<\/p>",
        "protected": false
    },
    "author": 1,
    "featured_media": 0,
    "parent": 0,
    "menu_order": 0,
    "comment_status": "closed",
    "ping_status": "closed",
    "template": "",
    "meta": {
        "footnotes": ""
    },
    "class_list": [
        "post-2994",
        "page",
        "type-page",
        "status-publish",
        "hentry"
    ],
    "acf": [],
    "pure_taxonomies": [],
    "yoast_head": "<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Calculator - KOSHK | Making Further Possible<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/koshk.net\/en\/calculator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Calculator - KOSHK | Making Further Possible\" \/>\n<meta property=\"og:description\" content=\"KOSHK Space Pricing Calculator K KOSHK Space Pricing Calculator Calculate your space rental pricing in 3 easy steps \u2022 Get instant, accurate pricing guidance 1 Your Rent 2 Space Size 3 Get Results \ud83d\udcb0 Step 1: Tell us about your rent Rent Amount ? \ud83d\udca1 Enter only numbers (no commas) Payment Period ? Per YearPer [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/koshk.net\/en\/calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"KOSHK | Making Further Possible\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/gokoshk\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-21T10:20:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/koshk.net\/wp-content\/uploads\/2025\/09\/Beige-Brown-Modern-Aesthetic-Elegant-Interior-Design-Facebook-Cover-1024x577.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"577\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/koshk.net\\\/calculator\\\/\",\"url\":\"https:\\\/\\\/koshk.net\\\/calculator\\\/\",\"name\":\"Calculator - KOSHK | Making Further Possible\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/koshk.net\\\/#website\"},\"datePublished\":\"2025-12-21T10:05:18+00:00\",\"dateModified\":\"2025-12-21T10:20:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/koshk.net\\\/calculator\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/koshk.net\\\/calculator\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/koshk.net\\\/calculator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/koshk.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/koshk.net\\\/#website\",\"url\":\"https:\\\/\\\/koshk.net\\\/\",\"name\":\"KOSHK | Making Further Possible\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/koshk.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/koshk.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/koshk.net\\\/#organization\",\"name\":\"KOSHK | Making Further Possible\",\"url\":\"https:\\\/\\\/koshk.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/koshk.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"http:\\\/\\\/koshk.net\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Koshk-logo-2-300x300-1.jpg\",\"contentUrl\":\"http:\\\/\\\/koshk.net\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/Koshk-logo-2-300x300-1.jpg\",\"width\":300,\"height\":300,\"caption\":\"KOSHK | Making Further Possible\"},\"image\":{\"@id\":\"https:\\\/\\\/koshk.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/gokoshk\\\/\",\"https:\\\/\\\/www.instagram.com\\\/gokoshk\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->",
    "yoast_head_json": {
        "title": "Calculator - KOSHK | Making Further Possible",
        "robots": {
            "index": "index",
            "follow": "follow",
            "max-snippet": "max-snippet:-1",
            "max-image-preview": "max-image-preview:large",
            "max-video-preview": "max-video-preview:-1"
        },
        "canonical": "https:\/\/koshk.net\/en\/calculator\/",
        "og_locale": "en_US",
        "og_type": "article",
        "og_title": "Calculator - KOSHK | Making Further Possible",
        "og_description": "KOSHK Space Pricing Calculator K KOSHK Space Pricing Calculator Calculate your space rental pricing in 3 easy steps \u2022 Get instant, accurate pricing guidance 1 Your Rent 2 Space Size 3 Get Results \ud83d\udcb0 Step 1: Tell us about your rent Rent Amount ? \ud83d\udca1 Enter only numbers (no commas) Payment Period ? Per YearPer [&hellip;]",
        "og_url": "https:\/\/koshk.net\/en\/calculator\/",
        "og_site_name": "KOSHK | Making Further Possible",
        "article_publisher": "https:\/\/www.facebook.com\/gokoshk\/",
        "article_modified_time": "2025-12-21T10:20:49+00:00",
        "og_image": [
            {
                "width": 1024,
                "height": 577,
                "url": "https:\/\/koshk.net\/wp-content\/uploads\/2025\/09\/Beige-Brown-Modern-Aesthetic-Elegant-Interior-Design-Facebook-Cover-1024x577.png",
                "type": "image\/png"
            }
        ],
        "twitter_card": "summary_large_image",
        "twitter_misc": {
            "Est. reading time": "3 minutes"
        },
        "schema": {
            "@context": "https:\/\/schema.org",
            "@graph": [
                {
                    "@type": "WebPage",
                    "@id": "https:\/\/koshk.net\/calculator\/",
                    "url": "https:\/\/koshk.net\/calculator\/",
                    "name": "Calculator - KOSHK | Making Further Possible",
                    "isPartOf": {
                        "@id": "https:\/\/koshk.net\/#website"
                    },
                    "datePublished": "2025-12-21T10:05:18+00:00",
                    "dateModified": "2025-12-21T10:20:49+00:00",
                    "breadcrumb": {
                        "@id": "https:\/\/koshk.net\/calculator\/#breadcrumb"
                    },
                    "inLanguage": "en-US",
                    "potentialAction": [
                        {
                            "@type": "ReadAction",
                            "target": [
                                "https:\/\/koshk.net\/calculator\/"
                            ]
                        }
                    ]
                },
                {
                    "@type": "BreadcrumbList",
                    "@id": "https:\/\/koshk.net\/calculator\/#breadcrumb",
                    "itemListElement": [
                        {
                            "@type": "ListItem",
                            "position": 1,
                            "name": "Home",
                            "item": "https:\/\/koshk.net\/"
                        },
                        {
                            "@type": "ListItem",
                            "position": 2,
                            "name": "Calculator"
                        }
                    ]
                },
                {
                    "@type": "WebSite",
                    "@id": "https:\/\/koshk.net\/#website",
                    "url": "https:\/\/koshk.net\/",
                    "name": "KOSHK | Making Further Possible",
                    "description": "",
                    "publisher": {
                        "@id": "https:\/\/koshk.net\/#organization"
                    },
                    "potentialAction": [
                        {
                            "@type": "SearchAction",
                            "target": {
                                "@type": "EntryPoint",
                                "urlTemplate": "https:\/\/koshk.net\/?s={search_term_string}"
                            },
                            "query-input": {
                                "@type": "PropertyValueSpecification",
                                "valueRequired": true,
                                "valueName": "search_term_string"
                            }
                        }
                    ],
                    "inLanguage": "en-US"
                },
                {
                    "@type": "Organization",
                    "@id": "https:\/\/koshk.net\/#organization",
                    "name": "KOSHK | Making Further Possible",
                    "url": "https:\/\/koshk.net\/",
                    "logo": {
                        "@type": "ImageObject",
                        "inLanguage": "en-US",
                        "@id": "https:\/\/koshk.net\/#\/schema\/logo\/image\/",
                        "url": "http:\/\/koshk.net\/wp-content\/uploads\/2025\/07\/Koshk-logo-2-300x300-1.jpg",
                        "contentUrl": "http:\/\/koshk.net\/wp-content\/uploads\/2025\/07\/Koshk-logo-2-300x300-1.jpg",
                        "width": 300,
                        "height": 300,
                        "caption": "KOSHK | Making Further Possible"
                    },
                    "image": {
                        "@id": "https:\/\/koshk.net\/#\/schema\/logo\/image\/"
                    },
                    "sameAs": [
                        "https:\/\/www.facebook.com\/gokoshk\/",
                        "https:\/\/www.instagram.com\/gokoshk"
                    ]
                }
            ]
        }
    },
    "_links": {
        "self": [
            {
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/pages\/2994",
                "targetHints": {
                    "allow": [
                        "GET"
                    ]
                }
            }
        ],
        "collection": [
            {
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/pages"
            }
        ],
        "about": [
            {
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/types\/page"
            }
        ],
        "author": [
            {
                "embeddable": true,
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/users\/1"
            }
        ],
        "replies": [
            {
                "embeddable": true,
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/comments?post=2994"
            }
        ],
        "version-history": [
            {
                "count": 4,
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/pages\/2994\/revisions"
            }
        ],
        "predecessor-version": [
            {
                "id": 2999,
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/pages\/2994\/revisions\/2999"
            }
        ],
        "wp:attachment": [
            {
                "href": "https:\/\/koshk.net\/en\/wp-json\/wp\/v2\/media?parent=2994"
            }
        ],
        "curies": [
            {
                "name": "wp",
                "href": "https:\/\/api.w.org\/{rel}",
                "templated": true
            }
        ]
    }
}