:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'Intro-Bold';
    src: url('/fonts/Intro-Bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Intro-Light';
    src: url('/fonts/Intro-Light.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Intro-Regular';
    src: url('/fonts/Intro-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
    font-size: 16px;
    font-family: "Intro-Regular", sans-serif;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

#app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.vanilla:hover {
  filter: drop-shadow(0 0 2em #f7df1eaa);
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #313131;
    line-height: 1.6;
}

.header {
    background-color: #ffffff;
    color: #000000;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

    .header h1 {
        font-size: 36px;
        font-weight: 600;
    }

    .header p {
        font-size: 13px;
        opacity: 0.8;
        margin-top: 0.5rem;
    }

.container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

.main-content {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.search-section {
    margin-bottom: 2rem;
    margin-top:2rem;
}

    .search-section h2 {
        font-size: 20px;
        margin-bottom: 1rem;
        color: #000000;
    }

.search-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #abb8c3;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #ffffff;
    color: #313131;
}

    .search-input:focus {
        outline: none;
        border-color: #00b7cd;
    }

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    font-size: 1.125em;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}
.btn-wd {
    background: linear-gradient(to right, #282560, #71304d, #bb2022);
}
.splash__left {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.btn-primary {
    background-color: #32373c;
    color: #ffffff;
}

    .btn-primary:hover {
        background-color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.btn-secondary {
    background-color: #00b7cd;
    color: #ffffff;
}

    .btn-secondary:hover {
        background-color: #009bb0;
        transform: translateY(-2px);
    }

.product-display {
    display: none;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 2rem;
}

    .product-display.active {
        display: block;
    }

.product-title-full {
    font-size: 28px;
    margin-bottom: 1.5rem;
    color: #000000;
    width: 100%;
}

.product-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 0.5rem;
    color: #000000;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: #00b7cd;
    margin: 1rem 0;
}

.product-description {
    font-size: 16px;
    color: #313131;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.cart-sidebar {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

    .cart-sidebar h2 {
        font-size: 20px;
        margin-bottom: 1.5rem;
        color: #000000;
        border-bottom: 2px solid #f9f9f9;
        padding-bottom: 0.5rem;
    }

.cart-items {
    margin-bottom: 2rem;
    min-height: 100px;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f9f9f9;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 16px;
    color: #00b7cd;
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    color: #abb8c3;
    font-size: 14px;
    padding: 2rem 0;
}

.cart-pricing-breakdown {
    padding: 1rem 0;
    border-top: 1px solid #f9f9f9;
}

.pricing-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 0.35rem 0;
    color: #313131;
}

.pricing-line.pricing-deduct span:last-child {
    color: #28a745;
}

.gst-note {
    display: block;
    font-size: 12px;
    color: #666;
    font-weight: 400;
    margin-top: 4px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #313131;
    margin-bottom: 1rem;
}

.cart-total-label {
    font-size: 18px;
    font-weight: 600;
}

.cart-total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #00b7cd;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    .modal.active {
        display: flex;
    }

.modal-content {
    background-color: #f9f9f9;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #00b7cd;
    color: #ffffff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .modal-close:hover {
        background-color: #009bb0;
    }

.modal-title {
    font-size: 28px;
    margin-bottom: 2rem;
    color: #000000;
}

.modal-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-card {
    padding: 2rem;
    background-color: #ffffff;
    border: 2px solid #abb8c3;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

    .option-card:hover {
        border-color: #00b7cd;
        transform: translateY(-4px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .option-card h3 {
        font-size: 20px;
        margin-bottom: 0.5rem;
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 14px;
    color: #313131;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #abb8c3;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: #ffffff;
    color: #313131;
}

    .form-input:focus {
        outline: none;
        border-color: #00b7cd;
    }

.form-section {
    display: none;
}

    .form-section.active {
        display: block;
    }

.order-recap {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.recap-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f9f9f9;
}

    .recap-item:last-child {
        border-bottom: none;
        font-weight: 700;
        font-size: 18px;
        color: #00b7cd;
    }


.header {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.query {
    width: min(100% - 4rem, 120ch);
    margin-left: auto;
    margin-right: auto;
}
.header__logo-link {
    position: relative;
    z-index: 102;
    display: block;
}

.header__logo {
    transition: 150ms;
    position: relative;
    z-index: 102;
    vertical-align: middle;
    width: 220px;
}

.header__inside {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header__logo-link {
    position: relative;
    z-index: 102;
    display: block;
}
input[type="checkbox" i] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
    margin: 3px 3px 3px 4px;
    padding: initial;
    border: initial;
}
.mobile-buttons {
    display: flex;
}
.mobile-button {
    width: 50%;
    text-align: center;
    text-decoration: none;
    background-color: #bb2022;
    font-size: 1.5rem;
    color: #fff;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
    .mobile-button:last-of-type {
        background-color: #282560;
    }

.header__right-top {
    display: none;
}
.header__right-bottom {
    display: none;
}
.header__right-top > *:not(:last-child) {
    margin-right: .25rem;
}

.header__button {
    padding: .75rem 1rem;
    line-height: 1.15em;
    background-color: #e2e2e2;
    text-decoration: none;
    vertical-align: baseline;
    color: #fff;
    font-size: 1.15rem;
}
    .header__button img {
        width: 25px;
        vertical-align: middle;
        position: relative;
        left: 2px;
    }

    .header__button.header__button--red {
        background-color: #bb2022;
    }
        .header__button.header__button--red:hover {
            opacity:0.82;
        }
    .header__button.header__button--blue {
        background-color: #282560;
    }
        .header__button.header__button--blue:hover {
            opacity: 0.82;
        }
    .header__button.header__button--grey {
        background-color: #a5a5a5;
    }
        .header__button.header__button--grey:hover {
            opacity: 0.82;
        }
.header__right-top > *:not(:last-child) {
    margin-right: .25rem;
}

.header__menu-desktop ul li:not(:last-of-type) {
    margin-right: 1rem;
}

.header__menu-desktop ul a {
    color: #282560;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Intro-Bold", sans-serif;
    letter-spacing: 1px;
    font-size: 1.15rem;
    
}

#menu-utilities, #menu-utilities-1 {
    margin-top: 0 !important;
}
    #menu-utilities li, #menu-utilities-1 li {
        line-height: 1.4rem;
        white-space: nowrap;
        padding: .75rem .5rem;
    }

        #menu-utilities li a, #menu-utilities-1 li a {
            color: #bb2022;
            text-decoration: none;
        }

a {
    transition: 150ms;
}
ol, ul {
    list-style: none;
}
li {
    display: list-item;
    unicode-bidi: isolate;
}
a {
    font-weight: 500;
    color: #646cff;
    text-decoration: inherit;
}
#burger {
    cursor: pointer;
    width: 2.2rem;
    height: 2rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#burger__icon {
    display: none;
}
#burger > div {
    height: 3px;
    background-color: #282560;
    transition: .5s;
    z-index: 999;
    border-radius: 99px;
}
#nav__menu {
    background: #f3f3f3;
    width: 100%;
    height: 100vh;
    position: fixed;
    right: 0;
    transition-timing-function: cubic-bezier(10, 2, 3, 1);
    transform: translateX(100%);
    top: 0;
    z-index: 101;
    transition: .5s;
}
.splash__title {
    animation: fade-right .5s ease-in-out;
}
.title {
    font-family: "Intro-Light", sans-serif;
    font-size: clamp(3.25rem, 2.6875rem + 2.5vw, 4rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #282560;
}

.footer {
    background-color: #282560;
    padding-top: 3rem;
    padding-bottom: 3rem;
    flex-shrink: 0;
}

.footer-layout {
    display: grid;
    gap: 1rem;
}

.footer__logo-link {
    position: relative;
    z-index: 100;
    display: block;
}

.footer__logo {
    width: 220px;
    transition: 150ms;
    position: relative;
    z-index: 100;
    display: block;
    margin-bottom: 2rem;
}
.footer #menu-footer-menu-1 {
    line-height: 2em;
}
    .footer #menu-footer-menu-1 li a {
        font-family: "Intro-Bold", sans-serif;
        text-decoration: none;
        color: #fff;
        transition: 150ms;
    }
.footer__social-icon:not(:last-of-type) {
    margin-right: .25rem;
}
.footer__social-icon img {
    width: 25px;
}
.footer__contact {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    margin-bottom: 0;
    margin-right: 1.5rem;
}
.u-nudge-v {
    margin-top: 0.66em !important;
    margin-bottom: 0.66em !important;
}
.footer__contact img {
    width: 25px;
    margin-right: .5rem;
}
.footer-partners img {
    display: block;
    width: 6rem;
    height: auto;
}

.checkout-notice {
    font-size: 12px;
    color: #909190;
    margin-top:10px;
}
@media (min-width: 768px) {
    .splash__left {
        padding: unset;
    }
    .splash__title {
        font-size: 5rem;
        font-weight: 100;
    }
}

@media (min-width: 980px) {

    .footer #menu-footer-menu-1 {
        columns: 2;
        gap: 5%;
        line-height: 2em;
    }

    .footer__logo {
        width: 150px;
        margin-bottom: unset;
        width: 220px;
    }
    .header {
        padding-top: 0;
    }
    .header__left {
        margin-top: auto;
    }
    .header__right {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .header__logo {
        width: 185px;
    }
    #burger {
        display: none;
    }
    #nav__menu {
        display: none;
    }
    .header__right-top {
        display: flex;
        margin-bottom: 2.5rem;
        margin-left: auto;
    }
    .header__right-bottom {
        display: block;
    }
    #menu-utilities, #menu-utilities-1 {
        display: inline-flex;
        align-items: center;
        margin: 0 .5rem;
    }
    .header__menu-desktop ul {
        display: flex;
        justify-content: flex-end;
    }
       
    .header__button {
        font-size: .75rem;
        padding: .6rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .footer-layout {
        grid-template-columns: 2fr 2fr 1fr 1fr;
    }
}
@media (min-width: 880px) {
    .header__button {
        font-size: 1.15rem;
        padding: .75rem 1rem;
    }
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
    }
    .header__menu-desktop ul li:not(:last-of-type) {
        margin-right: 1.5rem;
    }
    .cart-sidebar {
        position: static;
    }

    .product-content {
        grid-template-columns: 1fr;
    }

    .modal-options {
        grid-template-columns: 1fr;
    }

    .header__logo {
        width: 220px;
    }
    .splash__title {
        font-size: 6rem;
    }
}