/** Shopify CDN: Minification failed

Line 209:14 Expected identifier but found whitespace
Line 209:21 Unexpected ";"

**/
/* Create Post Prompt */
.likhaan-create-post-prompt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.likhaan-create-post-prompt:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-color: #d1d5db;
}
.likhaan-prompt-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  overflow: hidden;
}
.likhaan-prompt-input {
  color: #6b7280;
  font-size: 15px;
  flex-grow: 1;
}

/* Feed Header (Tabs & Filter) */
.likhaan-feed-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Reverting to center so pills align nicely with the divider */
  margin-bottom: 1.6rem;
  position: relative;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 8px; /* Give breathing room below pills */
}
.likhaan-feed-tabs {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-grow: 1;
}
.likhaan-feed-tabs::-webkit-scrollbar {
  display: none;
}
.likhaan-feed-tab {
  background: none;
  border: none;
  padding: 8px 16px;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 500 !important;
  color: #6b7280;
  cursor: pointer;
  border-radius: 24px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.likhaan-feed-tab:hover {
  color: #111827;
  background: #f9fafb;
}
.likhaan-feed-tab.active {
  color: #6b3118 !important; /* Clearly dark brown, not black */
  background: #f3e9e5 !important; 
  font-weight: 500 !important;
}
.likhaan-feed-tab.active:hover {
  color: #6b3118;
  background: #f3e9e5;
}

/* Filter Dropdown */
.likhaan-filter-dropdown-container {
  position: relative;
  flex-shrink: 0;
  display: flex;
}
/* Subtle fade indicator for scrollable tabs */
.likhaan-filter-dropdown-container::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 8px; /* Accounts for the 8px padding-bottom on the wrapper */
  width: 24px;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
  pointer-events: none;
  z-index: 2;
}
.likhaan-filter-trigger {
  display: flex;
  flex-direction: row; /* Horizontal on desktop */
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: none;
  border-left: 1px solid #eaeaea;
  padding: 0 12px 0 16px;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: #6b3118; /* Matching dark brown theme text */
  height: 100%;
}
.likhaan-filter-trigger svg {
  stroke: currentColor;
}
.likhaan-filter-trigger:hover, .likhaan-filter-trigger[aria-expanded="true"] {
  opacity: 0.8;
}
.likhaan-filter-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 20px;
  width: max-content;
  max-width: calc(100vw - 32px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.likhaan-filter-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.likhaan-filter-section {
  margin-bottom: 20px;
}
.likhaan-filter-section:last-child {
  margin-bottom: 0;
}
.likhaan-filter-section.hidden {
  display: none;
}
.likhaan-filter-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #888;
  margin-bottom: 12px;
}
.likhaan-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Filter Chips (inside dropdown) */
.likhaan-filter-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  color: #555;
  background: #fff;
  margin: 0;
}
.likhaan-filter-chip:hover {
  border-color: #999;
}
.likhaan-filter-chip:has(input:checked) {
  background: #000;
  color: #fff;
  border-color: #000;
}
.likhaan-filter-chip input {
  display: none;
}
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.02em;
}
.likhaan-feed-tab:hover {
  color: #333;
}
.likhaan-feed-tab.active {
  color: #000;
  font-weight: 600;
  border-bottom-color: #B4804F;
}

@media screen and (max-width: 749px) {
  .likhaan-feed-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0;
  }
  .likhaan-feed-tabs::-webkit-scrollbar {
    display: none;
  }
  .likhaan-feed-header-wrapper {
    gap: 0;
  }
  .likhaan-filter-trigger {
    flex-direction: column; /* Vertical on mobile */
    gap: 4px;
    padding: 0 8px 0 12px;
    font-size: 11px;
    margin-left: 0;
  }
  .likhaan-feed-tab {
    padding: 6px 12px;
    font-size: 13px;
  }
}

.likhaan-masonry-grid {
  column-count: 2;
  column-gap: 10px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .likhaan-masonry-grid {
    column-count: 5;
    column-gap: 10px;
  }
}

.likhaan-post-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  
  /* CSS Masonry Properties */
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .likhaan-post-card {
    margin-bottom: 10px;
  }
}

.likhaan-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

.likhaan-post-image-wrapper {
  width: 100%;
}

.likhaan-post-image, .placeholder-svg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.likhaan-post-info {
  padding: 8px 10px;
}

/* Caption removed from cards */

.likhaan-post-interactions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.likhaan-like-btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.likhaan-like-btn svg {
  fill: currentColor;
}

.likhaan-like-btn.liked {
  color: #e53e3e;
}
