@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f5ef;
    overflow-x:hidden;
}

/* ================= NAVBAR ================= */

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:25px 7%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(15px);

    z-index:999;

}

.logo{
    width:120px;
}

.navbar ul{

    list-style:none;

    display:flex;

    gap:45px;

}

.navbar a{

    text-decoration:none;

    color:#3d3d3d;

    font-weight:500;

}

.book-btn{

    background:#5f6f45;

    color:white;

    border:none;

    padding:12px 28px;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;

}

.book-btn:hover{

    background:#8b6728;

}

/* ================= HERO ================= */

.hero{

    width:100%;

    min-height:100vh;
    height:100vh;

    background-image:url("../assets/images/hero.jpg");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:background-size .2s linear;

}

/* Dummy Section */

.dummy{

    height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#f7f2ea;

}

.dummy h2{

    font-size:40px;

    color:#8b6728;

    font-family:'Cormorant Garamond',serif;

}

/* ================= SECTION TITLE ================= */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:48px;

    color:#8b6728;

    font-family:'Cormorant Garamond',serif;

}

.section-title p{

    margin-top:10px;

    color:#666;

}

/* ================= SERVICES ================= */

.services{

    padding:120px 10%;

    background:#f8f5ef;

}

.service-list{

    margin-top:60px;

}

.service-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:30px 10px;

    border-bottom:1px solid #d8cfbf;

    text-decoration:none;

    color:#333;

    transition:.35s;

}

.service-item:hover{

    padding-left:25px;

    background:#f5efe5;

}

.service-item h3{

    font-size:30px;

    color:#7d5c28;

    margin-bottom:8px;

    font-family:'Cormorant Garamond',serif;

}

.service-item p{

    color:#666;

}

/* ================= SERVICE STATUS / ARROW ================= */

.service-item > span {
    font-size: 24px;
    color: #4b5b35;
    transition: .3s;
    flex-shrink: 0;
}

/* Normal service arrow */
.service-item:not(.service-coming-soon) > span {
    font-size: 24px;
}

/* Hover only moves the arrow */
.service-item:not(.service-coming-soon):hover > span {
    transform: translateX(8px);
}

/* ================= PILATES - COMING SOON ================= */

.service-coming-soon {
    cursor: default;
    opacity: 0.75;
}

.service-coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    border-color: #eee;
}

/* Coming Soon text */
.coming-soon-label {
    font-size: 14px !important;
    color: #8b6728 !important;
    font-weight: 600;
    white-space: nowrap;
    transition: none !important;
    transform: none !important;
}

/* ================= CONTACT ================= */

.contact{

    padding:100px 8%;

    background:#f2ede4;

}

.contact-box{

    max-width:800px;

    margin:auto;

    display:grid;

    gap:20px;

}

.contact-item{

    background:white;

    padding:22px 30px;

    border-radius:15px;

    font-size:18px;

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

}
/* ================= WHY CHOOSE US ================= */

.why-us{

    padding:120px 8%;

    background:#f8f5ef;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:35px;

    margin-top:70px;

}

.why-card{

    background:white;

    padding:45px 35px;

    border-radius:25px;

    text-align:center;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.why-icon{

    font-size:55px;

    margin-bottom:25px;

}

.why-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:#8b6728;

    font-family:'Cormorant Garamond',serif;

}

.why-card p{

    color:#666;

    line-height:30px;

}
/* ================= TRAINER ================= */

.trainer{

    padding:120px 8%;

    background:#fffdf9;

}

.trainer-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.trainer-image img{

    width:100%;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    transition:.4s;

}

.trainer-image img:hover{

    transform:scale(1.03);

}

.trainer-content span{

    color:#8b6728;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.trainer-content h2{

    font-size:58px;

    margin:20px 0;

    color:#5f6f45;

    font-family:'Cormorant Garamond',serif;

}

.trainer-content p{

    color:#666;

    line-height:34px;

    margin-bottom:40px;

}

.trainer-stats{

    display:flex;

    gap:30px;

    margin-bottom:45px;

    flex-wrap:wrap;

}

.stat{

    background:#f8f5ef;

    padding:25px;

    border-radius:18px;

    min-width:150px;

    text-align:center;

}

.stat h3{

    font-size:42px;

    color:#8b6728;

    font-family:'Cormorant Garamond',serif;

}

.stat p{

    margin-top:8px;

    color:#555;

    line-height:24px;

}

.trainer-btn{

    display:inline-block;

    padding:18px 35px;

    border-radius:50px;

    background:linear-gradient(135deg,#8b6728,#5f6f45);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    box-shadow:0 12px 30px rgba(95,111,69,.35);

}

.trainer-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(95,111,69,.45);

}
/* ================= TESTIMONIALS ================= */

.testimonials{

    padding:120px 8%;

    background:#f8f5ef;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:70px;

}

.testimonial-card{

    background:white;

    padding:40px;

    border-radius:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.stars{

    font-size:24px;

    color:#d4a017;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#555;

    line-height:32px;

    font-style:italic;

    margin-bottom:25px;

}

.testimonial-card h4{

    color:#8b6728;

    font-weight:600;
   
}
/* ================= FOOTER ================= */

.footer{

    background:#3f4a31;

    color:#f8f5ef;

    padding:80px 8% 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer h2{

    font-family:'Cormorant Garamond',serif;

    font-size:40px;

    color:#d8c7a0;

    margin-bottom:20px;

}

.footer h3{

    margin-bottom:20px;

    color:#d8c7a0;

}

.footer p{

    line-height:30px;

    color:#ddd;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#d8c7a0;

    padding-left:6px;

}

.footer-bottom{

    text-align:center;

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:50px;

    padding-top:25px;

    color:#ccc;

    font-size:14px;

}

.services{
    padding:100px 8%;
    background:#fdfaf5;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.6rem;
    color:#4b5b35;
    margin-bottom:12px;
}

.section-title p{
    color:#777;
    font-size:1.05rem;
}

.service-list{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:25px;
}

.service-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    background:#fff;
    padding:25px 30px;
    border-radius:18px;
    border:1px solid #eee;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.service-item:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.12);
    border-color:#b6a26d;
}

.service-item h3{
    display:flex;
    align-items:center;
    gap:14px;
    margin:0 0 10px;
}

.service-item p{
    color:#666;
    font-size:.96rem;
}

.service-small-icon{
    width:48px;
    height:48px;
    background:#eef3e7;
    color:#4b5b35;
    border-radius:50%;

    display:grid;
    place-items:center;

    font-size:18px;

    margin-right:12px;

    flex-shrink:0;
}

.service-small-icon::before{
    display:block;
}

.service-item:hover .service-small-icon{
    background:#4b5b35;
    color:#fff;
    transform:rotate(12deg) scale(1.1);
}

.arrow{
    font-size:24px;
    color:#4b5b35;
    transition:.3s;
}

.service-item:hover .arrow{
    transform:translateX(8px);
}
/* ================= PILATES - COMING SOON ================= */

.coming-soon {
    cursor: default;
    opacity: 0.75;
}

.coming-soon:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,.05);
    border-color: #eee;
}

.coming-soon-text {
    font-size: 14px;
    color: #8b6728;
    font-weight: 600;
    white-space: nowrap;
}
/* ================= BOOK YOUR CLASS ================= */

.book-class {
    padding: 120px 8%;
    background: #fffdf9;
}

.plan-container {
    max-width: 1000px;
    margin: 60px auto 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 35px;
}

.plan-card {
    background: #ffffff;

    padding: 45px 40px;

    border-radius: 25px;

    text-decoration: none;
    color: inherit;

    border: 1px solid #eee;

    box-shadow: 0 15px 40px rgba(0,0,0,.07);

    display: flex;
    align-items: center;

    gap: 25px;

    transition: .35s;
}

.plan-card:hover {
    transform: translateY(-10px);

    border-color: #b6a26d;

    box-shadow: 0 25px 55px rgba(0,0,0,.12);
}

.plan-icon {
    width: 65px;
    height: 65px;

    min-width: 65px;

    border-radius: 50%;

    background: #eef3e7;

    color: #4b5b35;

    display: grid;
    place-items: center;

    font-size: 25px;

    transition: .35s;
}

.plan-card:hover .plan-icon {
    background: #4b5b35;
    color: #ffffff;

    transform: scale(1.08);
}

.plan-content h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 32px;

    color: #7d5c28;

    margin-bottom: 10px;
}

.plan-content p {
    color: #666;

    line-height: 1.7;

    margin-bottom: 18px;
}

.plan-btn {
    color: #4b5b35;

    font-weight: 600;

    font-size: 15px;
}
/* ================= SPECIAL SESSIONS ================= */

.special-sessions {

    padding:120px 8%;

    background:#f2ede4;

}


.special-session-container {

    max-width:1000px;

    margin:60px auto 0;

}


.special-session-card {

    background:#ffffff;

    border-radius:28px;

    overflow:hidden;

    display:grid;

    grid-template-columns:1fr 1fr;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.4s;

}


.special-session-card:hover {

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.13);

}


/* IMAGE */

.special-session-image {

    position:relative;

    min-height:380px;

}


.special-session-image img {

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}


.special-badge {

    position:absolute;

    top:22px;

    left:22px;

    background:#4b5b35;

    color:#ffffff;

    padding:9px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;

}


/* CONTENT */

.special-session-content {

    padding:50px 45px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}


.special-date {

    color:#8b6728;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:15px;

}


.special-date i {

    margin-right:7px;

}


.special-session-content h3 {

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:#4b5b35;

    margin-bottom:18px;

}


.special-session-content p {

    color:#666;

    line-height:30px;

    margin-bottom:25px;

}


/* DETAILS */

.special-session-details {

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-bottom:30px;

}


.special-session-details div {

    display:flex;

    align-items:center;

    gap:8px;

    color:#555;

    font-size:14px;

}


.special-session-details i {

    color:#8b6728;

}


/* BUTTON */

.special-session-btn {

    display:inline-block;

    align-self:flex-start;

    padding:14px 28px;

    border-radius:50px;

    background:#5f6f45;

    color:#ffffff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}


.special-session-btn:hover {

    background:#8b6728;

    transform:translateY(-3px);

}
/* ================= FOOTER COMING SOON ================= */

.footer-coming-soon span {
    color: #d8c7a0;
    font-size: 12px;
    margin-left: 4px;
    font-weight: 500;
}
.footer-coming-soon {
    color: #777;
    cursor: default;
}

.footer-coming-soon span {
    color: #d8c7a0;
    font-size: 12px;
    margin-left: 4px;
    font-weight: 500;
}
/* ============================================================
   DYNAMIC SERVICE IMAGES
   ============================================================ */

.service-item {
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 16px;
    overflow: hidden;
    background: #eef3e7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image-placeholder {
    font-size: 36px;
    color: #4b5b35;
}

.service-content {
    flex: 1;
    min-width: 0;
    padding: 0 25px;
}

.service-content h3 {
    margin-bottom: 8px;
}

.service-content p {
    margin: 0;
}

.service-arrow {
    font-size: 24px !important;
    color: #4b5b35 !important;
    flex-shrink: 0;
}

.coming-soon-label {
    font-size: 14px !important;
    color: #8b6728 !important;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
/* ============================================================
   INSTRUCTOR ADMIN
   ============================================================ */

.instructor-admin-section {
    margin-bottom: 50px;
}

.instructor-admin-header {
    margin-bottom: 20px;
}

.instructor-admin-header h2 {
    font-family: "Cormorant Garamond", serif;
    color: #596b3d;
    font-size: 34px;
    margin-bottom: 6px;
}

.instructor-admin-header p {
    color: #666;
}

.instructor-admin-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.instructor-admin-card label {
    display: block;
    font-weight: 600;
    color: #596b3d;
    margin-top: 18px;
    margin-bottom: 6px;
}

.instructor-admin-card input[type="text"],
.instructor-admin-card textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.instructor-admin-card textarea {
    min-height: 120px;
    resize: vertical;
}

.instructor-admin-image {
    width: 220px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.instructor-admin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-image-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.instructor-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 800px) {

    .instructor-two-column {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .instructor-admin-image {
        width: 180px;
        height: 180px;
    }

}
/* =====================================================
   SPECIAL SESSIONS ADMIN
===================================================== */

.special-sessions-admin-section {
    margin-bottom: 50px;
}

.special-sessions-admin-header {
    margin-bottom: 20px;
}

.special-sessions-admin-header h2 {
    font-family: "Cormorant Garamond", serif;
    color: #596b3d;
    font-size: 34px;
    margin-bottom: 6px;
}

.special-sessions-admin-header p {
    color: #666;
}

.special-session-admin-form {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.special-session-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 25px;
}

.special-session-form-group {
    display: flex;
    flex-direction: column;
}

.special-session-form-group.full-width {
    grid-column: 1 / -1;
}

.special-session-form-group label {
    font-weight: 600;
    color: #596b3d;
    margin-bottom: 7px;
}

.special-session-form-group input,
.special-session-form-group textarea,
.special-session-form-group select {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.special-session-form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.special-session-form-group input:focus,
.special-session-form-group textarea:focus,
.special-session-form-group select:focus {
    outline: none;
    border-color: #596b3d;
}

.special-session-status-row {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.special-session-status-row label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 500;
}

.special-session-status-row input {
    width: auto;
}

.special-session-admin-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.special-session-save-btn {
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    background: #596b3d;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.special-session-cancel-btn {
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    background: #eee;
    color: #555;
    cursor: pointer;
    font-weight: 600;
}

.special-session-save-btn:disabled,
.special-session-cancel-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.special-sessions-admin-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.special-session-admin-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.special-session-admin-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.special-session-admin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-session-admin-placeholder {
    font-size: 55px;
}

.special-session-admin-card h3 {
    font-family: "Cormorant Garamond", serif;
    color: #596b3d;
    font-size: 28px;
    margin-bottom: 8px;
}

.special-session-admin-card p {
    color: #666;
    margin-bottom: 12px;
}

.special-session-admin-meta {
    display: grid;
    gap: 7px;
    color: #555;
    font-size: 14px;
}

.special-session-admin-card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.special-session-edit-btn {
    border: none;
    border-radius: 25px;
    padding: 10px 18px;
    background: #596b3d;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.special-session-delete-btn {
    border: none;
    border-radius: 25px;
    padding: 10px 18px;
    background: #f5dddd;
    color: #9b3939;
    cursor: pointer;
    font-weight: 600;
}

.special-session-image-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

.special-session-image-actions input[type="file"] {
    flex: 1;
}

@media (max-width: 800px) {

    .special-session-form-grid {
        grid-template-columns: 1fr;
    }

    .special-session-form-group.full-width {
        grid-column: auto;
    }

    .special-sessions-admin-list {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   CUSTOMER REVIEW
========================================= */

.review-card {

    background: white;

    border-radius: 18px;

    padding: 30px;

    margin-top: 30px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

}


.review-card h2 {

    color: #596b3d;

    margin-bottom: 8px;

}


.review-intro {

    color: #666;

    margin-bottom: 25px;

}


.review-form-group {

    margin-bottom: 20px;

}


.review-form-group label {

    display: block;

    font-weight: 600;

    color: #596b3d;

    margin-bottom: 7px;

}


.review-form-group select,
.review-form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 12px;

    border: 1px solid #ddd;

    border-radius: 8px;

    font-family: inherit;

    font-size: 14px;

}


.review-form-group textarea {

    resize: vertical;

}


.review-form-group select:focus,
.review-form-group textarea:focus {

    outline: none;

    border-color: #596b3d;

}


.review-submit-btn {

    border: none;

    border-radius: 25px;

    padding: 12px 25px;

    background: #596b3d;

    color: white;

    cursor: pointer;

    font-weight: 600;

}


.review-submit-btn:disabled {

    opacity: 0.6;

    cursor: not-allowed;

}


.review-status-message {

    margin-top: 15px;

    font-size: 14px;

}
/* ================= CONTACT ACTIONS ================= */

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    width: 100%;
    margin: 20px auto;
}

/* Phone */

.contact-actions .contact-item {
    margin: 0;
    width: auto;
    min-width: 260px;
}

/* WhatsApp */

.whatsapp-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 260px;
    padding: 14px 24px;

    background: #25D366;
    color: #ffffff !important;

    text-decoration: none !important;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;

    border-radius: 30px;

    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);

    transition: all 0.3s ease;
}

.whatsapp-contact-btn i {
    font-size: 18px;
}

.whatsapp-contact-btn:hover {
    transform: translateY(-3px);
    background: #20bd5a;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}


/* Mobile */

@media (max-width: 600px) {

    .contact-actions {
        flex-direction: column;
        gap: 12px;
    }

    .contact-actions .contact-item,
    .whatsapp-contact-btn {
        width: 90%;
        min-width: unset;
    }

}