* {
    box-sizing: border-box;
}

body {
    background: #f7f8fa !important;
}

.gb-page {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 38px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 36px;
    font-family: Arial, sans-serif;
    color: #111827;
}

.gb-sidebar {
    position: sticky;
    top: 24px;
    height: fit-content;
}

.gb-steps,
.gb-preview,
.gb-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}

.gb-steps {
    padding: 26px 22px;
    margin-bottom: 22px;
}

.gb-step {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.gb-step span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #6b7280;
    flex: 0 0 auto;
}

.gb-step.active {
    color: #111827;
}

.gb-step.active span,
.gb-step.done span {
    background: #22b573;
    border-color: #22b573;
    color: #fff;
}

.gb-preview {
    padding: 18px;
}

.gb-preview-img {
    height: 210px;
    border-radius: 14px;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b7b7b7;
    font-size: 48px;
    margin-bottom: 16px;
}

.gb-preview-price {
    color: #18a75d;
    font-weight: 800;
    margin: 0 0 8px;
}

.gb-preview h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.gb-preview-location {
    color: #2563eb;
    margin: 0;
}

.gb-main {
    min-width: 0;
}

.gb-card {
    padding: 34px 38px;
    margin-bottom: 24px;
    scroll-margin-top: 30px;
}

.gb-card h2 {
    margin: 0 0 28px;
    font-size: 22px;
    font-weight: 900;
}

.gb-card h2 b,
.gb-field label b {
    color: #ef4444;
}

.gb-field {
    margin-bottom: 28px;
}

.gb-field label,
.gb-card > label {
    display: block;
    margin-bottom: 13px;
    font-weight: 900;
}

.gb-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gb-pills button,
.gb-tabs button {
    min-height: 45px;
    padding: 0 23px;
    border: 1px solid #d7d7d7;
    background: #fff;
    border-radius: 9px;
    cursor: pointer;
    font-size: 15px;
    transition: .15s;
}

.gb-pills button:hover,
.gb-pills button.active,
.gb-tabs button.active {
    border-color: #22b573;
    color: #18a75d;
    background: #f2fff8;
}

.gb-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.gb-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gb-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

input,
select,
textarea {
    width: 100%;
    height: 56px;
    border: 1px solid #dcdfe5;
    border-radius: 10px;
    padding: 0 16px;
    background: #fff;
    font-size: 15px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #22b573;
    box-shadow: 0 0 0 3px rgba(34, 181, 115, .12);
}

textarea {
    height: 230px;
    padding: 18px;
    resize: vertical;
}

.gb-map {
    height: 190px;
    border-radius: 14px;
    background: #eef2f7;
    border: 1px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 700;
    margin-top: 18px;
}

.gb-check,
.gb-switch {
    display: flex !important;
    align-items: center;
    gap: 12px;
    margin: 14px 0;
    font-weight: 700;
}

.gb-check input {
    width: 22px;
    height: 22px;
    margin: 0;
}

.gb-switch input {
    display: none;
}

.gb-switch span {
    width: 46px;
    height: 26px;
    border-radius: 99px;
    background: #d1d5db;
    position: relative;
    display: inline-block;
}

.gb-switch span:before {
    content: "";
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 3px;
    transition: .2s;
}

.gb-switch input:checked + span {
    background: #22b573;
}

.gb-switch input:checked + span:before {
    left: 23px;
}

.gb-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr 110px;
    border: 1px solid #dcdfe5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
}

.gb-price-row input,
.gb-price-row select {
    border: 0;
    border-radius: 0;
    border-right: 1px solid #edf0f4;
}

.gb-price-row select {
    border-right: 0;
}

details {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
}

summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 900;
    background: #f8fafc;
}

.gb-feature-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gb-feature-grid label {
    border: 1px solid #dcdfe5;
    border-radius: 9px;
    padding: 12px 14px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}

.gb-feature-grid input {
    width: 18px;
    height: 18px;
}

.gb-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.gb-tabs button {
    min-height: 36px;
    padding: 0 14px;
    background: #f3f4f6;
    border-color: transparent;
}

.gb-counter {
    text-align: right;
    color: #6b7280;
    margin-top: -34px;
    padding-right: 18px;
}

.gb-upload {
    height: 220px;
    border: 2px dashed #22b573;
    border-radius: 16px;
    background: #fbfffd;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
}

.gb-upload input {
    display: none;
}

.gb-upload span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #22b573;
    color: #fff;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gb-upload strong {
    font-size: 16px;
}

.gb-upload small {
    color: #6b7280;
}

.gb-vip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.gb-vip-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    background: #fff;
    min-height: 175px;
    transition: .15s;
}

.gb-vip-card:hover {
    border-color: #22b573;
    box-shadow: 0 12px 30px rgba(34,181,115,.08);
}

.gb-vip-card input {
    width: 18px;
    height: 18px;
    margin-bottom: 12px;
}

.gb-vip-card strong {
    display: block;
    font-size: 19px;
    margin-bottom: 8px;
}

.gb-vip-card p {
    color: #6b7280;
    min-height: 45px;
}

.gb-vip-card b {
    color: #111827;
}

.gb-submit-row {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 28px;
}

.gb-draft,
.gb-submit {
    border: 0;
    border-radius: 10px;
    height: 54px;
    padding: 0 30px;
    font-weight: 900;
    cursor: pointer;
}

.gb-draft {
    background: #f3f4f6;
    color: #111827;
}

.gb-submit {
    background: #22b573;
    color: #fff;
}

.gb-submit:hover {
    background: #16a463;
}

@media (max-width: 1100px) {
    .gb-page {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .gb-sidebar {
        position: static;
    }

    .gb-grid-3,
    .gb-grid-4,
    .gb-price-row,
    .gb-vip-grid,
    .gb-feature-grid {
        grid-template-columns: 1fr;
    }
}
.gb-upload.dragging {
    background: #f0fff7;
    border-color: #16a463;
}

.gb-upload-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.gb-upload-item {
    position: relative;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
}

.gb-upload-item img,
.gb-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-upload-item button {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.65);
    color: #fff;
    cursor: pointer;
}

.gb-upload-item small {
    position: absolute;
    left: 7px;
    bottom: 7px;
    background: #22b573;
    color: #fff;
    border-radius: 7px;
    padding: 4px 7px;
    font-size: 11px;
}

@media (max-width: 1100px) {
    .gb-upload-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}
.gb-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .12) !important;
}

.gb-error-message {
    color: #ef4444;
    font-size: 13px;
    font-weight: 700;
    margin: -8px 0 12px;
}
.gb-vip-card.active {
    border-color: #22b573;
    background: #f2fff8;
    box-shadow: 0 12px 30px rgba(34,181,115,.1);
}

.gb-vip-total {
    margin-top: 24px;
    border: 1px solid #bbf7d0;
    background: #f0fdf4;
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gb-vip-total strong {
    font-size: 18px;
}

.gb-vip-total p {
    margin: 6px 0 0;
    color: #6b7280;
}

.gb-vip-total b {
    font-size: 24px;
    color: #16a463;
}
.gb-progress-box{

margin-bottom:25px;

}

.gb-progress-title{

display:flex;

justify-content:space-between;

font-weight:700;

margin-bottom:10px;

}

.gb-progress-bar{

height:8px;

background:#e5e7eb;

border-radius:30px;

overflow:hidden;

}

.gb-progress-fill{

height:100%;

width:0;

background:#22b573;

transition:.3s;

}
.gb-section-subtitle {
    margin: -18px 0 26px;
    color: #6b7280;
    font-weight: 600;
}

.gb-vip-section .gb-vip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gb-vip-card {
    position: relative;
    min-height: 330px;
    padding: 26px 22px;
    text-align: center;
    border-radius: 18px;
    overflow: hidden;
}

.gb-vip-card input {
    position: absolute;
    right: 18px;
    bottom: 18px;
}

.gb-vip-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.gb-vip-card strong {
    font-size: 22px;
}

.gb-vip-card p {
    min-height: auto;
    margin: 8px 0 18px;
}

.gb-vip-card ul {
    text-align: left;
    list-style: none;
    padding: 16px;
    margin: 0 0 24px;
    background: rgba(255,255,255,.65);
    border-radius: 12px;
}

.gb-vip-card li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
}

.gb-vip-card li:before {
    content: "✓";
    color: #22b573;
    font-weight: 900;
    margin-right: 8px;
}

.gb-vip-standard {
    background: linear-gradient(180deg, #f0fff7, #ffffff);
    border-color: #22b573;
}

.gb-vip-standard .gb-vip-icon {
    background: #dcfce7;
    color: #16a463;
}

.gb-vip-blue {
    background: linear-gradient(180deg, #eff6ff, #ffffff);
    border-color: #bfdbfe;
}

.gb-vip-blue .gb-vip-icon {
    background: #dbeafe;
    color: #2563eb;
}

.gb-vip-gold {
    background: linear-gradient(180deg, #fffbeb, #ffffff);
    border-color: #facc15;
}

.gb-vip-gold .gb-vip-icon {
    background: #fef3c7;
    color: #d97706;
}

.gb-vip-purple {
    background: linear-gradient(180deg, #f5f3ff, #ffffff);
    border-color: #c4b5fd;
}

.gb-vip-purple .gb-vip-icon {
    background: #ede9fe;
    color: #7c3aed;
}

.gb-addon-title {
    margin-top: 34px;
}

.gb-addon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.gb-addon-card {
    border: 1px solid #dbeafe;
    border-radius: 16px;
    padding: 18px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.gb-addon-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gb-addon-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
}

.gb-addon-icon.facebook {
    background: #1877f2;
}

.gb-addon-icon.refresh {
    background: #2ea8ff;
}

.gb-addon-card p {
    margin: 5px 0;
    color: #6b7280;
}

.gb-addon-card b {
    color: #16a463;
}

.gb-addon-card input {
    width: 42px;
    height: 24px;
}

.gb-messenger-row {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.gb-messenger {
    display: flex !important;
    align-items: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 18px;
    cursor: pointer;
    min-width: 170px;
    transition: .15s;
}

.gb-messenger input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.gb-messenger span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.gb-messenger.whatsapp span {
    background: #25d366;
}

.gb-messenger.viber span {
    background: #7360f2;
}

.gb-messenger:has(input:checked) {
    border-color: #22b573;
    background: #f0fff7;
}

@media (max-width: 1100px) {
    .gb-vip-section .gb-vip-grid,
    .gb-addon-grid {
        grid-template-columns: 1fr;
    }

    .gb-messenger-row {
        flex-direction: column;
    }
}
.gb-toolbar {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 170px 170px 170px 130px 110px;
    gap: 12px;
    margin-bottom: 18px;
    align-items: center;
}

.gb-toolbar-search {
    position: relative;
}

.gb-toolbar-search span {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 24px;
    z-index: 1;
}

.gb-toolbar-search input {
    padding-left: 48px;
}

.gb-toolbar select,
.gb-toolbar input,
.gb-toolbar button {
    height: 56px;
    border-radius: 9px;
    font-weight: 700;
}

.gb-toolbar-preview {
    background: #fff;
    color: #285f9f;
    border: 1px solid #285f9f;
    cursor: pointer;
}

.gb-toolbar-save {
    background: #fff;
    color: #9ca3af;
    border: 1px solid #dcdfe5;
    cursor: pointer;
}

.gb-toolbar-submit {
    background: #285f9f;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.gb-toolbar-preview:hover,
.gb-toolbar-save:hover {
    background: #f8fafc;
}

.gb-toolbar-submit:hover {
    background: #1f4f86;
}

@media (max-width: 1100px) {
    .gb-toolbar {
        grid-template-columns: 1fr;
    }
}
.gb-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.gb-modal.show {
    display: block;
}

.gb-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
}

.gb-modal-content {
    position: relative;
    width: min(760px, calc(100% - 32px));
    margin: 60px auto;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.gb-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.gb-modal-image {
    height: 360px;
    background: #eef2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 58px;
}

.gb-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-modal-body {
    padding: 26px 30px 32px;
}

.gb-modal-price {
    color: #16a463;
    font-size: 22px;
    font-weight: 900;
    margin: 0 0 8px;
}

.gb-modal-title {
    margin: 0 0 10px;
}

.gb-modal-location {
    color: #2563eb;
    font-weight: 700;
}

.gb-modal-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.gb-modal-info span {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
}

.gb-modal-desc {
    color: #4b5563;
    line-height: 1.7;
}
.gb-toast-wrap {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gb-toast {
    min-width: 260px;
    background: #fff;
    border: 1px solid #dcfce7;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(15,23,42,.14);
    transform: translateX(120%);
    opacity: 0;
    transition: .25s;
}

.gb-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.gb-toast span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #22b573;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.gb-toast.error {
    border-color: #fecaca;
}

.gb-toast.error span {
    background: #ef4444;
}
/* =======================
BOTTOM ACTION BAR
======================= */

.gb-bottom-bar{

position:fixed;

left:0;

right:0;

bottom:0;

height:82px;

background:#ffffffee;

backdrop-filter:blur(14px);

border-top:1px solid #e5e7eb;

display:flex;

align-items:center;

justify-content:space-between;

padding:0 38px;

z-index:9999;

box-shadow:0 -8px 25px rgba(0,0,0,.05);

}

.gb-bottom-left{

display:flex;

align-items:center;

gap:18px;

}

.gb-bottom-progress{

display:flex;

flex-direction:column;

}

.gb-bottom-progress span{

font-size:13px;

color:#6b7280;

}

.gb-bottom-progress strong{

font-size:24px;

font-weight:900;

color:#22b573;

}

.gb-bottom-right{

display:flex;

gap:14px;

}

.gb-bottom-btn{

height:52px;

padding:0 28px;

border-radius:10px;

font-weight:800;

cursor:pointer;

transition:.2s;

font-size:15px;

}

.gb-bottom-btn.secondary{

background:#fff;

border:1px solid #d1d5db;

}

.gb-bottom-btn.secondary:hover{

background:#f9fafb;

}

.gb-bottom-btn.preview{

background:#285f9f;

border:0;

color:#fff;

}

.gb-bottom-btn.preview:hover{

background:#1d4d84;

}

.gb-bottom-btn.publish{

background:#22b573;

border:0;

color:#fff;

}

.gb-bottom-btn.publish:hover{

background:#16965d;

}

body{

padding-bottom:100px;

}

@media(max-width:900px){

.gb-bottom-bar{

flex-direction:column;

height:auto;

padding:15px;

gap:15px;

}

.gb-bottom-right{

width:100%;

}

.gb-bottom-btn{

flex:1;

}

}
.gb-preview-pro {
    overflow: hidden;
    padding: 0;
}

.gb-preview-pro .gb-preview-img {
    position: relative;
    height: 220px;
    margin: 0;
    border-radius: 18px 18px 0 0;
}

.gb-preview-pro .gb-preview-img em {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #111827;
    color: #fff;
    font-style: normal;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
}

.gb-preview-content {
    padding: 18px;
}

.gb-preview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0;
}

.gb-preview-stats span {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 9px;
    font-size: 13px;
    font-weight: 700;
}

.gb-preview-contact {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.gb-preview-contact span {
    flex: 1;
    text-align: center;
    border-radius: 9px;
    padding: 8px 6px;
    font-size: 12px;
    font-weight: 900;
    color: #9ca3af;
    background: #f3f4f6;
}

.gb-preview-contact span.active.whatsapp {
    background: #dcfce7;
    color: #16a34a;
}

.gb-preview-contact span.active.viber {
    background: #ede9fe;
    color: #6d28d9;
}

.gb-preview-id {
    display: block;
    color: #9ca3af;
    font-weight: 800;
}
.gb-upload-counter {
    margin: -6px 0 14px;
    color: #6b7280;
    font-weight: 800;
}

.gb-upload-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.gb-upload-item {
    position: relative;
    height: 155px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    background: #f3f4f6;
}

.gb-upload-item.main {
    border-color: #22b573;
}

.gb-upload-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-upload-actions {
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: .15s;
}

.gb-upload-item:hover .gb-upload-actions {
    opacity: 1;
}

.gb-upload-actions button {
    border: 0;
    border-radius: 7px;
    background: rgba(17,24,39,.78);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    padding: 6px 7px;
    cursor: pointer;
}

.gb-upload-actions button[data-action="delete"] {
    margin-left: auto;
    background: rgba(239,68,68,.9);
}

.gb-upload-item small {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background: #22b573;
    color: #fff;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 11px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .gb-upload-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}
.gb-location-search {
    display: grid;
    grid-template-columns: 50px 1fr 130px;
    border: 1px solid #dcdfe5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
}

.gb-location-search span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 25px;
}

.gb-location-search input {
    border: 0;
    border-radius: 0;
}

.gb-location-search button {
    border: 0;
    background: #285f9f;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.gb-location-search button:hover {
    background: #1f4f86;
}

.gb-map-ui {
    margin-top: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.gb-map-top {
    height: 58px;
    padding: 0 18px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gb-map-top button {
    height: 38px;
    border: 0;
    border-radius: 9px;
    padding: 0 14px;
    background: #f0fff7;
    color: #16a463;
    font-weight: 900;
    cursor: pointer;
}

.gb-map-canvas {
    height: 300px;
    background:
        linear-gradient(90deg, rgba(203,213,225,.55) 1px, transparent 1px),
        linear-gradient(rgba(203,213,225,.55) 1px, transparent 1px),
        #eef2f7;
    background-size: 42px 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 900;
    position: relative;
}

.gb-map-pin {
    position: absolute;
    font-size: 42px;
    transform: translateY(-18px);
}

.gb-map-canvas span {
    margin-top: 70px;
}

.gb-map-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 16px;
    background: #f8fafc;
}

@media (max-width: 900px) {
    .gb-location-search,
    .gb-map-fields {
        grid-template-columns: 1fr;
    }

    .gb-location-search span {
        display: none;
    }
}
/* =======================
FINAL RESPONSIVE POLISH
======================= */

@media (max-width: 1200px) {
    .gb-page {
        grid-template-columns: 290px minmax(0, 1fr);
        gap: 24px;
        padding: 24px;
    }

    .gb-card {
        padding: 28px;
    }

    .gb-vip-section .gb-vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .gb-page {
        display: block;
        padding: 14px;
    }

    .gb-sidebar {
        position: static;
        margin-bottom: 18px;
    }

    .gb-steps {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        padding: 14px;
        border-radius: 14px;
    }

    .gb-step {
        min-width: 180px;
        white-space: nowrap;
    }

    .gb-preview {
        display: none;
    }

    .gb-toolbar {
        grid-template-columns: 1fr;
        position: sticky;
        top: 0;
        z-index: 50;
        background: #f7f8fa;
        padding: 10px 0;
    }

    .gb-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .gb-card h2 {
        font-size: 20px;
    }

    .gb-pills button {
        width: 100%;
        justify-content: center;
    }

    .gb-grid,
    .gb-grid-3,
    .gb-grid-4,
    .gb-price-row,
    .gb-vip-grid,
    .gb-addon-grid,
    .gb-feature-grid {
        grid-template-columns: 1fr !important;
    }

    .gb-bottom-bar {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 16px;
    }

    .gb-bottom-right {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .gb-bottom-btn {
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 520px) {
    .gb-bottom-right {
        grid-template-columns: 1fr;
    }

    .gb-modal-content {
        margin: 20px auto;
    }

    .gb-modal-image {
        height: 240px;
    }
}

/* =======================
SUCCESS UI PRO
======================= */

.gb-success-page {
    min-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #f7f8fa;
}

.gb-success-card {
    width: min(680px, 100%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    padding: 46px 38px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(15,23,42,.10);
}

.gb-success-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22b573, #16a463);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 900;
    margin: 0 auto 24px;
    box-shadow: 0 14px 35px rgba(34,181,115,.35);
}

.gb-success-card h1 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 900;
}

.gb-success-card p {
    color: #6b7280;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 24px;
}

.gb-success-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0fff7;
    color: #16a463;
    border: 1px solid #bbf7d0;
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 900;
    margin-bottom: 30px;
}

.gb-success-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gb-success-buttons a {
    height: 50px;
    padding: 0 20px;
    border-radius: 11px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: .15s;
}

.gb-success-buttons a.primary {
    background: #285f9f;
    color: #fff;
}

.gb-success-buttons a.green {
    background: #22b573;
    color: #fff;
}

.gb-success-buttons a.gray {
    background: #f3f4f6;
    color: #111827;
}

.gb-success-buttons a:hover {
    transform: translateY(-1px);
    opacity: .92;
}

@media (max-width: 600px) {
    .gb-success-card {
        padding: 34px 22px;
    }

    .gb-success-buttons {
        flex-direction: column;
    }

    .gb-success-buttons a {
        width: 100%;
    }
}

.gb-existing-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.gb-existing-item {
  position: relative;
  height: 95px;
  border-radius: 14px;
  overflow: hidden;
  cursor: grab;
  border: 2px solid transparent;
  background: #f3f4f6;
}

.gb-existing-item.main {
  border-color: #2563eb;
}

.gb-existing-item.main::after {
  content: "მთავარი";
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 999px;
}

.gb-existing-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-remove-existing {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.65);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
}

.gb-existing-item.dragging {
  opacity: .45;
}

#genie-map {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f7;
}

.gb-map-canvas {
  min-height: 360px;
}

.gb-location-search {
  position: relative;
}

#gb-address-results {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
  overflow: hidden;
  z-index: 9999;
}

#gb-address-results.active {
  display: block;
}

.gb-address-result {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
}

.gb-address-result:hover {
  background: #f8fafc;
}

.gb-address-empty {
  padding: 14px;
  color: #64748b;
}

#gb-address-results {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15,23,42,.15);
  overflow: hidden;
  z-index: 99999;
}

#gb-address-results.active {
  display: block;
}

.gb-address-result {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eee;
  text-align: left;
  cursor: pointer;
}

.gb-address-result:hover {
  background: #f3f4f6;
}

.gb-address-empty {
  padding: 14px;
  color: #64748b;
}

.gb-location-search {
  position: relative !important;
  overflow: visible !important;
  z-index: 99999 !important;
}

#gb-address-results {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background: #fff !important;
  border: 1px solid #dbe3ef !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.18) !important;
  z-index: 999999 !important;
  max-height: 320px !important;
  overflow-y: auto !important;
}

#gb-address-results.active {
  display: block !important;
}

.gb-address-result {
  display: block !important;
  width: 100% !important;
  padding: 13px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid #eef2f7 !important;
  background: #fff !important;
  color: #111827 !important;
  text-align: left !important;
  font-size: 14px !important;
  cursor: pointer !important;
}

.gb-address-result:hover {
  background: #f1f5f9 !important;
}

.gb-address-empty {
  padding: 14px !important;
  color: #64748b !important;
}

.gb-card,
.gb-main,
.gb-page,
#gb-location {
  overflow: visible !important;
}

.gb-select-wrap {
  position: relative;
}

.gb-select-wrap input {
  width: 100%;
  padding-right: 45px;
}

.gb-select-toggle {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}

.gb-select-results {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
  max-height: 330px;
  overflow-y: auto;
  z-index: 999999;
}

.gb-select-results.active {
  display: block;
}

.gb-select-option {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  background: #fff;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
}

.gb-select-option:hover {
  background: #f1f5f9;
}

.gb-street-option strong {
  display: block;
  font-weight: 800;
  color: #111827;
}

.gb-street-option small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 12px;
}

.gb-select-wrap {
  position: relative !important;
}

.gb-select-wrap .gb-select-toggle {
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #111827 !important;
  font-size: 16px !important;
  box-shadow: none !important;
  cursor: pointer !important;
}

#gb-city-results,
#gb-street-results {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999999 !important;
  background: #fff !important;
}
/* GenieHome submit cleanup */
.gb-toolbar,.gb-bottom-bar{display:none!important}.gb-submit-top-actions{display:flex;justify-content:flex-end;gap:14px;margin:0 0 24px}.gh-btn{height:54px;padding:0 28px;border:0;border-radius:14px;font-weight:950;cursor:pointer}.gh-btn-light{background:#fff;border:1px solid #dbe3ef;color:#0f172a}.gh-btn-blue{background:#2563eb;color:#fff}.gh-btn-green{background:#16a34a;color:#fff}.gb-location-grid-4{grid-template-columns:repeat(4,minmax(0,1fr))!important}.gb-map-clean{margin-top:22px}.gb-map-canvas,#genie-map{width:100%!important;height:420px!important;border-radius:22px!important;overflow:hidden!important}.gb-cadastre-row{margin-top:22px}.leaflet-container{width:100%!important;height:100%!important}.gb-page{padding-top:24px!important}@media(max-width:1100px){.gb-location-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))!important}}@media(max-width:650px){.gb-location-grid-4{grid-template-columns:1fr!important}.gb-submit-top-actions{flex-direction:column}.gh-btn{width:100%}}
