/* Grid */
textarea.form-control {
    min-height: calc(10em + 0.75rem + var(--bs-border-width) * 2);
}
.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    padding:18px;
}

/* Card */
.category-card{
    background:linear-gradient(145deg,#ffffff,#f2f3f8);
    border-radius:10px;
    padding:22px 11px;
    text-align:center;
    cursor:pointer;
    box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
    transition:all .25s ease;
    position:relative;
    overflow:hidden;
}

/* Glow on hover */
.category-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 38px rgba(0,0,0,0.14);
}

/* Tap effect */
.category-card:active{
    transform:scale(.95);
}

/* Image bubble */
.category-card img{
    width:64px;
    height:64px;
    padding:12px;
    border-radius:40%;
    background:#ffffff;
    box-shadow:0 6px 16px rgba(0,0,0,0.12);
    margin-bottom:14px;
}

/* Title */
.category-card h3{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#1f2937;
}
 h2{
    
    font-size:24px;
    font-weight:600;
    color:#1f2937;
}

/* Decorative accent */
.category-card::after{
    content:"";
    position:absolute;
    width:60px;
    height:60px;
    background:rgba(43, 16, 24, 0.5);
    border-radius:50%;
    top:-20px;
    right:-20px;
}
/* WIFI BUTTON */
.wifi-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 28px;
    border-radius:14px;
    border:none;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    color:#fff;
    background:#a5634d;
    /*box-shadow:*/
    /*    0 12px 30px rgba(0,123,255,0.35),*/
    /*    inset 0 1px 0 rgba(255,255,255,0.3);*/
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
}

/* Glow wave effect */
.wifi-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transition:.6s;
}

.wifi-btn:hover::before{
    left:100%;
}

/* Hover */
.wifi-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(0,123,255,0.45);
}

/* Tap */
.wifi-btn:active{
    transform:scale(0.95);
}

/* Icon bubble */
.wifi-icon{
    width:22px;
    height:22px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

/* Icon animation */
.wifi-btn:hover .wifi-icon i{
    animation:wifiPulse 1.2s infinite;
}

/* Text */
.wifi-text{
    white-space:nowrap;
}

/* Animation */
@keyframes wifiPulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.25);}
    100%{transform:scale(1);}
}

/* Mobile full-width */
@media(max-width:576px){
    .wifi-btn{
       
        justify-content:center;
    }
}


/* Tablet */
@media(min-width:768px){
    .category-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* Desktop */
@media(min-width:1200px){
    .category-grid{
        grid-template-columns:repeat(6,1fr);
    }
}
.service-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    color: rgba(var(--brand-ink), 1);
    box-shadow: 0 18px 32px rgba(17, 6, 10, 0.12);
    border: 1px solid rgba(var(--brand-gold), 0.18);
    margin-bottom: 24px;
}

.service-card .card-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card .flex-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.service-card .card-name {
    font-weight: 700;
    letter-spacing: 0.6px;
    color: rgba(var(--brand-ink), 1);
}

.service-card .ac-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.service-card .ac-details li {
    background: rgba(var(--brand-cream), 1);
    border: 1px solid rgba(var(--brand-gold), 0.2);
    border-radius: 12px;
    padding: 10px 12px;
}

.service-card .ac-details h6 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: rgba(var(--brand-ink), 0.65);
    margin-bottom: 6px;
}

.service-card .ac-details h3,
.service-card .ac-details h5,
.service-card .ac-details p {
    color: rgba(var(--brand-ink), 1);
    margin: 0;
}

.service-card .ac-details p {
    font-size: 13px;
}

.service-card .btn-light {
    background: #fff7f1 !important;
    color: rgba(var(--brand-ink), 1) !important;
    border: 1px solid rgba(var(--brand-gold), 0.35) !important;
    box-shadow: 0 10px 20px rgba(17, 6, 10, 0.12);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #fff;
    background: rgba(var(--brand-ink), 1);
}

.status-badge.pending {
    background: rgba(var(--brand-gold), 1);
    color: #2b1018;
}

@media (max-width: 600px) {
    .service-card {
        padding: 18px;
    }

    .service-card .ac-details {
        grid-template-columns: 1fr;
    }
}

.status-badge {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

/* Footer nav refresh + responsive tweaks */
.bottom-navbar {
    max-width: 640px;
    width: 100%;
    border: 1px solid rgba(var(--border), 1);
    border-bottom: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-color: rgba(var(--white), 0.96);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.dark-mode .bottom-navbar {
    background-color: rgba(var(--body-color), 0.96);
}

.bottom-navbar ul li {
    flex: 1;
}

.bottom-navbar ul li .icon {
    gap: 4px;
}

.bottom-navbar ul li .icon .menu-icon {
    --Iconsax-Size: 22px;
    padding: 6px 12px;
}

.bottom-navbar ul li .icon h5 {
    font-size: 12px;
    letter-spacing: 0.2px;
}

.bottom-navbar ul li.active .icon .menu-icon {
    background-color: rgba(var(--theme-color), 0.18);
}

@media (max-width: 420px) {
    .bottom-navbar {
        padding-inline: 8px;
    }

    .bottom-navbar ul li .icon .menu-icon {
        --Iconsax-Size: 20px;
        padding: 6px 10px;
    }

    .bottom-navbar ul li .icon h5 {
        font-size: 11px;
    }
}

.status-badge.pending {
    background: #f1c40f;
}

/* Input styling: background + shadow for auth forms */
.auth-input-form .form-group .form-control,
.blog-auth-form .form-group .form-control {
    background-color: rgba(var(--white), 1);
    border: 1px solid rgba(var(--theme-color), 0.2);
    box-shadow: 0 10px 22px rgba(var(--theme-color), 0.08), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.auth-input-form .form-group .form-control:focus,
.blog-auth-form .form-group .form-control:focus {
    border-color: rgba(var(--theme-color), 0.7);
    box-shadow: 0 0 0 3px rgba(var(--theme-color), 0.18), 0 10px 22px rgba(var(--theme-color), 0.08);
}

.status-badge.completed {
    background: #2ecc71;
}

.status-badge.cancelled {
    background: #e74c3c;
}
 .view-btn 
    {
    width: auto;
    padding: 8px 20px;
    line-height: 1;
    font-size: 18px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    color: rgba(var(--dark-bg), 1);
    background-color: rgba(var(--theme-color), 1);
    border-radius: 8px;
    white-space: nowrap;
    }
     .blog-user-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* space between items */
    padding: 0;
    list-style: none;
    margin: 0 auto;
}

.blog-user-list li {
    flex: 0 0 45%; /* Two per row on desktop */
    max-width: 200px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 10px;
    /*box-shadow: 0 2px 6px rgba(0,0,0,0.05);*/
    transition: box-shadow 0.2s;
    text-align: center;
}

.blog-user-list li:hover {
    /*box-shadow: 0 6px 18px rgba(0,0,0,0.12);*/
}

.blog-user-list img.img-fluid {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 16px 0 8px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    background: #f6f6f6;
}

.blog-user-list h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 12px;
}
  .add-to-cart-btn {
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 16px;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.add-to-cart-btn:hover {
    background: #218838;
}
.fa-shopping-cart
{
    color: #fff;
}
/* style for toggle        */
/* Layout (keep yours) */
.blog-user-list{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
}

.dnd-li{
    flex:1;
}

.wifi-li{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

/* DND container (card style) */
.dnd-toggle-wrap{
    display:flex;
    align-items:center;
    gap:14px;
    background:#fff;
    padding:6px 16px;
    border-radius:18px;
    /*box-shadow:0 8px 20px rgba(0,0,0,0.08);*/
    background: #a5634d;
}

/* Label */
.dnd-label-text{
    font-weight:600;
    font-size:14px;
    color:#fff;
}

/* Toggle switch */
.dnd-switch{
    position:relative;
    width:54px;
    height:28px;
}

.dnd-switch input{
    display:none;
}

/* Track */
.dnd-slider{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#e0e0e0,#cfcfcf);
    border-radius:30px;
    transition:all 0.4s ease;
}

/* Knob */
.dnd-slider::before{
    content:"";
    position:absolute;
    width:24px;
    height:24px;
    left:2px;
    top:2px;
    background:#fff;
    border-radius:50%;
    transition:all 0.4s cubic-bezier(.68,-0.55,.27,1.55);
    box-shadow:0 4px 10px rgba(0,0,0,.25);
}

/* ON state */
.dnd-switch input:checked + .dnd-slider{
    background: linear-gradient(150deg, #E5D5CF, #FF7A33);
    /*padding:10px 16px;*/
    border-radius:30px;
    /*box-shadow:0 0 12px rgba(220,53,69,.6);*/
}
/* Lock height consistency */
.dnd-toggle-wrap,
.wifi-btn{
    height:54px;
}


.dnd-switch input:checked + .dnd-slider::before{
    transform:translateX(26px);
}

/* Optional pulse effect when ON */
.dnd-switch input:checked + .dnd-slider::after{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:30px;
    border:2px solid rgba(43, 16, 24, 0.5);
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{opacity:0.7;}
    70%{opacity:0;}
    100%{opacity:0;}
}
/* Force single row always */
.blog-user-list{
    display:flex;
    flex-wrap:nowrap;              /* 🔑 prevent stacking */
    align-items:center;
    gap:12px;
}

/* Equal width columns */
.dnd-li,
.wifi-li{
    flex:0 0 50%;
}

/* DND card full width */
.dnd-toggle-wrap{
    width:100%;
    justify-content:space-between;
}

/* WiFi button full width */
.wifi-li .wifi-btn{
    width:100%;
    justify-content:center;
}

/* Mobile refinement */
@media (max-width: 576px){
    .dnd-toggle-wrap{
        /*padding:8px 12px;*/
        border-radius:14px;
    }

    .dnd-label-text{
        font-size:13px;
    }

    .wifi-btn{
        padding:10px 12px;
        font-size:14px;
    }
}
/*        css                      */
 .card {
      width: 375px;           /* iPhone-like width */
      border-radius: 40px;
      overflow: hidden;
      background: #f4f1ee;
      box-shadow: 0 24px 60px rgba(0,0,0,0.16);
    }

    /* Top banner */
    .top {
      position: relative;
      background: #ff7f32;    /* orange */
      padding: 32px 24px 120px;
    }

    .shape-grid {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 1fr;
      gap: 0;
      overflow: hidden;
    }

    .shape {
      background: #2a1320;
      border-radius: 0;
    }

    /* just approximate pattern */
    .shape.round-top { border-radius: 999px 999px 0 0; }
    .shape.round-left { border-radius: 999px 0 0 999px; }
    .shape.round-right { border-radius: 0 999px 999px 0; }
    .shape.round-bottom { border-radius: 0 0 999px 999px; }

    .top-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .back-btn {
      width: 45px;
      height: 45px;
      border-radius: 999px;
      border: none;
      background: #f4f1ee;
      box-shadow: 0 8px 16px rgba(0,0,0,0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
    }

    .hotel-chip {
      padding: 10px 26px;
      border-radius: 999px;
      background: #f4f1ee;
      box-shadow: 0 10px 18px rgba(0,0,0,0.18);
      font-size: 18px;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
    }

    /* Image circle overlaps top and body */
    .image-wrapper {
      position: relative;
      margin-top: -80px;
      display: flex;
      justify-content: center;
    }

    .image-circle {
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: #48474b;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 18px 35px rgba(0,0,0,0.4);
      overflow: hidden;
    }

    .image-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .content {
      padding: 16px 26px 32px;
      text-align: center;
    }

    .title {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      letter-spacing: 0.02em;
      color: #351826;
      margin-bottom: 16px;
    }

    .desc {
      font-size: 14px;
      line-height: 1.6;
      color: #7d7075;
      margin-bottom: 28px;
    }

    .actions {
      display: flex;
      gap: 14px;
      justify-content: center;
    }

    .btn {
      flex: 1;
      height: 52px;
      border-radius: 30px;
      font-size: 15px;
      /*border: 1.5px solid #2a1320;*/
      cursor: pointer;
      font-weight: 500;
    }

    .btn-outline {
      background: transparent;
      color: #2a1320;
    }

    .btn-filled {
      background: #2a1320;
      color: #f4f1ee;
      border-color: #2a1320;
    }

/* menu page */
.food-card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:18px;
}

/* card container */
.food-card{
    background:#fff;
    border-radius:20px;
    padding:18px 18px 20px;
    border:1px solid rgba(var(--brand-gold), 0.18);
    box-shadow:0 18px 32px rgba(17, 6, 10, 0.12);
    text-align:center;
    transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.food-card:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 38px rgba(17, 6, 10, 0.18);
}

/* circular image similar to waffle view */
.food-card-image-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:14px;
}
.food-card-image-circle{
    width:140px;
    height:140px;
    border-radius:50%;
    background:#f3e9e3;
    overflow:hidden;
    border:1px solid rgba(var(--brand-gold), 0.35);
    box-shadow:0 12px 26px rgba(17, 6, 10, 0.18);
}
.food-card-image-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* content */
.food-card-body{
    text-align:left;
}
.food-card-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:6px;
}
.food-card-title{
    font-size:16px;
    font-weight:700;
    margin:0;
    color:rgba(var(--brand-ink), 1);
}
.food-card-price{
    font-size:15px;
    font-weight:700;
    color:rgba(var(--brand-ink), 1);
}
.food-card-desc{
    font-size:13px;
    color:rgba(var(--content-color), 1);
    margin-bottom:12px;
}

/* button styled like chip [web:29][web:32] */
.food-card-actions{
    display:flex;
    justify-content:flex-end;
}
.food-card-btn{
    padding:8px 14px;
    border-radius:999px;
    border:none;
    background:rgba(var(--theme-color), 1);
    color:#fff;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 10px 20px rgba(17, 6, 10, 0.18);
}
.food-card-btn i{
    margin-right:6px;
}

.food-fixed-panel .food-fixed-panel-content{
    background:#fffaf6;
    border:1px solid rgba(var(--brand-gold), 0.35);
    box-shadow:0 18px 34px rgba(17, 6, 10, 0.18);
}

/* Booking history styling */
.booking-item {
    list-style: none;
}

.booking-item + .booking-item {
    margin-top: 16px;
}

.booking-item .hotel-list-box {
    display: flex;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(var(--brand-gold), 0.18);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 18px 34px rgba(17, 6, 10, 0.14);
    position: relative;
    overflow: hidden;
}

.booking-item .hotel-list-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(var(--brand-maroon), 1), rgba(var(--brand-gold), 1));
}

.booking-item .hotel-list-box img {
    width: 96px;
    height: 96px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(var(--brand-gold), 0.25);
    box-shadow: 0 8px 18px rgba(17, 6, 10, 0.12);
}

.booking-item .hotel-list-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: rgba(var(--brand-ink), 1);
}

.booking-item .hotel-list-content h5,
.booking-item .hotel-list-content h6 {
    margin: 6px 0 0;
    color: rgba(var(--brand-ink), 0.9);
}

.booking-item .badge {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(var(--brand-gold), 0.45);
    background: #fff7f1;
    color: rgba(var(--brand-ink), 1);
}

.booking-item .bg-success {
    background: rgba(25, 135, 84, 0.12) !important;
    border-color: rgba(25, 135, 84, 0.35) !important;
    color: #1f5d3d !important;
}

.booking-item .bg-warning {
    background: rgba(var(--brand-gold), 0.2) !important;
    border-color: rgba(var(--brand-gold), 0.45) !important;
    color: #5a3a16 !important;
}

.booking-item .hotel-list-content h5 strong,
.booking-item .hotel-list-content h6 strong {
    font-weight: 700;
    color: rgba(var(--brand-ink), 1);
}

@media (max-width: 600px) {
    .booking-item .hotel-list-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-item .hotel-list-box img {
        width: 100%;
        height: 160px;
    }
}
/* food home page css */
/* responsive grid of category cards [web:56][web:64] */
.category-card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(140px,1fr));
    gap:18px;
    justify-items:center;
}

.category-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:18px 12px 16px;
    background:#f4f1ee;
    border-radius:26px;
    text-decoration:none;
    color:#2a1320;
    box-shadow:0 14px 32px rgba(0,0,0,0.12);           /* card [web:33] */
    transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.category-card:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

/* circular image like other pages [web:64] */
.category-card-image-wrap{
    margin-bottom:10px;
}
.category-card-image-circle{
    width:80px;
    height:80px;
    border-radius:50%;
    overflow:hidden;
    background:#48474b;
    box-shadow:0 8px 18px rgba(0,0,0,0.35);
}
.category-card-image-circle img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.category-card-title{
    font-size:14px;
    font-weight:600;
    margin:0;
}
/* no items css */
.no-items-box{
    text-align:center;
    padding:40px 20px;
    border-radius:30px;
    background:#f4f1ee;
    box-shadow:0 18px 40px rgba(0,0,0,0.12);          /* card style [web:33] */
    margin-top:10px;
}
.no-items-icon{
    width:90px;
    height:90px;
    margin:0 auto 14px;
    border-radius:50%;
    background:#2a1320;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#f4f1ee;
    font-size:34px;
}
.no-items-box h4{
    margin-bottom:6px;
    font-size:18px;
}
.no-items-box p{
    font-size:13px;
    color:#7d7075;
}
/* main view page css */
.service-overlay-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 160px;
}
.service-overlay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.service-name-overlay {
    position: absolute;
    bottom: 2px;
    /*left: 20px;*/
    right: auto;
    transform: none;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 20px 24px 24px;
    border-radius: 20px 20px 0 20px;
    text-align: left;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 100%;
}
.service-overlay-card:hover .service-name-overlay {
    opacity: 1;
    transform: translateY(-4px);
}
.service-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #fff;
}
@media (max-width: 1320px) {
    .service-name-overlay { 
        opacity: 1 !important; 
        transform: translateY(0) !important; 
    }
}

/* Your Stay overlay - BOTTOM RIGHT */
.your-stay-overlay {
    position: absolute;
    bottom: 24px;
    right: 40px;
    left: auto;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}
.stay-title { 
    font-size: 20px; 
    font-weight: 600; 
    margin-bottom: 8px; 
    letter-spacing: 0.5px;
}
.hotel-badge {
    background: linear-gradient(135deg, rgba(43, 16, 24, 0.95), rgba(202, 164, 106, 0.85));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: inline-block;
}
.banner-img { 
    border-radius: 0 0 28px 28px; 
    height: 240px; 
    object-fit: cover;
}

/* Global maroon theme overrides */
:root {
    --theme-color: 43, 16, 24;
    --secondary-color: 202, 164, 106;
    --rating-color: 202, 164, 106;
    --gradient: linear-gradient(90deg, #2b1018 0%, rgba(202, 164, 106, 0.2) 100%);
    --title-color: 43, 16, 24;
    --content-color: 120, 98, 106;
    --brand-maroon: 43, 16, 24;
    --brand-gold: 202, 164, 106;
    --brand-cream: 247, 239, 232;
    --brand-ink: 43, 16, 24;
}

body {
    background-color: rgba(var(--brand-cream), 1);
}

body.blog,
body.food,
body.pet,
body.plant,
body.grocery,
body.ecommerce,
body.hotel-booking,
body.chatting,
body.learning,
body.cab-booking,
body.fitness,
body.furniture,
body.jewellery,
body.salon,
body.landing {
    --theme-color: 43, 16, 24;
}

body,
button,
input,
select,
textarea {
    font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3,
h4,
.blog-main-content h3 {
    font-family: "Playfair Display", serif;
    color: rgba(var(--brand-ink), 1);
}

.header-panel h3,
.blog-main-content h3 {
    color: rgba(var(--brand-ink), 1);
}

.icon-btn,
.iconsax.icon-btn {
    --Iconsax-Color: rgba(var(--brand-ink), 1);
}

.header,
.blog-main-header {
    background: #fffaf6;
    border-bottom: 1px solid rgba(var(--brand-maroon), 0.08);
}

.setting-list,
.service-card,
.food-restaurant-list li,
.category-card,
.hotel-profile-wrapper,
.post-compose-box,
.settings-options li {
    background: #fff;
    border: 1px solid rgba(var(--brand-maroon), 0.08);
    border-radius: 16px;
    box-shadow: 0 14px 28px rgba(17, 6, 10, 0.08);
}

.settings-options li {
    padding: 14px 12px;
}

.pet-btn,
.submit-btn,
.view-btn {
    background: rgba(var(--theme-color), 1) !important;
    color: #fff !important;
    border: 1px solid rgba(var(--theme-color), 1) !important;
    box-shadow: 0 16px 28px rgba(var(--brand-maroon), 0.22);
}

.pet-btn:hover,
.submit-btn:hover,
.view-btn:hover {
    box-shadow: 0 20px 34px rgba(var(--brand-maroon), 0.28);
}

.btn-light,
.btn.btn-light {
    background: #fff7f1 !important;
    color: rgba(var(--brand-ink), 1) !important;
    border: 1px solid rgba(var(--brand-gold), 0.35) !important;
}

.form-control,
.form-select {
    background-color: #fff;
    border: 1px solid rgba(var(--brand-gold), 0.35);
    box-shadow: 0 10px 20px rgba(17, 6, 10, 0.08);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(var(--theme-color), 0.7);
    box-shadow: 0 0 0 3px rgba(var(--theme-color), 0.15), 0 10px 20px rgba(17, 6, 10, 0.08);
}

.bottom-navbar {
    background-color: #fffaf6;
    border-color: rgba(var(--brand-gold), 0.35);
}

/* Theme modal overrides */
.modal .modal-content {
    background-color: #fffaf6;
    border: 1px solid rgba(var(--brand-maroon), 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(var(--brand-maroon), 0.18);
    color: rgba(var(--brand-ink), 1);
}

.modal .modal-header {
    border-bottom: 1px solid rgba(var(--brand-maroon), 0.08);
}

.modal .modal-header h3,
.modal .modal-header h4,
.modal .modal-header h5,
.modal .modal-header .modal-title {
    color: rgba(var(--brand-ink), 1);
}

.modal .modal-footer {
    background-color: #fffaf6;
    border-top: 1px solid rgba(var(--brand-maroon), 0.08);
    box-shadow: none;
}

.modal .btn-close {
    background-color: rgba(var(--brand-cream), 1);
    border: 1px solid rgba(var(--brand-gold), 0.35);
    border-radius: 999px;
    opacity: 1;
}

.modal.filter-modal .modal-footer .reset-link {
    color: rgba(var(--brand-ink), 1);
}

.modal.filter-modal .modal-footer .fixed-btn {
    background-color: rgba(var(--brand-maroon), 1);
    color: #fff;
}

.feedback-model .modal-content,
.food-model-content .modal-content {
    background-color: #fffaf6;
    border: 1px solid rgba(var(--brand-maroon), 0.08);
    box-shadow: 0 18px 34px rgba(var(--brand-maroon), 0.18);
}

.feedback-model .modal-content h4,
.feedback-model .modal-content p,
.food-model-content .modal-content h5,
.food-model-content .modal-content p {
    color: rgba(var(--brand-ink), 1);
}

.feedback-model .modal-content .feedback-comment {
    background-color: rgba(var(--brand-cream), 1);
    border: 1px solid rgba(var(--brand-gold), 0.25);
}

.food-model-content .modal-content .verify-button {
    background-color: rgba(var(--brand-maroon), 1);
    color: #fff;
}

.confirm-modal .modal-header .btn-close {
    background-color: rgba(var(--brand-cream), 1);
    border: 1px solid rgba(var(--brand-gold), 0.35);
    color: rgba(var(--brand-ink), 1);
}

