/* Brand Kit Styles */

.brand-kit-section {
    display: none;
    /* Hidden by default */
    padding-bottom: 40px;
    animation: fadeIn 0.3s ease;
}

.brand-kit-header {
    margin-bottom: 32px;
}

.brand-kit-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.brand-kit-header p {
    color: var(--gray-500);
    font-size: 16px;
}

/* Tabs */
.brand-tabs {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 32px;
}

.brand-tab {
    padding: 12px 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.brand-tab:hover {
    color: var(--gray-900);
}

.brand-tab.active {
    color: var(--purple-600);
    border-bottom-color: var(--purple-600);
}

/* Asset Content Area */
.asset-view {
    display: none;
    animation: fadeIn 0.3s ease;
}

.asset-view.active {
    display: block;
}

.asset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.asset-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-900);
}

/* New Asset Card (Add Button) */
.add-asset-card {
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--gray-50);
    color: var(--gray-500);
}

.add-asset-card:hover {
    border-color: var(--purple-400);
    background: var(--purple-50);
    color: var(--purple-600);
}

.add-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.add-text {
    font-size: 14px;
    font-weight: 500;
}

/* Asset Grid */
.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}

.asset-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.asset-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.asset-preview {
    height: 140px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.asset-info {
    padding: 16px;
}

.asset-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.asset-type {
    font-size: 12px;
    color: var(--gray-500);
}