/* ============================================
   BRAND LOGOS — CSS-Only Brand Representations
   Thomas Super Store

   Clean CSS text-based representations that
   capture the essence of each brand's typography.
   ============================================ */

/* === Base Brand Logo Styles === */
.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
}

/* ============================================
   MATTEL
   Red bold uppercase text, wide tracking
   ============================================ */
.brand-logo-mattel {
    font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #EE0024;
    position: relative;
}
.brand-logo-mattel--white {
    color: #FFFFFF;
}
.brand-logo-mattel--large {
    font-size: 36px;
}
.brand-logo-mattel--medium {
    font-size: 24px;
}
.brand-logo-mattel--small {
    font-size: 16px;
}

/* ============================================
   FISHER-PRICE
   Rounded, friendly feel with distinctive
   blue-orange-green arc motif
   ============================================ */
.brand-logo-fisherprice {
    font-family: 'Trebuchet MS', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.brand-logo-fisherprice__arc {
    display: block;
    width: 100%;
    height: 6px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(90deg, #0072CE 0%, #0072CE 33%, #F7941D 33%, #F7941D 66%, #00A651 66%, #00A651 100%);
    margin-bottom: 4px;
}
.brand-logo-fisherprice__text {
    display: flex;
    align-items: center;
    gap: 4px;
}
.brand-logo-fisherprice__fisher {
    color: #0072CE;
}
.brand-logo-fisherprice__dash {
    color: #F7941D;
    font-weight: 400;
}
.brand-logo-fisherprice__price {
    color: #00A651;
}
.brand-logo-fisherprice--white .brand-logo-fisherprice__fisher,
.brand-logo-fisherprice--white .brand-logo-fisherprice__dash,
.brand-logo-fisherprice--white .brand-logo-fisherprice__price {
    color: #FFFFFF;
}
.brand-logo-fisherprice--large .brand-logo-fisherprice__text {
    font-size: 28px;
}
.brand-logo-fisherprice--large .brand-logo-fisherprice__arc {
    height: 8px;
    margin-bottom: 6px;
}
.brand-logo-fisherprice--medium .brand-logo-fisherprice__text {
    font-size: 20px;
}
.brand-logo-fisherprice--small .brand-logo-fisherprice__text {
    font-size: 14px;
}
.brand-logo-fisherprice--small .brand-logo-fisherprice__arc {
    height: 4px;
    margin-bottom: 3px;
}

/* ============================================
   BACHMANN
   Classic serif-style, dark navy blue with
   gold accent line — heritage feel
   ============================================ */
.brand-logo-bachmann {
    font-family: 'Georgia', 'Times New Roman', 'Palatino Linotype', serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #003366;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
.brand-logo-bachmann__text {
    position: relative;
    padding-bottom: 4px;
}
.brand-logo-bachmann__underline {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #C8A84E 15%, #C8A84E 85%, transparent 100%);
    margin-top: 2px;
}
.brand-logo-bachmann__subtitle {
    display: block;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    font-size: 0.35em;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #C8A84E;
    margin-top: 3px;
}
.brand-logo-bachmann--white {
    color: #FFFFFF;
}
.brand-logo-bachmann--large .brand-logo-bachmann__text {
    font-size: 32px;
}
.brand-logo-bachmann--large .brand-logo-bachmann__underline {
    height: 3px;
}
.brand-logo-bachmann--medium .brand-logo-bachmann__text {
    font-size: 22px;
}
.brand-logo-bachmann--small .brand-logo-bachmann__text {
    font-size: 15px;
}
.brand-logo-bachmann--small .brand-logo-bachmann__underline {
    height: 1.5px;
}

/* ============================================
   TAKARA TOMY
   Clean modern sans-serif, Japanese precision
   Red accent with minimal styling
   ============================================ */
.brand-logo-takaratomy {
    font-family: 'Helvetica Neue', 'Arial', 'Segoe UI', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #CC0000;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
}
.brand-logo-takaratomy__takara {
    color: #CC0000;
    font-weight: 800;
}
.brand-logo-takaratomy__divider {
    display: inline-block;
    width: 2px;
    height: 0.8em;
    background: #CC0000;
    margin: 0 6px;
    opacity: 0.5;
    border-radius: 1px;
}
.brand-logo-takaratomy__tomy {
    color: #CC0000;
    font-weight: 800;
}
.brand-logo-takaratomy--white .brand-logo-takaratomy__takara,
.brand-logo-takaratomy--white .brand-logo-takaratomy__tomy {
    color: #FFFFFF;
}
.brand-logo-takaratomy--white .brand-logo-takaratomy__divider {
    background: rgba(255,255,255,0.5);
}
.brand-logo-takaratomy--large {
    font-size: 30px;
}
.brand-logo-takaratomy--large .brand-logo-takaratomy__divider {
    width: 3px;
    margin: 0 8px;
}
.brand-logo-takaratomy--medium {
    font-size: 22px;
}
.brand-logo-takaratomy--small {
    font-size: 15px;
}
.brand-logo-takaratomy--small .brand-logo-takaratomy__divider {
    width: 1.5px;
    margin: 0 4px;
}

/* ============================================
   BRAND CARD COMPONENT
   Premium brand display card with logo,
   gradient accent, and hover state
   ============================================ */
.brand-showcase-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.brand-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.brand-showcase-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}
.brand-showcase-card__accent--mattel {
    background: linear-gradient(90deg, #EE0024, #FF4444);
}
.brand-showcase-card__accent--fisherprice {
    background: linear-gradient(90deg, #0072CE 0%, #F7941D 50%, #00A651 100%);
}
.brand-showcase-card__accent--bachmann {
    background: linear-gradient(90deg, #003366, #C8A84E, #003366);
}
.brand-showcase-card__accent--takaratomy {
    background: linear-gradient(90deg, #CC0000, #FF3333);
}
.brand-showcase-card__inner {
    padding: 32px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-top: none;
    border-radius: 0 0 16px 16px;
}
.brand-showcase-card__logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-bottom: 20px;
}
.brand-showcase-card__name {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 8px;
}
.brand-showcase-card__desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    text-align: center;
}
