/* WooCommerce Brand Widget - Frontend Styles */

.wbw-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

/* Layout: block */
.wbw-layout-block {
    flex-direction: column;
    align-items: flex-start;
}

.wbw-layout-block .wbw-brands {
    margin-top: 4px;
}

/* Label */
.wbw-label {
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

/* Brands container */
.wbw-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

/* Brand link - ortak */
.wbw-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.wbw-brand-link:hover {
    text-decoration: underline;
}

/* Layout: inline - minimal */
.wbw-layout-inline .wbw-brand-link {
    color: #0073aa;
    font-weight: 500;
}

.wbw-layout-inline .wbw-brand-link:hover {
    color: #005177;
    text-decoration: underline;
}

/* Layout: badge */
.wbw-layout-badge .wbw-brand-link {
    background-color: #f0f4ff;
    color: #2563eb;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.875em;
    font-weight: 600;
    border: 1px solid #dbeafe;
    text-decoration: none;
}

.wbw-layout-badge .wbw-brand-link:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* Layout: card */
.wbw-layout-card .wbw-brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    border: 1.5px solid #e5e7eb;
    text-decoration: none;
    min-width: 140px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.wbw-layout-card .wbw-brand-link:hover {
    border-color: #0073aa;
    color: #0073aa;
    box-shadow: 0 4px 12px rgba(0,115,170,0.15);
    transform: translateY(-1px);
    text-decoration: none;
}

.wbw-brand-arrow {
    font-size: 1.1em;
    transition: transform 0.2s ease;
    opacity: 0.5;
}

.wbw-layout-card .wbw-brand-link:hover .wbw-brand-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Logo */
.wbw-brand-logo {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

/* No brand */
.wbw-no-brand {
    color: #999;
    font-style: italic;
    font-size: 0.9em;
}
