/* ── Container Overrides ── */
#main-content{background:#faf9f5;--wd-gap-lg:0px !important;--wd-gap-sm:0px !important;}

.wd-content-layout { 
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-block: 0px !important;
    margin-right: 0px;
    margin-left: 0px;
    width: 100% ;
    max-width: 100% !important;
}

/* ── Hero Section ── */
.dir-hero {
    background: #2a1d18;
    border-bottom: 1px solid rgba(255,255,255,.08); /*   margin-top: -13px;*/
}
.dir-hero-inner { 
    padding: 24px 0px 28px; 
}
.dir-hero .breadcrumb { 
    font-size: 13px; 
    color: rgba(255,255,255,.55); 
    margin-bottom: 10px; 
    padding: 0; 
}
.dir-hero .breadcrumb a { 
    color: rgba(255,255,255,.55); 
    text-decoration: none; 
}
.dir-hero .breadcrumb a:hover { 
    color: #fff; 
}
.dir-hero .breadcrumb .sep { 
    margin: 0 8px; 
    opacity: .5; 
}
.dir-hero .breadcrumb .here { 
    color: rgba(255,255,255,.85); 
}
.dir-hero h1 { 
    font-family: var(--sans, sans-serif); 
    font-size: 34px; 
    font-weight: 700; 
    color: #fff; 
    margin: 0 0 6px; 
    text-align: center; 
}
.dir-hero-desc { 
    font-size: 20px; 
    color: rgba(255,255,255,.65); 
    margin: 0; 
    text-align: center; 
}

/* Responsive Hero */
@media (max-width: 980px) {
  .dir-hero-inner { padding: 18px 16px 30px; }
  .dir-hero h1 { font-size: 28px; text-align: left; }
  .dir-hero-desc { font-size: 16px; text-align: left; }
}


/* ── Page body 2-col ── */
.dir-wrap {
  max-width: 1280px;
  width: inherit;  /* added custom  */
  margin: 0 auto;
  padding: 32px 0px 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px) {
  .dir-wrap { grid-template-columns: 1fr; padding: 20px 0px 0px; }
  .dir-sidebar { display: none; }
  .dir-sidebar.open { display: block; }
}

/* ── Left sidebar ── */
.dir-sidebar {
  position: sticky;
  top: 80px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 48px -8px rgba(28,31,26,.10), 0 2px 12px -4px rgba(28,31,26,.06);
}
.dir-sidebar-section {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.dir-sidebar-section:last-child { border-bottom: none; }
.dir-sidebar-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1c1f1a;
  margin-bottom: 12px;
}

/* Sidebar search */
.dir-sidebar-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 12px;
}
.dir-sidebar-search-wrap svg { flex-shrink: 0; color: var(--muted); }
.dir-sidebar-search-inp {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  font-family: var(--sans);
  min-width: 0;
}
.dir-sidebar-search-inp::placeholder { color: #1c1f1a; }

/* State filter list */
.dir-state-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dir-state-list li button {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 8px 10px;
  font-size: 14px;
  color: #1c1f1a;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--sans);
  text-align: left;
  transition: background .12s, color .12s;
  gap: 6px;
}
.dir-state-list li button:hover { background: var(--bg); color: var(--ink); }

.dir-state-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

/* Open Now toggle */
.dir-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.dir-toggle-label {
  font-size: 14px;
  color: #1c1f1a;
  cursor: pointer;
  user-select: none;
}
.dir-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}
.dir-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.dir-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--line);
  border-radius: 99px;
  cursor: pointer;
  transition: background .2s;
}
.dir-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.dir-toggle input:checked + .dir-toggle-track { background: #2a7a4b; }
.dir-toggle input:checked + .dir-toggle-track::after { transform: translateX(16px); }

/* ── Right: list view ── */
.dir-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}
.dir-count {
  font-size: 13px;
  color: var(--muted);
}
.dir-count strong { color: var(--ink); font-weight: 600; }
.dir-sort-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.dir-sort-row select {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 10px;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  cursor: pointer;
  outline: none;
}
@media (max-width: 600px) {
  .dir-sort-row { display: none; }
}

/* List rows */
.dir-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 24px;
}
.dir-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background .12s;
}
.dir-row:last-child { border-bottom: none; }
.dir-row:hover { background: #faf9f5; }

.dir-row-img {
  width: 72px;
  height: 72px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
}
.dir-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dir-row-info {
  flex: 1;
  min-width: 0;
}
.dir-row-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 3px;
  white-space: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dir-row-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 3px;
}
.dir-row-location svg { flex-shrink: 0; }
.dir-row-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
}
.dir-row-rating .rating-star { color: #f59e0b; font-size: 14px; line-height: 1; }
.dir-row-rating .rating-count { color: var(--muted); font-weight: 400; }
.dir-row-hours {
  font-size: 12.5px;
  color: var(--muted);
}

.dir-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.dir-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.dir-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dir-status--open { background: #e8f5ee; color: #1e6e3d; }
.dir-status--open::before { background: #2a7a4b; }
.dir-status--closed { background: #fdeaea; color: #9b2222; }
.dir-status--closed::before { background: #c94040; }
.dir-row-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.dir-row:hover .dir-row-link { text-decoration: underline; }

/* Load more */
.dir-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  transition: border-color .15s, color .15s;
}
.dir-load-more:hover { border-color: var(--accent); color: var(--accent); }
.dir-page-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }

/* Mobile filter/sort bar */
.dir-mobile-bar { display: none; }
.dir-mobile-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 0; background: none; border: none; font-size: 15px; font-weight: 600; color: var(--ink) !important; cursor: pointer; font-family: var(--sans); }
.dir-mobile-bar-sep { width: 1px; background: var(--line); align-self: stretch; flex-shrink: 0; }
@media (max-width: 980px) {
  .dir-mobile-bar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
  }
}
@media (max-width: 600px) {
  .dir-row { gap: 12px; padding: 12px 14px; align-items: center; }
  .dir-row-img { width: 60px; height: 60px; flex-shrink: 0; }
  .dir-row-info { flex: 1; min-width: 0; }
  .dir-row-name { font-size: 16px; white-space: normal; overflow: visible; text-overflow: unset; margin-bottom: 2px; }
  .dir-row-location { font-size: 12px; margin-bottom: 2px; }
  .dir-row-rating { font-size: 12px; margin-bottom: 2px; }
  .dir-row-right { flex-direction: column; align-items: center; justify-content: center; gap: 0; flex-shrink: 0;display:none; }
  .dir-row-right .dir-status { display: none; }
  .dir-row-link { display: none; }
  .dir-row-arrow { display: flex; }
  .dir-row-rating { flex-wrap: wrap; gap: 6px; }
  .dir-row-rating .dir-status { display: inline-flex; font-size: 11px; padding: 3px 7px; }
}
.dir-row-arrow {
  display: none;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #6b1a2c;
  flex-shrink: 0;
}

/*----Aarti css---*/

	.dir-list .dir-row{align-items: flex-start;}
.dir-row-rating{display: none;}
.dir-row-location{align-items:baseline;}
@media (max-width: 600px) {
	.dir-row-location{align-items: baseline;}
	.dir-row-location p{margin-bottom: 5px; }
	
	}
#dirSort{    max-width: inherit;    width: inherit;-webkit-appearance: auto;    -moz-appearance: auto;    appearance: auto;}
.dir-sort-row label{color:var(--muted);margin-bottom: 0px;}
.dir-count{margin-bottom:0px;}
.dir-sort-row select{border: 1px solid var(--line);
    border-radius: 4px;
    padding: 6px 6px;
    font-size: 13px;
    color: var(--ink);
    background: #fff;
    font-family: var(--sans);
    cursor: pointer;
	outline: none;height:auto;}
.dir-sidebar-search-inp{padding: 0 !important;
    max-width: 100%;
    width: 100%;
    height: auto !important;
    border: 0px !important;
    border-radius: 0;
    background-color: inherit !important;
    box-shadow: none;
    color: var(--wd-form-color);
    vertical-align: middle;
    font-size: 14px;
	transition: border-color .5s ease;}
.dir-state-list li button{justify-content: flex-start;  min-height: inherit !important;    font-weight: 400 !important;}
.dir-load-more{ display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--sans);  
    transition: border-color .15s, color .15s;}   
.dir-load-more:hover{border-color: var(--accent);
    color: var(--accent);background:#fff;}
.dir-state-list li{margin-bottom: 0px !important;}
.dir-state-list li button.active {  background: #fdf4f5;  color: var(--accent);  font-weight: 600 !important;}
.dir-status.dir-status-mob{display:none;}

/* Desktop */
.dir-row-rating .dir-status {
    display: none;
}

.dir-row-right .dir-status {
    display: inline-flex;
}

/* Mobile */
@media (max-width: 600px) {

    .dir-row-rating .dir-status {
        display: inline-flex;
    }

    .dir-row-right .dir-status {
        display: none;
    }
    .dir-status.dir-status-mob{display:inline-flex;}
    .dir-row-right .dir-status{display:none;}
}








