@charset "UTF-8";
/*! Mine Theme */
/* 

1.    low level reset [and normalization styles]
2.    element defaults, [for basic typography and legibility]
3.    themes, [like light and dark modes]
4.    re-usable patterns [that might appear across multiple components]
5.    layouts [and larger page structures]
6.    [individual] components
7.    overrides and utilities

*/
@layer reset,
    default,
    themes,
    patterns,
    layouts,
    components,
    utilities;
@layer reset {
  @layer normalize {
    /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
    /* Document
       ========================================================================== */
    /**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in iOS.
     */
    html {
      line-height: 1.15; /* 1 */
      -webkit-text-size-adjust: 100%; /* 2 */
    }
    /* Sections
       ========================================================================== */
    /**
     * Remove the margin in all browsers.
     */
    body {
      margin: 0;
    }
    /**
     * Render the `main` element consistently in IE.
     */
    main {
      display: block;
    }
    /**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
    h1 {
      font-size: 2em;
      margin: 0.67em 0;
    }
    /* Grouping content
       ========================================================================== */
    /**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
    hr {
      box-sizing: content-box; /* 1 */
      height: 0; /* 1 */
      overflow: visible; /* 2 */
    }
    /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
    pre {
      font-family: monospace, monospace; /* 1 */
      font-size: 1em; /* 2 */
    }
    /* Text-level semantics
       ========================================================================== */
    /**
     * Remove the gray background on active links in IE 10.
     */
    a {
      background-color: transparent;
    }
    /**
     * 1. Remove the bottom border in Chrome 57-
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
    abbr[title] {
      border-bottom: none; /* 1 */
      text-decoration: underline; /* 2 */
      text-decoration: underline dotted; /* 2 */
    }
    /**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
    b,
    strong {
      font-weight: bolder;
    }
    /**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
    code,
    kbd,
    samp {
      font-family: monospace, monospace; /* 1 */
      font-size: 1em; /* 2 */
    }
    /**
     * Add the correct font size in all browsers.
     */
    small {
      font-size: 80%;
    }
    /**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
    sub,
    sup {
      font-size: 75%;
      line-height: 0;
      position: relative;
      vertical-align: baseline;
    }
    sub {
      bottom: -0.25em;
    }
    sup {
      top: -0.5em;
    }
    /* Embedded content
       ========================================================================== */
    /**
     * Remove the border on images inside links in IE 10.
     */
    img {
      border-style: none;
    }
    /* Forms
       ========================================================================== */
    /**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */
    button,
    input,
    optgroup,
    select,
    textarea {
      font-family: inherit; /* 1 */
      font-size: 100%; /* 1 */
      line-height: 1.15; /* 1 */
      margin: 0; /* 2 */
    }
    /**
     * Show the overflow in IE.
     * 1. Show the overflow in Edge.
     */
    button,
    input { /* 1 */
      overflow: visible;
    }
    /**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
    button,
    select { /* 1 */
      text-transform: none;
    }
    /**
     * Correct the inability to style clickable types in iOS and Safari.
     */
    button,
    [type=button],
    [type=reset],
    [type=submit] {
      -webkit-appearance: button;
    }
    /**
     * Remove the inner border and padding in Firefox.
     */
    button::-moz-focus-inner,
    [type=button]::-moz-focus-inner,
    [type=reset]::-moz-focus-inner,
    [type=submit]::-moz-focus-inner {
      border-style: none;
      padding: 0;
    }
    /**
     * Restore the focus styles unset by the previous rule.
     */
    button:-moz-focusring,
    [type=button]:-moz-focusring,
    [type=reset]:-moz-focusring,
    [type=submit]:-moz-focusring {
      outline: 1px dotted ButtonText;
    }
    /**
     * Correct the padding in Firefox.
     */
    fieldset {
      padding: 0.35em 0.75em 0.625em;
    }
    /**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
    legend {
      box-sizing: border-box; /* 1 */
      color: inherit; /* 2 */
      display: table; /* 1 */
      max-width: 100%; /* 1 */
      padding: 0; /* 3 */
      white-space: normal; /* 1 */
    }
    /**
     * Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
    progress {
      vertical-align: baseline;
    }
    /**
     * Remove the default vertical scrollbar in IE 10+.
     */
    textarea {
      overflow: auto;
    }
    /**
     * 1. Add the correct box sizing in IE 10.
     * 2. Remove the padding in IE 10.
     */
    [type=checkbox],
    [type=radio] {
      box-sizing: border-box; /* 1 */
      padding: 0; /* 2 */
    }
    /**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
    [type=number]::-webkit-inner-spin-button,
    [type=number]::-webkit-outer-spin-button {
      height: auto;
    }
    /**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
    [type=search] {
      -webkit-appearance: textfield; /* 1 */
      outline-offset: -2px; /* 2 */
    }
    /**
     * Remove the inner padding in Chrome and Safari on macOS.
     */
    [type=search]::-webkit-search-decoration {
      -webkit-appearance: none;
    }
    /**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
    ::-webkit-file-upload-button {
      -webkit-appearance: button; /* 1 */
      font: inherit; /* 2 */
    }
    /* Interactive
       ========================================================================== */
    /*
     * Add the correct display in Edge, IE 10+, and Firefox.
     */
    details {
      display: block;
    }
    /*
     * Add the correct display in all browsers.
     */
    summary {
      display: list-item;
    }
    /* Misc
       ========================================================================== */
    /**
     * Add the correct display in IE 10+.
     */
    template {
      display: none;
    }
    /**
     * Add the correct display in IE 10.
     */
    [hidden] {
      display: none;
    }
  }
  * {
    margin: 0;
  }
  html {
    box-sizing: border-box;
  }
  *,
  *:before,
  *:after {
    box-sizing: inherit;
  }
  .screen-reader-text {
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
  }
  .screen-reader-text:focus-visible {
    position: static;
    clip-path: none;
    width: auto;
    height: auto;
    margin: 0;
  }
  h1 {
    font-size: 2em;
  }
  address {
    font-style: normal;
  }
  small {
    font-size: clamp(10px, 80%, 1.2rem);
  }
}
@layer default {
  :root {
    interpolate-size: allow-keywords;
  }
  body {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 1em;
  }
  h1, h2, h3, h4 {
    text-wrap-style: balance;
    max-width: 32ch;
  }
  hr {
    margin-block: 1rem;
  }
  img {
    max-width: 100%;
  }
  main h1, main h2, main h3, main h4, main h5, main h6 {
    margin-block: 0.2em;
  }
  main p {
    max-width: 50ch;
    margin-block: 0.5em;
    text-wrap-style: pretty;
  }
}
@layer patterns {
  .rainbow {
    background: conic-gradient(from 1.5708rad at 50% 50%, var(--orange) 0%, var(--purple) 24%, var(--yellow) 49%, var(--blue) 76%, var(--green) 100%);
  }
  .flexy {
    display: flex;
    flex-wrap: wrap;
  }
  .gridy {
    --gap: var(--gap, 0);
    display: grid;
    gap: var(--gap);
  }
  .gridy.repeaty {
    --min: 15rem;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--min), 100%), 1fr));
  }
  .btn {
    --gap: 1em;
    padding: 0.5em 0.8em;
    background: var(--bgc);
    border: 2px solid var(--bc);
    border-radius: 0.4rem;
    color: var(--tc);
    transition: color, border, background-color;
    transition-duration: 0.3s;
    cursor: pointer;
    width: max-content;
    display: inline-flex;
    place-items: center;
    gap: var(--gap);
    font-size: 1.2em;
    user-select: none;
  }
  .btn[data-type=plus], .btn[data-type=minus] {
    font-family: "Courier New", Courier, monospace;
    aspect-ratio: 1/1;
    font-size: 3em;
    font-weight: 300;
    padding: 0.3rem 0.9rem;
    line-height: 1;
  }
  .btn:disabled {
    cursor: not-allowed;
    --tc: var(--gray);
    --bc: var(--gray);
    --bgc: hsl(from var(--gray) h s calc( l * 1.8 ));
  }
  .btn.tap::before, .btn.pen::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5em;
    height: 1.5em;
  }
  .btn.tap {
    --gap: 0;
  }
  .btn.tap::before {
    background-image: url(../images/icons/icon-tap.svg);
  }
  .btn.pen {
    --tc: var(--black);
    --bgc: var(--white);
    --bc: var(--black);
  }
  .btn.pen::before {
    background-image: url(../images/icons/icon-pen.svg);
  }
  .btn.pen:hover:not(:disabled), .btn.pen:focus-visible:not(:disabled), .btn.pen:active:not(:disabled), .btn.pen.active:not(:disabled) {
    --bc: var(--white);
  }
  button.texty {
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font: inherit;
    appearance: none;
    color: inherit;
    text-transform: inherit;
  }
  .add2cart {
    padding-inline-end: 4rem;
    position: relative;
    text-transform: uppercase;
    font-size: 1.4em;
  }
  .add2cart::after {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    display: grid;
    place-content: center;
    width: 3.4rem;
    background: currentColor no-repeat center;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='27'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath d='M420 0v1230H0V0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' transform='translate(-362 -1042)'%3E%3Cpath fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='3' d='M375 1043.25v24.5M362.5 1055.5h25'/%3E%3C/g%3E%3C/svg%3E");
  }
  .title,
  [data-menu] li li a,
  [data-menu] li li .active {
    text-transform: uppercase;
    font-weight: 800;
    margin-block: 0.5rem;
  }
  .outline {
    outline: 1px solid var(--white);
    outline-offset: 1em;
  }
  .socy {
    display: inline-block;
    width: 3rem;
  }
  @media (min-width: 56em) {
    .socy {
      width: 1.7rem;
    }
  }
  .socy svg {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
  }
  .socy svg path {
    transition: fill 0.8s;
  }
  .socy:hover svg, .socy:focus-visible svg {
    --filly: var(--white);
  }
  details {
    padding: 0.5rem 0;
    overflow: hidden;
  }
  details > * {
    margin: 0;
  }
  details summary + * {
    padding-block: 0.5rem;
  }
  details summary {
    margin-inline-start: 1em;
    list-style-position: outside;
    cursor: pointer;
  }
  details summary::marker {
    font-size: 0.75em;
  }
  details::details-content {
    block-size: 0;
    transition: block-size 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955), content-visibility 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition-behavior: allow-discrete;
  }
  details[open]::details-content {
    block-size: auto;
  }
  .rainbow-list > *:nth-child(5n-4) {
    color: var(--purple);
  }
  .rainbow-list > *:nth-child(5n-3) {
    color: var(--yellow);
  }
  .rainbow-list > *:nth-child(5n-2) {
    color: var(--blue);
  }
  .rainbow-list > *:nth-child(5n-1) {
    color: var(--green);
  }
  .rainbow-list > *:nth-child(5n) {
    color: var(--orange);
  }
  .rainbow-list-2 > *:nth-child(5n-4) {
    color: var(--green);
  }
  .rainbow-list-2 > *:nth-child(5n-3) {
    color: var(--orange);
  }
  .rainbow-list-2 > *:nth-child(5n-2) {
    color: var(--purple);
  }
  .rainbow-list-2 > *:nth-child(5n-1) {
    color: var(--yellow);
  }
  .rainbow-list-2 > *:nth-child(5n-0) {
    color: var(--blue);
  }
  [x-cloak] {
    visibility: hidden !important;
  }
}
@layer layouts {
  body {
    display: grid;
  }
  body > * {
    box-sizing: border-box;
    width: 100%;
  }
  body .megafirst {
    grid-area: -1;
  }
  #Bready {
    position: sticky;
    top: var(--gapy);
  }
  #Bready > a {
    padding: var(--gapy);
    padding-inline-start: 0.3rem;
  }
  [data-menu] {
    position: fixed;
    z-index: -1;
    padding-block: 10vh 2em;
    inset: 0;
    overflow: auto;
    color: var(--black);
    display: grid;
    align-content: space-between;
    transition: transform 1s 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  }
  [data-menu][hidden] {
    display: grid !important;
    transform: translateX(100%);
  }
  [data-menu] ul,
  [data-menu] li {
    list-style: none;
    padding: 0;
  }
  [data-menu] > li {
    margin-inline: auto;
  }
  [data-menu] .el {
    padding-inline-start: var(--gapy);
    text-align: right;
  }
  @media (min-width: 56em) {
    [data-menu] .el {
      font-size: 0.9em;
    }
  }
  [data-menu] .time {
    margin-block: var(--gapy);
  }
  [data-menu] .social {
    text-align: end;
  }
  [data-menu] li li a,
  [data-menu] li li .active {
    line-height: 1.2;
    font-size: 2em;
  }
  [data-menu] li li a:not(.active):hover, [data-menu] li li a:not(.active):focus-visible,
  [data-menu] li li .active:not(.active):hover,
  [data-menu] li li .active:not(.active):focus-visible {
    background-color: var(--black);
    color: var(--white);
    outline: none;
  }
  [data-menu] li li .active {
    color: var(--white);
    cursor: default;
  }
  #main-footer {
    display: grid;
    gap: var(--gapy);
    padding: 10rem var(--gapy) var(--gapy);
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    background-color: var(--black);
    justify-items: center;
    font-size: 1.2em;
    color: var(--white);
    margin-block-start: 10rem;
    align-content: center;
    line-height: 1.2;
    font-family: monospace;
  }
  #main-footer > section:first-of-type {
    margin-inline-start: -7ch;
  }
  @media (min-width: 53.75em) {
    #main-footer > section:first-of-type {
      margin-inline-start: initial;
    }
  }
  #main-footer .outline {
    align-self: self-start;
  }
  #main-footer .highlight {
    background-color: var(--white);
    color: var(--black);
    padding: 0.5em 0.2em 0;
    display: block;
    margin: 0.5em -0.5em -0.5em;
    padding: 0.7em 0.5em 0;
  }
  #main-footer p {
    margin: 0 0 1.5em;
  }
  #main-footer p:last-of-type {
    margin-block-end: 0;
  }
  #main-footer ul {
    padding-left: 0;
    list-style-position: outside;
    margin-block: 0 1em;
  }
  #main-footer address {
    display: grid;
    grid-template-columns: min-content 1fr;
    text-wrap: nowrap;
    gap: 2rem;
  }
  #main-footer .logy {
    --filllogo: var(--orange);
    --bglogo: var(--orange);
    --blogo: transparent;
    width: 7ch;
    height: auto;
    display: block;
  }
  #main-footer .socy svg {
    width: 2em;
    height: 2em;
  }
  #main-footer ul li::marker {
    content: "> ";
    color: var(--white);
  }
  #main-footer ul:nth-child(2) li::marker {
    content: "– ";
  }
  #main-footer ul a {
    line-height: 1.5;
  }
  #main-footer ul a:hover {
    text-decoration: underline;
    text-decoration-color: var(--white);
  }
  [data-suggestion] {
    margin-inline: calc(-1 * var(--gapy));
    padding: 5rem var(--gapy);
    background-color: var(--orange);
    color: var(--black);
    margin-block-end: -10rem;
  }
  [data-suggestion] > :first-child {
    text-transform: uppercase;
    margin-block-end: var(--gapy);
    background-color: var(--black);
    color: var(--white);
    margin-inline: auto;
    max-width: fit-content;
    padding: 0.3em 1em;
    text-align: center;
    border-radius: 0.3rem;
  }
  @media screen and (max-width: 34.375em) {
    [data-suggestion] .gridy {
      --min: 9rem;
    }
  }
  [data-suggestion] .gridy:has(> :only-child) {
    margin-inline: auto;
    width: fit-content;
  }
  [data-suggestion] h3 {
    font-size: 1.3em;
  }
  [data-suggestion] img {
    width: 100%;
    height: auto;
  }
}
@layer components {
  .postery {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    z-index: 9;
  }
  .postery figure {
    display: grid;
    grid-template-areas: "one" "close";
    justify-items: end;
    padding-inline: 1em;
    gap: 1rem;
    align-items: end;
  }
  .postery figure > * {
    grid-area: one;
  }
  .postery figure img {
    max-height: calc(93dvh - var(--Hhead) / 2);
  }
  .postery figure figcaption {
    text-align: end;
    margin-inline: 1rem;
    color: var(--white);
    font-size: 1.5em;
  }
  .postery figure figcaption > * {
    padding: 0.3rem min(1rem, 5%);
    background-color: rgba(0, 0, 0, 0.52);
    width: fit-content;
    max-width: 30ch;
    margin-inline: auto 0;
    font-size: 0.8em;
  }
  .postery figure figcaption h1 {
    text-align: end;
    display: inline;
  }
  .postery figure button.btn {
    grid-row: 2;
    font-size: 1em;
  }
  @media screen and (min-width: var(--media-min-width)) {
    .postery figure button.btn {
      grid-row: auto;
      grid-column: 2;
    }
  }
  .postery figure button.btn::after {
    content: "✕";
  }
  .postery {
    translate: 100%;
    transition: translate 1s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .postery.open {
    translate: 0;
  }
  .postery .openPoster {
    position: absolute;
    top: 7em;
    left: calc((1rem + 0.5em) * -1);
    transform: scale(1.7);
    color: var(--orange);
    font-weight: bold;
    font-size: 1.5em;
  }
  @media (min-width: 56em) {
    .postery .openPoster {
      left: calc((2rem + 0.5em) * -1);
    }
  }
  .swiper {
    --swiper-theme-color: var(--purple);
    width: 100%;
    height: clamp(25rem, 70vh, 50rem);
  }
  .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    background-color: var(--white);
  }
  .swiper [role=button] {
    user-select: none;
  }
  #Resulty div[data-body] {
    transform: translateX(-100%);
    transition: transform 0.6s 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  #Resulty div[data-body]:has(> div) {
    transform: none;
  }
  #Resulty div[data-body] {
    align-items: center;
  }
  #Resulty div[data-body].topy {
    align-items: start;
  }
  #Resulty div[data-body] {
    position: fixed;
    inset: 0 0 0 0;
    display: grid;
    grid-template-columns: minmax(min-content, 54rem);
    justify-content: center;
    color: var(--black);
    z-index: 200;
    overflow-y: auto;
    padding: 2em;
  }
  #Resulty div[data-body] h1,
  #Resulty div[data-body] h2,
  #Resulty div[data-body] h3,
  #Resulty div[data-body] h4,
  #Resulty div[data-body] h5 {
    color: var(--white);
  }
  #Resulty div[data-body] a {
    color: var(--black);
  }
  #Resulty button[data-close] {
    position: fixed;
    inset: var(--gapy) auto auto 0;
    padding: 2rem;
    z-index: 200;
    display: none;
  }
  #Resulty:has(div[data-body] > div) button[data-close] {
    display: initial;
  }
}
@layer themes {
  :root {
    color-scheme: dark light;
    --media-min-width: 40em;
    --Hhead: 17rem;
    --gapy: 2rem;
    --maxy: 2200px;
    --gray: #686868;
    --green: #beee4e;
    --purple: #ff468f;
    --black: #000;
    --yellow: #fff40f;
    --orange: #ff7415;
    --orange2: #ed7319;
    --white: #fff;
    --white: #f9fbfb;
    --blue: #73f3e3;
    --ssblack: #3c3c3b;
    --sssize: 1.75rem; /* 28px */
  }
  @media screen and (max-width: 40em) {
    :root {
      --gapy: 1rem;
    }
  }
  body > header:first-of-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
    max-width: var(--maxy);
    margin-inline: auto;
    padding-block-start: 1rem;
    padding-inline: var(--gapy);
    position: sticky;
    top: 0;
    z-index: 10;
    height: 0;
  }
  body > header:first-of-type + * {
    margin-block-start: 10rem;
  }
  body > header:first-of-type a {
    text-decoration: none;
  }
  body > header:first-of-type .brand {
    display: flex;
    filter: drop-shadow(0px 2px 2px var(--white));
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transform-origin: top left;
  }
  body > header:first-of-type .brand a {
    display: inline-grid;
    place-items: center;
    line-height: 0;
  }
  body > header:first-of-type .brand {
    /* position: relative;
    &::after {
        content: "";
        background: transparent url(../images/yobubble.png) no-repeat scroll;
        background-size: 105%;
        display: block;
        position: absolute;
        inset: 0;
        background-position: 108% 139%;
        pointer-events: none;
    } */
  }
  body > header:first-of-type .brand svg {
    width: auto;
    height: clamp(4rem, 8vw, 8rem);
    --bglogo: #000;
  }
  body > header:first-of-type .brand img {
    width: auto;
    height: clamp(2.5rem, 5vw, 89px);
    margin-block: auto;
    padding: var(--sssize);
    box-sizing: content-box;
  }
  body > header:first-of-type nav ul {
    list-style: none;
    margin: 0;
    padding-inline-start: 0;
  }
  body > header:first-of-type nav.user-nav {
    margin-top: 2rem;
  }
  body > header:first-of-type nav.user-nav ul {
    text-align: end;
  }
  body > header:first-of-type nav [aria-expanded=false] {
    filter: drop-shadow(0px 2px 2px var(--white));
  }
  body > header:first-of-type nav .cart-icon {
    margin-block-end: 2rem;
    filter: drop-shadow(0px 2px 2px var(--white));
  }
  body > header:first-of-type #Burgy {
    width: 2rem;
  }
  body > header:first-of-type #Burgy path {
    fill: var(--black) !important;
  }
  .shorty .brand {
    transform: translateY(calc(-100% - 2rem));
  }
  body > main {
    max-width: var(--maxy);
    padding-inline: var(--gapy);
    margin-inline: auto;
    padding-block-start: var(--gapy);
  }
  @layer color {
    a {
      text-decoration-color: transparent;
      transition: text-decoration 0.3s linear;
    }
    a:hover {
      text-decoration-color: var(--blue);
      text-decoration-line: underline;
      text-decoration-thickness: 0.2rem;
    }
    .Whity main {
      --gray: #686868;
      --green: hsl( from #beee4e h calc(s - 20) calc(l * .7) );
      --purple: hsl(336, 100%, 64%);
      --black: #000;
      --orange: #ff7415;
      --orange2: hsl(25 100% 38% / 1);
      --white: #fff;
      --white: #f9fbfb;
      --blue: hsl(from #73f3e3 calc(h + 20) calc(s + 20) calc(l + -30));
    }
    .Whity body {
      color: var(--black);
      background-color: var(--white);
    }
    .Whity a:any-link {
      color: inherit;
    }
    .Whity hr {
      border: 1px solid var(--orange);
    }
    .Whity input[type=checkbox] {
      border-color: var(--gray);
      accent-color: var(--gray);
    }
    .Whity input[type=checkbox]::before {
      background-color: var(--gray);
      filter: drop-shadow(1px 0px 2px rgba(0, 0, 0, 0.3));
    }
    .Whity input[type=checkbox]:disabled {
      border-color: var(--gray);
      accent-color: var(--gray);
    }
    .Whity input[type=checkbox]:disabled::before {
      background-color: darkgray;
    }
    .Whity input[type=checkbox]:checked {
      border-color: var(--green);
      accent-color: var(--green);
    }
    .Whity input[type=checkbox]:checked::before {
      background-color: var(--green);
    }
    .Whity input[type=checkbox]:checked:disabled {
      border-color: var(--gray);
      accent-color: var(--gray);
    }
    .Whity input[type=checkbox]:checked:disabled::before {
      background-color: hsl(78, 52%, 62%);
    }
    .Whity label:has(input[type=checkbox]:disabled) {
      color: var(--gray);
    }
    .Whity input:not(.texty)[type=text],
    .Whity input[type=email],
    .Whity input[type=search],
    .Whity input[type=password],
    .Whity input[type=number],
    .Whity textarea {
      border-color: var(--black);
      color: var(--black);
      background-color: var(--white);
    }
    .Whity .btn {
      --tc: var(--black);
      --bc: var(--gray);
      --bgc: var(--white);
    }
    .Whity .btn.orange {
      --tc: var(--black);
      --bgc: var(--orange);
    }
    .Whity .btn.purple {
      --tc: var(--purple);
      --bc: var(--purple);
    }
    .Whity .btn.add2cart {
      --tc: var(--green);
      --bc: var(--green);
      --bgc: var(--white);
    }
    .Whity .btn:hover:not(:disabled), .Whity .btn:focus-visible:not(:disabled), .Whity .btn:active:not(:disabled), .Whity .btn.active:not(:disabled) {
      --tc: var(--orange);
      --bc: var(--orange);
    }
    .Whity .btn.purple:hover:not(:disabled), .Whity .btn.purple:focus-visible:not(:disabled), .Whity .btn.purple:active:not(:disabled), .Whity .btn.purple.active:not(:disabled) {
      --tc: var(--white);
      --bc: var(--white);
      --bgc: var(--purple);
    }
    .Whity .btn[data-type=plus], .Whity .btn[data-type=minus] {
      --tc: var(--purple);
    }
    .Whity .btn[data-type=plus]:hover:not(:disabled), .Whity .btn[data-type=minus]:hover:not(:disabled) {
      --tc: var(--white);
      --bc: var(--white);
      --bgc: var(--purple);
    }
    .Whity .postery {
      background-color: rgba(255, 255, 255, 0.95);
    }
    .Blacky .postery {
      background-color: rgba(0, 0, 0, 0.95);
    }
    .Blacky input[type=checkbox] {
      border-color: #3d3d3d;
      accent-color: var(--gray);
    }
    .Blacky input[type=checkbox]::before {
      background-color: #3d3d3d;
      filter: drop-shadow(2px 0px 2px rgba(0, 0, 0, 0.4980392157));
    }
    .Blacky input[type=checkbox]:disabled {
      border-color: var(--gray);
      accent-color: var(--gray);
    }
    .Blacky input[type=checkbox]:disabled::before {
      background-color: darkgray;
    }
    .Blacky input[type=checkbox]:checked {
      border-color: var(--green);
      accent-color: var(--green);
    }
    .Blacky input[type=checkbox]:checked::before {
      background-color: var(--green);
    }
    .Blacky input[type=checkbox]:checked:disabled {
      border-color: var(--gray);
      accent-color: var(--gray);
    }
    .Blacky input[type=checkbox]:checked:disabled::before {
      background-color: hsl(78, 52%, 62%);
    }
    .Blacky label:has(input[type=checkbox]:disabled) {
      color: var(--gray);
    }
    .Blacky input:not(.texty)[type=text],
    .Blacky input[type=email],
    .Blacky input[type=search],
    .Blacky input[type=password],
    .Blacky input[type=number],
    .Blacky textarea {
      border-color: var(--white);
      color: var(--white);
      background-color: var(--black);
    }
    .Blacky .btn {
      --tc: var(--white);
      --bc: var(--white);
      --bgc: var(--black);
    }
    .Blacky .btn.orange {
      --tc: var(--black);
      --bgc: var(--orange);
    }
    .Blacky .btn.purple {
      --tc: var(--purple);
      --bgc: var(--black);
      --bc: var(--purple);
    }
    .Blacky .btn.add2cart {
      --tc: var(--green);
      --bc: var(--green);
      --bgc: var(--black);
    }
  }
  input:not(.texty)[type=text],
  input[type=email],
  input[type=search],
  input[type=password],
  input[type=number],
  textarea {
    width: 100%;
    font: inherit;
    padding: 1rem;
    border-width: 1px;
    border-style: solid;
    transition: background, box-shadow, color;
    transition-duration: 0.3s;
  }
  input:not(.texty)[type=text]:focus-visible,
  input[type=email]:focus-visible,
  input[type=search]:focus-visible,
  input[type=password]:focus-visible,
  input[type=number]:focus-visible,
  textarea:focus-visible {
    border-color: currentColor;
  }
  input:not(.texty)[type=text]:placeholder-shown,
  input[type=email]:placeholder-shown,
  input[type=search]:placeholder-shown,
  input[type=password]:placeholder-shown,
  input[type=number]:placeholder-shown,
  textarea:placeholder-shown {
    font-style: italic;
    text-transform: uppercase;
    font-family: monospace;
  }
  /* Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Firefox */
  input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
  }
  input[type=search] {
    background-position: calc(100% - 1rem) 50%;
  }
  input[type=search]:placeholder-shown {
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' role='presentation' viewBox='0 0 32 32' width='14' height='14' fill='none' stroke='%23ff468f' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'%3E%3Ccircle cx='14' cy='14' r='12' /%3E%3Cpath d='M23 23 L30 30' /%3E%3C/svg%3E");
  }
  label:has(input[type=checkbox]),
  .form-input-wrapper:has(input[type=checkbox]) {
    display: inline-flex;
    align-items: center;
    gap: 0.75em;
  }
  input[type=checkbox] {
    cursor: pointer;
    width: 30px;
    height: 0;
    appearance: none;
    -webkit-appearance: none;
    display: inline-flex;
    align-content: center;
    flex-wrap: wrap;
    border-radius: 5px;
    border-width: 3px;
    border-style: solid;
  }
  input[type=checkbox]::before {
    content: "";
    width: 20px;
    height: 20px;
    transition: translate 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    translate: -3px;
    border-radius: 50%;
  }
  input[type=checkbox]:disabled {
    cursor: not-allowed;
  }
  input[type=checkbox]:checked::before {
    translate: 13px;
  }
}

/*# sourceMappingURL=theme_25.css.map */
