 #postpropertyheading{
    text-align: center;
    margin-bottom: 24px;
    h1{
        
font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 36px;
leading-trim: NONE;
line-height: 40px;
letter-spacing: 0%;
text-align: center;
color: #1A1A1A  ;
    }
    p{
        font-family: DM Sans;
font-weight: 500;
font-style: Medium;
font-size: 18px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #4A4A4A;
    }
 }
.page {
    max-width: 1100px;
    margin: auto;
    padding: 24px;
     
}

/* Steps */
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
     
}

.step {
    padding: 8px 14px;
    border-radius: 8px;
    background: #222;
    color: #fff;
    font-size: 14px;
}

.step.active {
    background: #c8a648;
    color: #000;
}

/* Card */
.card {
    background:   #FFFFFF;
     
    margin-bottom: 24px;
    border: 1px solid #EDEDED;
 
opacity: 1;
padding: 32px;
border-radius: 24px;
border-width: 1px;

}
h3{
    font-family: Josefin Sans;
font-weight: 700;
font-style: Bold;
font-size: 24px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: #1A1A1A;
}
.subheadingpostproperty{
    font-family: DM Sans;
font-weight: 700;
font-style: Bold;
font-size: 14px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: #1A1A1A;
}
.postpropertywrap{
   display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.card-header-postproperty {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.status {
    font-size: 12px;
    outline: none;
    border: none;
    background-color: transparent;
}

.postpropertyinnercontent{
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* Grid */
.grid {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Inputs */
input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* Chips */
.option-group,
.amenities {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.chip {
     
    background-color: #FFFFFF;
        border: 1px solid #DCDCDC;  
    cursor: pointer;
    font-size: 13px;
padding-top: 8px;
padding-right: 16px;
padding-bottom: 8px;
padding-left: 16px;
gap: 10px;
border-radius: 24px;
border-width: 1px;
font-family: DM Sans;
font-weight: 500;
font-style: Medium;
font-size: 12px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: #1A1A1A99;

}

.chip.active {
    background: #c8a648;
    border-color: #c8a648;
}

/* Upload */
.upload-box {
    border: 2px dashed #ddd;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 14px;
    font-size: 14px;
}

/* Map */
.map iframe {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    border: none;
}

/* Publish */
.publish-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: #c8a648;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}
.postpropertyproperbedbath{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
/* ===================== */
/* RESPONSIVE */
/* ===================== */
.price-visible{
    display: flex;
    gap: 20px;
    align-items: start;
    justify-content: start;
}
.price-vis-items{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
     

}

.price-visible {
    display: flex;
    gap: 20px;
    align-items: center;
}

.price-vis-items {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.price-vis-items input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}
@media (max-width: 600px) {
    .price-visible {
        flex-direction: column;
        align-items: flex-start;
    }
}
.upload-section {
    margin-bottom: 24px;
}

.drop-zone {
    position: relative;
    border: 2px dashed #C8A648;
    border-radius: 10px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    transition: 0.3s ease;
}

.drop-zone:hover {
    background: #fffbe8;
}

.drop-zone.dragover {
    background: #fff3c4;
    border-color: #b8962e;
}

.drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.drop-zone p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

.drop-zone span {
    color: #C8A648;
    font-weight: 600;
}

/* Laptop */
@media (max-width: 1200px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .page {
        padding: 16px;
    }

    .steps {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .card {
        padding: 18px;
    }

    .map iframe {
        height: 220px;
    }
}
