/* Grid */
.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: linear-gradient(150deg, #4b79a1, #283e51);
    padding: 25px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.service-card .ac-details {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.service-card .ac-details h6 {
    opacity: 0.8;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.status-badge.pending {
    background: #f1c40f;
}

.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, #2B1018);
    /*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:20px;
}

/* card container */
.food-card{
    background:#f4f1ee;
    border-radius:30px;
    padding:18px 18px 20px;
    box-shadow:0 18px 40px rgba(0,0,0,0.12);           /* card look [web:31] */
    text-align:center;
}

/* circular image similar to waffle view */
.food-card-image-wrap{
    display:flex;
    justify-content:center;
    margin-bottom:14px;
}
.food-card-image-circle{
    width:150px;
    height:150px;
    border-radius:50%;
    background:#48474b;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.35);
}
.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:600;
    margin:0;
}
.food-card-price{
    font-size:15px;
    font-weight:600;
    color:#2a1320;
}
.food-card-desc{
    font-size:13px;
    color:#7d7075;
    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:#2a1320;
    color:#f4f1ee;
    font-size:13px;
    font-weight:500;
    cursor:pointer;
}
.food-card-btn i{
    margin-right:6px;
}
/* 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.9), rgba(74,26,32,0.9));
    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;
}

