@charset "utf-8";
/* CSS Document */
/* ── Breadcrumb ── */
.main-container{width:89%;max-width:1280px;margin:0px auto;padding:0px;}
 .breadcrumb {
     padding: 22px 0px 0;
     font-size: 13px;
     color: var(--muted);
     letter-spacing: .02em;
 }

 .breadcrumb a {
     color: var(--muted);
     text-decoration: none;
 }

 .breadcrumb a:hover {
     color: var(--accent);
 }

 .breadcrumb .sep {
     margin: 0 10px;
     opacity: .5;
 }

 .breadcrumb .here {
     color: var(--ink);
 }

 @media (max-width: 980px) {
     .breadcrumb {
         padding: 16px 0px 0;
     }
 }

 /* ── Page wrapper ── */
 .listing-page {
    
     padding: 24px 0px 24px;
 }
.store-desc-btn{background-color:inherit !important;color:inherit !important;}
 @media (max-width: 980px) {
     .listing-page {
         padding: 20px 0px 20px;
     }
 }
 @media (max-width: 600px) {
    .breadcrumb {
        margin-bottom: 0px !important;
    }
}
 .listing-page-heading {
     font-family: var(--sans);
     font-size: 28px;
     font-weight: 700;
     color: var(--ink);
     margin-bottom: 24px;
     font-variation-settings: "opsz" 72, "SOFT" 30;    line-height: inherit;
 }

 /* ── 2-col layout ── */
 .listing-layout {
     display: grid;
     grid-template-columns: 300px 1fr;
     gap: 32px;
     align-items: start;
 }

 @media (max-width: 980px) {
     .listing-layout {
         grid-template-columns: 1fr;
     }
 }

 /* ── Left column ── */
 .listing-left {
     position: sticky;
     top: 80px;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 @media (max-width: 980px) {
     .listing-left {
         position: static;
     }
 }

 /* ── Store info card (vertical in left col) ── */
 .store-card {
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 8px;
     overflow: hidden;
 }

 .store-card-img {
     width: 100%;
     height: 180px;
     overflow: hidden;
 }

 .store-card-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .store-card-body {
     padding: 18px 20px 20px;
 }

 .store-rating {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 14px;
 }

 .store-rating-score {
     font-size: 16px;
     font-weight: 700;
     color: var(--ink);
     line-height: 1;
 }

 .store-rating-stars {
     display: flex;
     align-items: center;
     gap: 1px;
     color: #f59e0b;
 }

 .store-rating-stars svg {
     width: 16px;
     height: 16px;
     flex-shrink: 0;
 }

 .store-rating-count {
     font-size: 13px;
     color: var(--accent);
     text-decoration: none;
 }

 .store-rating-count:hover {
     text-decoration: underline;
 }

 .store-name {
     font-family: var(--sans);
     font-size: 22px;
     font-weight: 700;
     color: var(--ink);
     margin-bottom: 12px;
     font-variation-settings: "opsz" 72, "SOFT" 20;
 }

 .store-desc {
     font-size: 14.5px;
     color: var(--ink);
     line-height: 1.7;
     margin-top: 0;
     padding: 0 20px 20px;
 }

 .store-meta {
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .store-meta-row {
     display: block;
   
     font-size: 14px;
     color: var(--ink);
 }
.store-meta-row span{display: inline-block;    line-height: inherit;    width: calc(100% - 24px);    vertical-align: top;}
 .store-meta-row svg {
     flex-shrink: 0;
     color: #2a1d18;display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
 }

/* Base badge layout */
.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
}

.open-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* OPEN status styling */
.open-badge.status-open {
    color: #1e6e3d;         /* Your requested darker green text */
    background-color: #e8f5ee; /* Light green background */
}
.open-badge.status-open::before {
    background-color: #2a7a4b; /* Green indicator dot */
}

/* CLOSED status styling */
.open-badge.status-closed {
    color: #e74c3c;         /* Red text */
    background-color: #fdecea; /* Light red background */
}
.open-badge.status-closed::before {
    background-color: #e74c3c; /* Red indicator dot */
}

 @media (max-width: 980px) {
     .store-card {
         display: flex;
         flex-direction: row;
         align-items: flex-start;
         flex-wrap: wrap;
     }

     .store-card-img {
         width: 110px;
         height: 110px;
         flex: 0 0 110px;
         padding: 12px 0 0 14px;
         border-radius: 0;
     }

     .store-card-img img {
         border-radius: 8px;
     }

     .store-card-body {
         padding: 12px 14px;
         display: flex;
         flex-direction: column;
         gap: 4px;
         flex: 1;
         min-width: 0;
     }

     /* Name */
     .store-name {
         font-size: 16px;
         font-weight: 600;
         margin-bottom: 0;
         order: 1;
     }

     /* Flatten meta rows into body flex flow */
     .store-meta {
         display: contents;
     }

     .store-meta .store-meta-row:nth-child(1) {
         order: 2;
         font-size: 13px;
         color: var(--accent);
         font-weight: 500;
     }

     .store-meta .store-meta-row:nth-child(2) {
         display: none;
     }

     /* hide phone */
     .store-meta .store-meta-row:nth-child(3) {
         order: 4;
     }

     .store-meta .store-meta-row:nth-child(3) svg {
         display: none;
     }

     /* hide clock icon */
     .store-meta .store-meta-row:nth-child(3) .open-badge {
         font-size: 12px;
         padding: 4px 10px;
     }

     /* Rating */
     .store-rating {
         order: 3;
         margin-bottom: 0;
         flex-wrap: wrap;
         gap: 5px;
         font-size: 13px;
         font-weight: 600;
         color: var(--ink);
     }

     .store-rating-stars {
         display: none;
     }

     .store-rating-score {
         font-size: 13px;
         font-weight: 600;
     }

     .store-rating-score::before {
         content: '★';
         color: #f59e0b;
         font-size: 14px;
         margin-right: 3px;
         line-height: 1;
     }

     .store-rating-count {
         font-size: 13px;
         color: var(--muted);
         font-weight: 400;
     }
 }

 /* ── Map sidebar ── */
 .map-box {
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 8px;
     overflow: hidden;
 }

 .map-box-head {
     background: #2a1d18;
     color: #fff;
     font-size: 14px;
     font-weight: 600;
     padding: 12px 16px;
     letter-spacing: .02em;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .collapse-chevron {
     transition: transform .25s;
     flex-shrink: 0;
 }

 .box-open .collapse-chevron {
     transform: rotate(180deg);
 }

 .map-box iframe {
     display: block;
     width: 100%;
     height: 260px;
     border: none;
 }

 .hours-box .hours-box-content{
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 8px;
     overflow: hidden;border-radius: 0;
 }

 .hours-box-head {
     background: #2a1d18;
     color: #fff;
     font-size: 14px;
     font-weight: 600;
     padding: 12px 16px;
     letter-spacing: .02em;
     display: flex;
     align-items: center;
     justify-content: space-between;    border-top-left-radius: 8px;    border-top-right-radius: 8px;
 }

 .hours-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 14px;
 }

 .hours-table tr td {
     padding: 11px 16px;
     border-bottom: 1px solid var(--line);
     color: var(--ink);
 }

 .hours-table tr:last-child td {
     border-bottom: none;
 }

 .hours-table td:first-child {
     font-weight: 600;
 }

 .hours-table td:last-child {
     text-align: right;
     color: var(--ink-soft);
 }

 .hours-today td {
     background: #faf9f5;
 }

 .hours-today td:first-child {
     color: var(--accent);
 }

 /* ── Mobile collapsibles ── */
 .store-desc-btn {
     display: none;
 }

 @media (max-width: 980px) {
     .store-desc-btn {
         display: flex;
         align-items: center;
         justify-content: space-between;
         flex: 0 0 100%;
         padding: 10px 18px;
         font-size: 14px;
         font-weight: 600;
         color: var(--ink);
         background: none;
         border: none;
         border-top: 1px solid var(--line);
         cursor: pointer;
         font-family: var(--sans);
         text-align: left;
     }

     .store-desc {
         display: none;
         flex: 0 0 100%;
         padding: 0 18px 14px;
         margin-top: 0;
     }

     .store-desc.open {
         display: block;
     }

     .map-box-content {
         display: none;
     }

     .map-box.box-open .map-box-content {
         display: block;
     }

     /* .hours-box-content {
         display: none;
     } */

     /* .hours-box.box-open .hours-box-content {
         display: block;
     } */

     /* .map-box-head,
     .hours-box-head {
         cursor: pointer;
     } */
 }



 /* ── Right column ── */
 .listing-right {
     min-width: 0;
 }

 /* ── Deal sections ── */
 .deals-section {
     margin-bottom: 40px;
 }

 .deals-section:last-child {
     margin-bottom: 0;
 }

 .deals-heading {
     font-family: var(--sans);
     font-size: 20px;
     font-weight: 700;
     color: var(--ink);
     margin-bottom: 16px;line-height: inherit;
 }

 .deals-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
 }

 @media (max-width: 900px) {
     .deals-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }


 /* Universal Settings */
.hours-box-head,
.map-box-head {
    cursor: pointer;
}
.collapse-chevron {
    transition: transform .25s;
}

/* ── DESKTOP: Open by default, clicking CLOSES it ── */
@media (min-width: 981px) {
    .hours-box-content, .map-box-content { display: block; }
    .collapse-chevron { transform: rotate(180deg); } /* Arrow points UP */
    
    /* When clicked (toggled) */
    .hours-box.is-toggled .hours-box-content,
    .map-box.is-toggled .map-box-content { display: none; }
    .hours-box.is-toggled .collapse-chevron,
    .map-box.is-toggled .collapse-chevron { transform: rotate(0deg); } /* Arrow points DOWN */
}

/* ── MOBILE: Closed by default, clicking OPENS it ── */
@media (max-width: 980px) {
    .hours-box-content, .map-box-content { display: none; }
    .collapse-chevron { transform: rotate(0deg); } /* Arrow points DOWN */
    
    /* When clicked (toggled) */
    .hours-box.is-toggled .hours-box-content,
    .map-box.is-toggled .map-box-content { display: block; }
    .hours-box.is-toggled .collapse-chevron,
    .map-box.is-toggled .collapse-chevron { transform: rotate(180deg); } /* Arrow points UP */
}

/* Flip the Read More arrow when open */
.store-desc-btn.is-toggled .collapse-chevron {
    transform: rotate(180deg);
}

 /* .product-card {
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 10px;
     padding: 20px 15px 15px;
     display: flex;
     flex-direction: column;
     gap: 10px;
     position: relative;
     text-decoration: none;
     color: inherit;
     transition: transform .18s, box-shadow .18s;
 }

 .product-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 24px -8px rgba(28, 31, 26, .12);
 }

 .card-img-wrap {
     aspect-ratio: 1;
     width: 100%;
     overflow: hidden;
     background: #fff;
 }

 .card-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     display: block;
     transition: transform .25s;
 }

 .product-card:hover .card-img-wrap img {
     transform: scale(1.03);
 }

 .card-info {
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .card-pricing {
     display: flex;
     flex-direction: column;
     gap: 2px;
     margin-top: auto;
 }

 .card-name {
     font-size: 16px;
     font-weight: 600;
     line-height: 22px;
     color: var(--ink);
 }

 .card-variety {
     font-size: 13px;
     color: var(--muted);
 }

 .card-price {
     font-size: 14px;
     font-weight: 400;
     color: var(--muted);
     line-height: 1.4;
 }

 .card-perbottle {
     display: flex;
     flex-direction: column;
     gap: 0;
 }

 .card-pb-row {
     display: flex;
     align-items: baseline;
     gap: 5px;
 }

 .card-pb-val {
     font-size: 20px;
     font-weight: 700;
     color: var(--ink);
     line-height: 1.2;
 }

 .card-pb-label {
     font-size: 14px;
     color: var(--muted);
     font-weight: 400;
 }

 .card-pb-original {
     font-size: 12px;
     color: var(--muted);
     text-decoration: line-through;
     line-height: 1;
     margin-bottom: 3px;
 }

 .card-badges {
     position: absolute;
     top: 12px;
     left: 12px;
     display: flex;
     flex-direction: column;
     gap: 5px;
     z-index: 2;
     pointer-events: none;
 }

 .card-pts {
     background: #937c5e;
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 999px;
     font-family: var(--sans);
     letter-spacing: .01em;
     align-self: flex-start;
 }

 .card-badge {
     background: var(--accent);
     color: #fff;
     font-size: 12px;
     font-weight: 700;
     padding: 4px 10px;
     border-radius: 999px;
     font-family: var(--sans);
     letter-spacing: .01em;
     align-self: flex-start;
 }

 .card-actions {
     position: absolute;
     top: 10px;
     right: 10px;
     display: flex;
     flex-direction: column;
     gap: 6px;
     opacity: 0;
     transform: translateX(6px);
     transition: opacity .18s, transform .18s;
     pointer-events: none;
     z-index: 2;
 }

 .product-card:hover .card-actions {
     opacity: 1;
     transform: translateX(0);
     pointer-events: auto;
 }

 .card-action-btn {
     width: 34px;
     height: 34px;
     background: #fff;
     border: 1px solid var(--line);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     color: var(--ink);
     transition: background .15s, color .15s, border-color .15s;
     padding: 0;
 }

 .card-action-btn:hover {
     background: var(--accent);
     color: #fff;
     border-color: var(--accent);
 }

 .card-btn {
     width: 100%;
     background: var(--accent);
     color: #fff;
     border: none;
     border-radius: 4px;
     padding: 13px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: background .15s;
     font-family: var(--sans);
 }

 .card-btn:hover {
     background: var(--accent-deep);
 }

 @media (max-width: 600px) {
     .deals-grid {
         grid-template-columns: 1fr;
         gap: 10px;
     }

     .product-card {
         display: grid;
         grid-template-columns: 156px 1fr;
         grid-template-rows: auto auto 1fr auto;
         padding: 15px;
         gap: 0 14px;
         min-height: 225px;
     }

     .card-img-wrap {
         grid-column: 1;
         grid-row: 1 / 4;
         width: 140px;
         height: 140px;
         aspect-ratio: unset;
         align-self: start;
     }

     .card-info {
         grid-column: 2;
         grid-row: 1;
         margin-top: 0;
     }

     .card-name {
         font-size: 16px;
         line-height: 22px;
     }

     .card-actions {
         grid-column: 2;
         grid-row: 2;
         position: static;
         opacity: 1;
         transform: none;
         pointer-events: auto;
         flex-direction: row;
         gap: 8px;
         padding-top: 10px;
     }

     .card-pricing {
         grid-column: 1;
         grid-row: 4;
         margin-top: 0;
         align-self: end;
         padding-bottom: 2px;
     }

     .card-btn {
         grid-column: 2;
         grid-row: 4;
         margin-top: 0;
         align-self: end;
         font-size: 14px;
         padding: 11px 13px;
         gap: 6px;
         width: auto;
     }

     .card-badges {
         top: 15px;
         left: 15px;
     }
 } */
/*
[class*=wd-grid] {
    --wd-col: 3 !important;
  
}*/
/*-----Aarti css------*/
.store-meta-row{align-items: baseline;}
.whb-sticky-prepared{padding-top:174px !important;}
@media (max-width: 1024px) {
    .whb-sticky-prepared {padding-top: 162px;}
}
.products .wd-product.wd-quantity-overlap .product-wrapper{background-color: #fff;}
table.hours-table{margin-bottom: 0px;}

#main-content{--wd-col:inherit !important;}













