.included-collection-container {
    margin-top: 2rem;
    position: relative;
}

.collection-list {
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease;
}

.included-collection-card {
    background-color: #7044ee; /* Approximate purple from screenshot */
    border-radius: 0.625rem; /* Slightly smaller radius */
    padding: 1rem 1.5rem; /* Reduced padding */
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem; /* Reduced margin */
    box-shadow: 0 0.125rem 0.5rem rgba(112, 68, 238, 0.2);
    gap: 1rem; /* Reduced gap */
}

.included-collection-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.included-collection-label {
    font-size: 0.8125rem; /* Reduced from 0.9375rem */
    font-weight: 600;
    margin-bottom: 0.5rem; /* Reduced from 0.75rem */
}

.included-collection-title {
    font-size: 1.125rem; /* Reduced from 1.375rem */
    font-weight: 800;
    margin-bottom: 0.5rem; /* Reduced from 0.75rem */
    line-height: 1.3;
}

.included-collection-desc {
    font-size: 0.875rem; /* Reduced from 0.9375rem */
    margin-bottom: 0.875rem; /* Reduced from 1.25rem */
    font-weight: 400;
    line-height: 1.4;
}

.included-collection-tags {
    display: flex;
    gap: 0.5rem; /* Reduced from 0.75rem */
    flex-wrap: wrap;
}

.included-collection-tag {
    background-color: #ffffff;
    color: #7044ee;
    padding: 0.25rem 0.75rem; /* Reduced padding */
    border-radius: 0.25rem; /* Reduced radius */
    font-size: 0.75rem; /* Reduced from 0.8125rem */
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.included-collection-action {
    flex-shrink: 0;
}

.included-collection-btn {
    background-color: #ffffff;
    color: #7044ee;
    border: none;
    padding: 0.625rem 1.5rem; /* Reduced padding */
    border-radius: 0.375rem; /* Reduced radius */
    font-size: 0.875rem; /* Reduced from 1rem */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.included-collection-btn:hover {
    opacity: 0.95;
    transform: translateY(-0.0625rem);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.collection-toggle-btn-container {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.collection-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Dark mode support if needed, adjusting gradient color */
@media (prefers-color-scheme: dark) {
    .collection-gradient-overlay {
        /* Assuming the background is dark in dark mode, adjust accordingly if needed */
        /* background: linear-gradient(to bottom, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 1) 100%); */
    }
}

.collection-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 0.875rem;
    user-select: none;
    gap: 4px;
    transition: color 0.2s;
    background-color: #fff; /* Ensure text is readable */
    padding: 4px 12px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.collection-toggle-btn:hover {
    color: #7044ee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
