/* quote/components/product-feed/product-feed-view.css */
/* VERSION 10.0 - Improved layout, spacing, and image height. */

:root {
    --pf-bg: #ffffff;
    --pf-border: #f0f2f5; /* Lighter border color */
    --pf-text-primary: #3d0649; /* Dark purple for titles */
    --pf-text-secondary: #4a174b; /* Lighter purple for meta text */
    --pf-text-tertiary: #9ca3af;
    --pf-hover-bg: #f9fafb;
    --pf-icon-color: #3d0649; /* Dark purple for icons */
    --pf-icon-hover-color: #ffc107; /* Accent yellow for icon hover */
}

.product-feed-view {
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
}

.product-list {
    display: flex;
    flex-direction: column;
}

.product-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 8px;
    text-decoration: none;
    border-bottom: 1px solid var(--pf-border);
    transition: background-color 0.2s ease;
}

.product-list-item:last-child {
    border-bottom: none;
}

.product-list-item:hover {
    background-color: transparent;
}

.product-list-item:hover .list-item-title {
    opacity: 0.8;
}

.list-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Reduced gap for tighter grouping of header/title */
    overflow: hidden;
    flex-grow: 1;
}

.list-item-timestamp {
    font-size: 0.7rem; /* 11.2px */
    font-weight: 500;
    color: var(--pf-text-secondary);
    opacity: 0.8;
    margin-bottom: 2px;
}

.list-item-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--pf-text-primary);
    margin: 0 0 16px 0;
    line-height: 1.4;
    transition: opacity 0.2s ease;
}

.list-item-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.75rem; /* 12px */
    font-weight: 500;
    color: var(--pf-text-secondary);
}

.list-item-meta .stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.list-item-meta .stat-item:hover {
    color: var(--pf-icon-hover-color);
}

.list-item-meta .stat-item:hover svg {
    stroke: var(--pf-icon-hover-color);
}

.list-item-meta .stat-item svg {
    stroke: var(--pf-icon-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
    position: relative;
    top: -1px;
}

.post-product-name
 {
  font-weight: 300 !important;
    color: #ddbb8b!important;
    font-size: 13px;
    line-height: 1.3;
    padding-left: 22px!important;
    padding-bottom: 10px!important;
}

.list-item-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 90px;
    background-color: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    border: solid 1px #32073505;
}

.list-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-feed-empty {
    padding: 32px 8px;
    font-size: 0.9rem;
    color: var(--pf-text-tertiary);
    text-align: center;
}