/* Etsy Trends Styles */
.coc-etsy-trends-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.coc-etsy-header {
    margin-bottom: 20px;
}

.coc-etsy-header-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.coc-etsy-refresh-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: #6b7280;
}

.coc-etsy-auto-update {
    color: BLACK;
    font-weight: 500;
}

.coc-etsy-separator {
    color: #d1d5db;
}

.coc-etsy-last-refresh {
    color: #6b7280;
}

.coc-etsy-trends-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

.coc-etsy-trend-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.coc-etsy-trend-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.coc-etsy-trend-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 aspect ratio */
    background: #f9fafb;
    overflow: hidden;
    flex-shrink: 0;
}

.coc-etsy-trend-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.coc-etsy-trend-item:hover .coc-etsy-trend-image img {
    transform: scale(1.05);
}

.coc-etsy-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #eff6ff;
    color: #3770ec;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    border: 1px solid #3770ec;
}

.coc-etsy-trend-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coc-etsy-trend-title {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #111827;
}

.coc-etsy-trend-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.coc-etsy-trend-title a:hover {
    color: #6366f1;
}

.coc-etsy-trend-seller {
    margin-bottom: 8px;
    font-size: 13px;
    color: #6b7280;
}

.coc-etsy-trend-seller a {
    color: #6b7280;
    text-decoration: none;
}

.coc-etsy-trend-seller a:hover {
    color: #6366f1;
}

.coc-etsy-trends-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
}

.coc-etsy-trends-empty p {
    font-size: 16px;
    margin: 0;
}

/* Pagination */
.coc-etsy-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.coc-etsy-pagination-link {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.coc-etsy-pagination-link:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #6366f1;
}

.coc-etsy-pagination-link.coc-etsy-pagination-current {
     background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
    cursor: default;
}

.coc-etsy-pagination-link.coc-etsy-pagination-current:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}

.coc-etsy-pagination-link.loading {
    opacity: 0.6;
    cursor: wait;
    pointer-events: none;
}

.coc-etsy-pagination-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.coc-etsy-loading {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 16px;
    background: #f9fafb;
    border-radius: 8px;
    margin: 20px 0;
}

.coc-etsy-pagination-dots {
    padding: 8px 4px;
    color: #9ca3af;
}

.coc-etsy-pagination-info {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .coc-etsy-trends-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .coc-etsy-trends-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .coc-etsy-trend-content {
        padding: 12px;
    }
    
    .coc-etsy-trend-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .coc-etsy-trends-grid {
        grid-template-columns: 1fr;
    }
}