/* =============================================
   Transylvania Delights – All Brands Grid
   ============================================= */

.td-brands-grid {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* Column helpers */
.td-brands-cols-1 { grid-template-columns: repeat(1, 1fr); }
.td-brands-cols-2 { grid-template-columns: repeat(2, 1fr); }
.td-brands-cols-3 { grid-template-columns: repeat(3, 1fr); }
.td-brands-cols-4 { grid-template-columns: repeat(4, 1fr); }
.td-brands-cols-5 { grid-template-columns: repeat(5, 1fr); }
.td-brands-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media ( max-width: 900px ) {
    .td-brands-cols-5,
    .td-brands-cols-6 { grid-template-columns: repeat(3, 1fr); }
}

@media ( max-width: 640px ) {
    .td-brands-cols-3,
    .td-brands-cols-4,
    .td-brands-cols-5,
    .td-brands-cols-6 { grid-template-columns: repeat(2, 1fr); }
}

@media ( max-width: 400px ) {
    .td-brands-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Card */
.td-brands-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 1.25rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    gap: 0.65rem;
}

.td-brands-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    transform: translateY(-2px);
    border-color: #c8a96e; /* warm gold accent – adjust to your brand */
    text-decoration: none;
    color: inherit;
}

/* Logo area */
.td-brands-logo {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.td-brands-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Placeholder initials bubble */
.td-brands-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f3ede3;
    color: #7a5230;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Brand name */
.td-brands-name {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

/* Brand description */
.td-brands-description {
    font-size: 0.8rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Product count */
.td-brands-count {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Notice / error text */
.td-brands-notice {
    padding: 1rem;
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    color: #92400e;
    font-size: 0.9rem;
}

/* Editor placeholder */
.td-brands-editor-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    text-align: center;
    gap: 0.5rem;
}

.td-brands-editor-icon {
    font-size: 2.5rem;
    line-height: 1;
}
