/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 26 2025 | 17:16:54 */
/* === Team Colors Drawer (square tab + slideout) === */
:root { --tc-z: 999999; --tc-primary: #AA1410; }

/* square tab, flush to the right edge */
.tc-floating-btn {
  position: fixed;
  right: 0;               /* flush */
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--tc-z);
  width: 56px; height: 56px;
  border: 0;
  border-radius: 10px 0 0 10px;   /* only left corners rounded */
  background: var(--tc-primary);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: -10px 0 24px rgba(0,0,0,.22);
  cursor: pointer;
}

/* nice focus rings (optional) */
.tc-floating-btn:focus-visible,
.tc-tab:focus-visible{
  outline: 2px solid #d04a45;  /* lighter ring of #AA1410 */
  outline-offset: 2px;
}

/* subtle hover (optional) */
.tc-floating-btn:hover{ filter: brightness(1.05); }

.tc-floating-btn:active { transform: translateY(-50%) scale(.98); }
.tc-floating-btn .tc-icon { font-size: 22px; line-height: 1; }

/* overlay + drawer */
.tc-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.25);
  z-index: calc(var(--tc-z) - 1);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.tc-overlay.open { opacity: 1; pointer-events: auto; }

.tc-drawer {
  position: fixed; right: 0; top: 0; height: 100vh;
  width: min(420px, 92vw);
  z-index: var(--tc-z);
  transform: translateX(110%);
  transition: transform .25s ease;
}
.tc-drawer.open { transform: translateX(0); }

.tc-card {
  background: #fff; height: 100%; display: flex; flex-direction: column;
  box-shadow: -16px 0 36px rgba(0,0,0,.20);
  border-left: 1px solid #e9e9e9;
}

/* header + tabs */
.tc-header {
  position: sticky; top: 0; z-index: 1;
  background: #fff; border-bottom: 1px solid #eee;
  padding: 12px 14px 6px;
}
.tc-top {
  display: flex; align-items: center; gap: 8px;
}
.tc-title { font: 700 16px/1.2 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }
.tc-close { margin-left: auto; background: transparent; border: 0; font-size: 22px; cursor: pointer; }

.tc-tabs {
  display: flex; gap: 6px; padding-top: 8px; overflow-x: auto;
  scrollbar-width: thin;
}
.tc-tab {
  border: 1px solid #e3e3e3; background: #fafafa; color: #222;
  border-radius: 8px; padding: 6px 10px; font: 600 12px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  white-space: nowrap; cursor: pointer;
}

.tc-tab:hover{
	background: var(--tc-primary);
	opacity: 0.9;
}
.tc-tab[aria-selected="true"] {  background: var(--tc-primary); color: #fff; border-color: #111; }

.tc-body { padding: 10px 14px 18px; overflow: auto; }

/* team sections */
.tc-team {
  font: 700 13px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  margin: 14px 0 8px; padding-top: 6px; border-top: 1px dashed #e8e8e8;
}
.tc-swatches {
  display: grid; grid-template-columns: 26px 1fr; column-gap: 10px; row-gap: 8px;
}
.tc-swatch {
  width: 26px; height: 26px; border-radius: 6px; border: 1px solid rgba(0,0,0,.12);
}
.tc-hex {
  align-self: center; font: 500 12px/1.1 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  color: #333; cursor: pointer;
}
.tc-hex:hover { text-decoration: underline; }

/* optional: on small screens keep it at the side but a bit lower */
@media (max-width: 768px) {
  .tc-floating-btn { top: 60%; }
}

:root {
  --tc-z: 999999;
  --tc-primary: #AA1410;            /* your primary */
}

/* make sure the button uses your primary */
.tc-floating-btn { background: var(--tc-primary); }

/* Static text bubble that explains the button.
   Always visible - uses aria-label content */
.tc-floating-btn::after{
  content: attr(aria-label);
  position: absolute;
  right: 68px;                      /* 56px tab + 12px gap */
  top: 50%;
  transform: translateY(-50%);      /* removed translateX - always in final position */
  background: var(--tc-primary);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font: 700 12px/1 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  opacity: 1;                       /* always visible */
  visibility: visible;              /* always visible */
  pointer-events: none;             /* don't interfere with interactions */
  z-index: calc(var(--tc-z) + 1);
}

/* Static arrow pointing to the tab - always visible */
.tc-floating-btn::before{
  content: "";
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: var(--tc-primary);
  opacity: 1;                       /* always visible */
  visibility: visible;              /* always visible */
}

/* Optional: hide tooltip on very small screens */
@media (max-width: 768px){
  .tc-floating-btn::before,
  .tc-floating-btn::after{ display: none; }
}