html {
/* 	scroll-behavior: smooth; */
scroll-behavior: auto;
}

body
{
    background: #f9fafa !important;
}


/* BrandCat.dev theme extensions */
:root {
  --bcdev-hero-bg: #f9fafa;

  
  --bcdev-hero-text-color: #1e2d3d;
  --bcdev-hero-subtext-color: #2f4154;

  --bcdev-search-shadow: rgba(0,0,0,0.08);
  --bcdev-card-shadow: rgba(0,0,0,0.06);
  --bcdev-card-shadow-hover: rgba(0,0,0,0.10);

  --bcdev-pill-bg: #f0f3f5;
  --bcdev-pill-text: #354b61;
  
  --bc-link-color: #3a3a3a;
  
  --bc-action-color: #f6c445;  ;
  --bc-action-color-hover: #ffcf4f;  
  
  
  --bc-font-color: #1f1f1f;
}


.container
{
    background: #f9fafa;
}


a
{
  color: var(--bc-link-color);
}

.bc-link
{
     color: var(--bc-link-color) !important;
}

a.top-menu-nav {
  text-decoration: none;
}

a.top-menu-nav:hover {
  text-decoration: none;
}

.bc-action-link
{
    color: var(--bc-action-color) !important;
}

/* ---------------------------------------------------------
   Brandinium / BrandCat.dev – SaaS Landing Styling
   Cleaned & Deduplicated
---------------------------------------------------------- */


/* =========================================================
   ========== HERO SECTION ==========
========================================================= */

.bcdev-hero {
    padding: 120px 20px 40px;
    background-color: #f9fafa;
}

.bcdev-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--bcdev-hero-text-color);
}

.bcdev-hero-subtitle {
    font-size: 18px;
    color: var(--bcdev-hero-subtext-color);
    margin-bottom: 35px;
}

.bcdev-hero .lottie-hero {
    height: 200px;
}


/* =========================================================
   ========== SEARCH BAR ==========
========================================================= */

.bcdev-search-form {
    
    background: var(--bc-panel-bg-color);
    border-radius: 12px;
    padding: 8px;
    gap: 10px;
    box-shadow: 0 4px 15px var(--bcdev-search-shadow);
    
    display: flex;
    gap: 10px;
    width: 100%;
    margin: 0 auto 32px auto;
    
}

.bcdev-main-page
{
    max-width: 680px;
}



/* =========================================================
   ========== FILTER TOGGLE PILLS ==========
========================================================= */

.bcdev-filters {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.bcdev-pill {
    cursor: pointer;
    user-select: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f3f5;
    color: #333;
    transition: all 0.15s ease;
}

.bcdev-pill input {
    display: none;
}

.bcdev-pill.active {
    background: var(--bc-action-color);     /* BrandCat yellow */
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.bcdev-pill:hover {
    transform: translateY(-2px);
}


/* ================================================
   BrandCat.dev – Mini Yellow CTA Button
   (for toggle actions, like View Results)
=================================================== */

.bcdev-cta-mini {
    background: var(--bc-action-color);          /* BrandCat yellow */
    color: #1f1f1f;
    padding: 4px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition:
        background 0.15s ease,
        transform 0.12s ease,
        box-shadow 0.15s ease;
}

.bcdev-cta-mini:hover {
    background: var(--bc-action-color-hover);
    transform: translateY(-1px);
/*     box-shadow: 0 3px 8px rgba(0,0,0,0.12); */
}

.bcdev-cta-mini:active {
    transform: translateY(0);
/*     box-shadow: 0 1px 4px rgba(0,0,0,0.10); */
}

.bcdev-cta-mini:disabled {
    background: #e8d08f;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}



/* =========================================================
   ========== STATIC DISPLAY PILLS (optional) ==========
========================================================= */

.bcdev-pill-row {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}


/* =========================================================
   ========== DATABASE SECTION ==========
========================================================= */

.bcdev-filter-section {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.bcdev-filter-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #1e2d3d;
}

.bcdev-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 40px;
    padding-left: 10px;
    margin-bottom: 20px;
}

.bcdev-filter-group label {
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

.bcdev-filter-group input {
    margin-right: 8px;
}

.bcdev-filter-group label.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}


/* =========================================================
   ========== BUTTONS (BrandCat Yellow CTA) ==========
========================================================= */

/* Base reset */
.btn,
.bcdev-search-btn {
    border: none !important;
    outline: none !important;
    font-weight: 600;
    border-radius: 10px;
    transition:
        background 0.15s ease,
        transform 0.12s ease,
        box-shadow 0.15s ease;
}

/* Primary */
.bcdev-search-btn,
.btn-primary {
    background: var(--bc-action-color);     /* #f6c445 */
    color: #1f1f1f;
    padding: 0.65rem 1.4rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Hover */
.bcdev-search-btn:hover,
.btn-primary:hover {
    background: var(--bc-action-color-hover); /* #ffcf4f */
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

/* Active */
.bcdev-search-btn:active,
.btn-primary:active {
    transform: translateY(1px);
    background: var(--bc-action-color);
    box-shadow: 0 1px 4px rgba(0,0,0,0.10);
}

/* Focus */
.bcdev-search-btn:focus,
.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(255, 231, 150, 0.45);
}

/* Disabled */
.bcdev-search-btn:disabled,
.btn-primary:disabled {
    background: #e8d08f;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}






/* ============================================================
   Brandinium.com - HEADER LINK COLOR OVERRIDES
   ============================================================ */

.header_nav
{
    background: #f9fafa;
}

.header_nav .navbar-nav .nav-item a.top-menu-nav {
    color: var(--bc-link-color) !important;
    font-weight: 500;
    text-decoration: none;
    
}

.header_nav .navbar-nav .nav-item a.top-menu-nav:hover {
    color: var(--bc-link-color) !important;
    text-decoration: none;
}

/* For the BrandCat.io link in the menu */
.header_nav .navbar-nav .nav-item a strong {
    color: var(--bc-link-color) !important;
}


#footer a 
{ 
    color: var(--bc-link-color) !important; 
    text-decoration: none; font-weight: 500;     
} 

#footer a:hover 
{ 
    color: var(--bc-link-color) !important; t
    ext-decoration: underline; 
    
} /* Optional: footer section titles (h6) can be darker for contrast */ 

#footer h6 
{ 
    color: var(--bc-font-color); 
    font-weight: 700;     
}







/* ----------------------------------------------
 * Generated by Animista on 2025-11-28 23:32:55
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-horizontal-bottom
 * ----------------------------------------
 */
@-webkit-keyframes flip-horizontal-bottom {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
}
@keyframes flip-horizontal-bottom {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(-180deg);
            transform: rotateX(-180deg);
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-11-28 23:34:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

.flip-horizontal-top {
	-webkit-animation: flip-horizontal-top 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: flip-horizontal-top 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}


.flip-horizontal-bottom 
{
	-webkit-animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: flip-horizontal-bottom 0.4s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

/**
 * ----------------------------------------
 * animation flip-horizontal-top
 * ----------------------------------------
 */
@-webkit-keyframes flip-horizontal-top {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}
@keyframes flip-horizontal-top {
  0% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
  }
  100% {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}


/* Default: animated (desktop) */
.brandinium-hero-logo {
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .flip-horizontal-top,
    .flip-horizontal-bottom {
        animation: none !important;
        -webkit-animation: none !important;

        /* Force the FINAL, correct orientation */
        transform: rotateX(180deg) !important;
        -webkit-transform: rotateX(180deg) !important;
    }
}




.flip-2-hor-top-2 {
	-webkit-animation: flip-2-hor-top-2 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	        animation: flip-2-hor-top-2 0.5s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}


/* ----------------------------------------------
 * Generated by Animista on 2025-11-28 23:35:8
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flip-2-hor-top-2
 * ----------------------------------------
 */
@-webkit-keyframes flip-2-hor-top-2 {
  0% {
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: translateY(-100%) rotateX(180deg);
            transform: translateY(-100%) rotateX(180deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}
@keyframes flip-2-hor-top-2 {
  0% {
    -webkit-transform: translateY(0) rotateX(0);
            transform: translateY(0) rotateX(0);
    -webkit-transform-origin: 50% 0%;
            transform-origin: 50% 0%;
  }
  100% {
    -webkit-transform: translateY(-100%) rotateX(180deg);
            transform: translateY(-100%) rotateX(180deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
}




.bcdev-social-footer a {
    display: inline-block;
    margin-right: 12px;
    font-size: 22px;
    color: #444;                 /* neutral grey */
    transition: color 0.15s ease, transform 0.15s ease;
}

.bcdev-social-footer a:hover {
    color: #f6c445;              /* BrandCat yellow highlight */
    transform: translateY(-2px); /* subtle lift */
}


.result-box h4 img {
    vertical-align: middle;
    margin-top: -3px;
}








/* Smooth slide-down section */
.bcdev-slide {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}

.bcdev-slide.open {
    max-height: 2000px; /* high enough to handle results */
    opacity: 1;
}

/* Arrow rotation */
.bcdev-toggle-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.bcdev-toggle-arrow.open {
    transform: rotate(180deg);
}

/* Light pill-style info badge */
.bcdev-pill-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 0.75rem;
    background: var(--bcdev-pill-bg);
    color: var(--bcdev-pill-text);
    border-radius: 10px;
    margin-left: 8px;
}



.bcdev-toggle-hint {
    font-size: 0.95rem;           /* bigger */
    color: #2f4154;               /* hero-subtext color */
    font-weight: 500;             /* more visible */
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}
.bcdev-toggle-hint .arrow {
    font-size: 1rem;
}



/* Pill used for expand/collapse hint */
.bcdev-pill-hint {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.78rem;
    background: var(--bcdev-pill-bg);
    color: var(--bcdev-pill-text);
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.bcdev-pill-hint:hover {
    background: #e2e5e8; /* slightly darker grey */
    transform: translateY(-1px);
}



.bcdev-toggle-header {
    padding: 10px 0;
    border-radius: 10px;
    transition: background-color 0.15s ease;
}

.bcdev-toggle-header:hover {
    background-color: rgba(0, 0, 0, 0.03); /* ultra-light tint */
}



.bcdev-hover-panel {
    transition: background-color 0.2s ease;
    border-radius: 12px; /* matches your design */
    cursor: pointer;
}

.bcdev-hover-panel:hover {
    background-color: rgba(159,192,229, 0.08); /* light BrandCat sky-blue */
    cursor: pointer;
}


.bcdev-card-body
{
   cursor: default;
}




/* Default: collapsed mode → clickable */
.bcdev-collapsed {
    cursor: pointer;
}

.bcdev-collapsed:hover {
    background-color: rgba(159, 192, 229, 0.08); /* brand tint */
}

/* Expanded mode → NOT clickable */
.bcdev-expanded {
    cursor: default;
    background-color: transparent; /* remove hover effect */
}

/* Disable hover tint entirely in expanded mode */
.bcdev-expanded:hover {
    background-color: transparent;
    cursor: default;
}




.bcdev-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.04);
}


.bcdev-section:hover {
    box-shadow: 0px 10px 26px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s ease;
}


.bcdev-search-area 
{
    width: 100% !important;   /* guaranteed fix */
    display: block;
    
}


.bcdev-search-form
{
    display: flex;
    flex: 1;
    gap: 10px;
}

.bcdev-search-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 64px; 
}

.bcdev-logo {
    height: 45px;
    flex-shrink: 0;
    display: relative;
/*     margin-right: 20px; */
    margin-top: -23px;
    
}

.bcdev-search-form-wrap {
    display: flex;
    align-items: center;
    flex: 1;
}

.bcdev-search-input {
    flex: 1;
    padding: 10px 18px; /* Reduce top/bottom from 12px to 10px */
    border: 1px solid #dce2ea;
    border-radius: 12px;
    font-size: 1.05rem;
    background: #fff;
    transition: border-color 0.2s ease;
    height: 45px; /* Match logo height exactly */
    line-height: 1.4; /* Tighter line-height */
    box-sizing: border-box; /* Include border in height calculation */
    
    border: none !important;
/*     font-size: 18px; */
/*     padding-left: 16px; */
/*     background: transparent; */
/*     color: var(--bc-font-color);     */
}




.bcdev-search-input::placeholder {
    color: var(--bc-light-font-color);
}

.bcdev-search-input:focus {
    outline: none !important;
    box-shadow: none !important;
}



.bcdev-stats-bar {
    margin-top: 1rem;
    margin-bottom: 2.2rem;   /* NEW: nice breathing space */
    padding: 10px 18px;
    background: rgba(0,0,0,0.03);
    border-radius: 10px;
    text-align: center;
    position: relative;
/*     display: inline-block; */

}

.bcdev-stat-item {
    position: relative;
    display: inline-block; /* REQUIRED for Hint.css inside flex environments */
    margin: 0 12px;
    white-space: nowrap;
    cursor: default;
}


.bcdev-stat-icon {
    font-weight: bold;
    margin-right: 4px;
}





.tm-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}

.tm-class-pill {
    display: inline-flex;
    align-items: center;

    /*background: var(--bc-action-color); */
    /*#f0f0f0*/;   /* soft blue */
    color: #111;        /* deep professional blue */
    
    border-radius: 6px;
    padding: 4px 10px;

    font-size: 13px;
    font-weight: bold;


    transition: background 0.15s ease;
    cursor: default;
}


.tm-class-code {
    font-weight: 700;
    margin-right: 6px;
    color: #0d3ea8;
}

.tm-class-title {
    font-weight: 500;
}



.tm-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.tm-registered {
    background: #d4edda;
    color: #155724;
}

.tm-pending {
    background: #fff3cd;
    color: #856404;
}

.tm-dead {
    background: #f8d7da;
    color: #721c24;
}


.tm-details-btn {
    background: #2c3e50 !important;   /* deep gray-blue */
    color: #fff !important;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.tm-details-btn:hover {
    background: #1a252f;
    color: #fff !important;
}





.bcdev-copy-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: 6px;
    opacity: 0.5;
}

.bcdev-copy-btn:hover {
    opacity: 1;
}




.domain-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
    background: white;
    transition: background 0.15s;
}

.domain-row:hover {
    background: #fafafa;
}

.domain-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.domain-name {
    font-size: 16px;
    font-weight: 600;
}

.domain-status {
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}

.domain-status.free {
    background: #d4f9d4;
    color: #1a8a1a;
}

.domain-status.taken {
    background: #ffd6d6;
    color: #bb3030;
}

.domain-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-copy, .btn-open {
    padding: 6px 10px;
    border: none;
    background: #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
}

.btn-copy:hover, .btn-open:hover {
    background: #e5e5e5;
}




.status-icon {
    width: 22px;
    font-size: 16px;
    margin-right: 8px;
}

.status-icon.free {
    color: #28a745;
}

.status-icon.taken {
    color: #dc3545;
}




.social-grid {
    display: flex;
    flex-direction: column;
}

.social-item {
    background: #fff;
}

.social-icon {
    font-size: 1.4rem;
}

.status-taken {
    color: #c0392b;
    font-weight: 600;
}

.status-free {
    color: #27ae60;
    font-weight: 600;
}

.status-unknown {
    color: #999;
}



.brandcat-top-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    
    font-size: 14px;
    font-weight: 600;
    color: #222;
    
    text-decoration: none;
    opacity: 0.9;
}

.brandcat-top-cta:hover {
    color: #222;
    opacity: 1;
}

.brandcat-icon {
    width: 16px;
    height: 16px;
}


.start-monitoring {
    font-weight: 500;
    color: #1f6feb; /* subtle link blue */
}
.start-monitoring:hover {
    text-decoration: underline;
}



.bcdev-brandcat-banner {
    background: #fff7d6; /* soft BrandCat yellow */
    border: 1px solid #f1dc9b;
    border-radius: 10px;
    padding: 14px 18px;
}

.bcdev-brandcat-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #f6c445;
    border: 1px solid #e6b93a;
    color: #000;
    font-weight: 600;

    border-radius: 8px;
    padding: 8px 14px;
    text-decoration: none;

    transition: background 0.15s ease,
                box-shadow 0.15s ease,
                transform 0.05s ease;
}

.bcdev-brandcat-btn:hover {
    background: #ffd766;
    color: #000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.bcdev-brandcat-btn:active {
    transform: translateY(1px);
}



/* Brandinium hero logo – responsive sizing */
.brandinium-hero-logo
{
    height: clamp(140px, 20vw, 260px);
    max-width: 100%;
}

/* Slightly smaller on typical laptops */
@media (max-width: 1366px)
{
    .brandinium-hero-logo
    {
        height: clamp(120px, 18vw, 220px);
    }

}

/* Laptop / HiDPI edge case (≈1600–1800px wide) */
@media (min-width: 1600px) and (max-width: 1800px)
{
    .brandinium-hero-logo
    {
        height: 210px;
    }
}


/* Tablets */
@media (max-width: 992px)
{
    .brandinium-hero-logo
    {
        height: 180px;
    }
}

/* Phones */
@media (max-width: 576px)
{
    .brandinium-hero-logo
    {
        height: 140px;
    }
}


/* Short viewport height safeguard */
@media (max-height: 660px)
{
    .brandinium-hero-logo
    {
        height: 160px;
    }

    .bcdev-hero
    {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .bcdev-hero-title
    {
        margin-top: 0.75rem;
    }
}


/* Short viewport height (laptops, browser chrome, zoom) */
@media (max-height: 700px)
{
    .bcdev-hero
    {
        padding: 0px 20px 30px;
    }
}


@media (max-height: 620px)
{
    .bcdev-hero
    {
        padding: 0px 16px 24px;
    }
}


/* Phones: remove decorative hero logo */
@media (max-width: 576px)
{
    .brandinium-hero-logo
    {
/*         display: none; */
/*         margin-top: 30px !important; */
/*         padding-top: 30px; */
    }
    
    
}



/* Phones: remove decorative hero logo */
@media (max-width: 576px)
{

    
    .bcdev-hero
    {
        padding: 00px 16px 24px;
    }
    
    
    .bcdev-hero-title
    {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    
}



.bcdev-doc-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bcdev-doc-intro {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.bcdev-doc h3 {
    font-size: 16px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 10px;
    color: #222;
}

.bcdev-doc p {
    line-height: 1.6;
    color: #333;
}

.bcdev-doc ul {
    padding-left: 18px;
    margin-top: 10px;
}

.bcdev-doc ul li {
    margin-bottom: 6px;
}

.bcdev-doc-note {
    margin-top: 30px;
    color: #555;
}

.bcdev-doc-back {
    margin-top: 50px;
}







/*** For brandinium static pages */
.bcdev-risk-notice {
    color: #9c6b00;
    background: #fff6e0;
    border: 1px solid #ffe0a3;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.95rem;
    display: inline-block;
}



.bcdev-supported-offices {
    opacity: 0.85;
}

.bcdev-flags-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.bcdev-flags-row img {
    height: 22px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.bcdev-flags-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
}



.bcdev-mark {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.bcdev-mark-meta {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.bcdev-mark-meta.center {
    display: flex;
    justify-content: center !important;
    gap: 12px;
    align-items: center;
}

.bcdev-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
}

.bcdev-status-dead {
    background: #f8d7da;
    color: #842029;
}

.bcdev-source {
    font-size: 0.75rem;
    color: #6c757d;
}


.bcdev-source img {
    height: 22px;
    width: auto;
/*     filter: grayscale(100%); */
    opacity: 0.7;
    transition: all 0.2s ease;
}


.bcdev-flags-row img:hover {
    filter: grayscale(0%);
    opacity: 1;
}


.bcdev-supported-offices-inline img {
    height: 18px;
    opacity: 0.75;
    margin-right: 6px;
    vertical-align: middle;
}

.bcdev-supported-offices-inline img:hover {
    opacity: 1;
}


.bcdev-mark-meta img,
.bcdev-supported-offices-inline img {
    height: 16px;
    opacity: 0.85;
    margin-left: 6px;
    vertical-align: middle;
}

.bcdev-mark-meta-center img
{
    height: 16px;
    opacity: 0.85;
    margin-left: 6px;
    vertical-align: middle;
}





.bcdev-context-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}


.bcdev-topbar
{
    margin-top: 10px !important;
    padding-top: 5px !important;
}

/* ============================================================
 * BUTTONS
 * ============================================================ */



/* CTA Button Improvements */
.bcdev-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bcdev-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #FDB813;
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    border: none;  /* ← Add this */
    outline: none; /* ← And this for good measure */
}

.bcdev-cta-btn:hover {
    background: #f4c724;
/*     transform: translateY(-2px); */
    color: #212529;
    text-decoration: none; /* ← Add this too */
}

.bcdev-cta-btn:focus {
    outline: none; /* ← Removes focus outline */
    box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.3); /* ← Optional: subtle focus indicator for accessibility */
}

.bcdev-cta-subtext {
    margin-top: 12px;
    color: #6c757d;
    font-size: 14px;
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
    .bcdev-cta-btn {
        padding: 12px 24px;
        font-size: 15px;
        max-width: 90%;
        white-space: normal;
        line-height: 1.4;
    }
    
    .bcdev-cta-subtext {
        font-size: 13px;
        padding: 0 20px;
    }
}


.bcdev-card a
{
    color: var(----bc-action-color) !important;
}

.card-body a
{
    color: var(----bc-action-color) !important;
}

.card-body i
{
    color: var(----bc-action-color) !important;
}


.bcdev-breadcrumbs a
{
    color: var(----bc-action-color) !important;
}


.bcdev-badges
{   
    background-color: var(--bc-link-color);   
}





.bcdev-plates
{
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 80px;
    margin: 80px auto 40px;
    max-width: 1100px;
    text-align: center;
}

.bcdev-plate
{
    margin-top: 80px;
    padding: 0 20px;
    margin-bottom: 80px;
}

.bcdev-plate i
{
    font-size: 28px;
    color: #1f6fff; /* BrandCat blue */
    margin-bottom: 14px;
}

.bcdev-plate h3
{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e2a36;
}

.bcdev-plate p
{
    font-size: 15px;
    line-height: 1.6;
    color: #5f6b76;
    max-width: 420px;
    margin: 0 auto 14px;
    margin-bottom: 40px;    
}

.bcdev-plate a
{
    font-size: 15px;
    font-weight: 500;
/*     color: #1f6fff; */
    text-decoration: none;
}

.bcdev-plate a:hover
{
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px)
{
    .bcdev-plates
    {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


.card {
    border-top: 2px solid transparent;
}

.card:nth-child(6n+1),
.card:nth-child(6n+2),
.card:nth-child(6n+3) {
    border-top-color: rgba(0,0,0,0.03);
}


/*.card .category {
    font-size: 0.75rem;
    opacity: 0.7;
}

.card h6 a {
    font-weight: 600;
}*/




.badge-meta {
    background: #f3f4f6;      /* light neutral gray */
    color: #374151;           /* dark gray text */
    font-weight: 500;
    border-radius: 6px;
    padding: 0.25em 0.55em;
}

.badge-positive {
    background: #e7f5ee !important;      /* VERY soft green */
    color: #0f5132;
}

.badge-neutral {
    background: #eef2f7;      /* soft blue-gray */
    color: #334155;
}



.refine-toggle
{
    padding: 6px 10px;          /* bigger click area */
    font-weight: bold !important;
    font-size: 14pt  !important;
}

.refine-toggle .refine-icon
{
    font-size: 0.95rem;         /* slightly bigger chevron */
}

.refine-icon
{
    transition: transform 0.2s ease;
}

.refine-icon.rotate
{
    transform: rotate(180deg);
}


.categories-wrap
{
    max-width: 1100px;   /* tune: 1000–1200px */
}

.show-categories-btn
{
    font-size: 12pt;
    font-weight: bold !important;
}

.text-left
{
    text-align: left !important;
}







/* CTA Cards */
.cta-cards-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #FDB813;
}

.cta-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FDB813 0%, #f4a100 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s ease;
    gap: 8px;
    pointer-events: none;
}

.cta-card:hover .cta-link {
/*     color: #FDB813; */
    color: #3f3f3f; 
    gap: 12px;
}

.cta-link i {
    transition: transform 0.2s ease;
}

.cta-card:hover .cta-link i {
    transform: translateX(3px);
}

@media (max-width: 767px) {
    .cta-card {
        padding: 24px;
        margin-bottom: 16px;
    }

    .cta-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .cta-card h3 {
        font-size: 18px;
    }
}







/* Secondary CTA - Subtle, Contextual */
.bcdev-secondary-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.bcdev-secondary-cta-prompt {
    color: #495057;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 500;
}

.bcdev-secondary-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: transparent;
    color: #212529;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.bcdev-secondary-cta-btn:hover {
    border-color: #FDB813;
    color: #3f3f3f;
    background: rgba(253, 184, 19, 0.05);
/*     transform: translateY(-1px); */
}

.bcdev-secondary-cta-btn i {
    transition: transform 0.2s ease;
}

.bcdev-secondary-cta-btn:hover i {
    transform: translateX(3px);
}

.bcdev-secondary-cta-subtext {
    margin-top: 8px;
    color: #6c757d;
    font-size: 13px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .bcdev-secondary-cta-wrapper {
        padding: 16px;
    }
    
    .bcdev-secondary-cta-prompt {
        font-size: 15px;
    }
    
    .bcdev-secondary-cta-btn {
        padding: 10px 24px;
        font-size: 15px;
    }
    
    .bcdev-secondary-cta-subtext {
        font-size: 12px;
        padding: 0 20px;
        text-align: center;
    }
}
