:root { 
    /*Background*/
    --bg-1: #F2F2F2;
    --bg-2: #f7ebec; /*#E3E4D8*/
    --bg-3: #EFD7ED;
    --bg-4: #a79de4; /*#AA847D;*/
    --bg-5: #7164bd;

    --text-primary: rgb(12, 4, 1);
    --text-secondary: #F2F2F2;

    --highlight-1: #3010FB;
    --brand-1: #6dc1eb;
    --brand-2: #DEB841;

    /*Alerts / Admin Colors*/
    --green: #198754;
    --green-90: rgba(25, 135, 84, .9);
    --green-80: rgba(25, 135, 84, .8);
    --green-70: rgba(25, 135, 84, .7);
    --green-10: rgba(25, 135, 84, .1);

    --yellow: rgb(255, 193, 7);
    --yellow-90: rgba(255, 193, 7, .9);
    --yellow-80: rgba(255, 193, 7, .8);
    --yellow-70: rgba(255, 193, 7 ,.7);
    --yellow-10: rgba(255, 193, 7 ,.1);
    
    --orange: rgb(253, 126, 20);
    --orange-90: rgba(253, 126, 20, .9);
    --orange-80: rgba(253, 126, 20, .8);
    --orange-70: rgba(253, 126, 20, .7);

    --red: rgb(220, 53, 69);
    --red-90: rgba(220, 53, 69, .9);
    --red-80: rgba(220, 53, 69, .8);
    --red-70: rgba(220, 53, 69 ,.7);
    --red-10: rgba(220, 53, 69 ,.1);

    --blue: rgb(11, 202, 240);
    --blue-90: rgba(11, 202, 240, .9);
    --blue-80: rgba(11, 202, 240, .8);
    --blue-70: rgba(11, 202, 240, .7);
    --blue-10: rgba(11, 202, 240, .1);

    --pink: #d63384;
    --pink-90: rgba(214, 51, 132, .9);
    --pink-80: rgba(214, 51, 132, .8);
    --pink-70: rgba(214, 51, 132, .7);

    --black: rgb(12, 4, 1);
    --black-90: rgb(12, 4, 1, .9);
    --black-80: rgb(12, 4, 1, .8);
    --black-70: rgb(12, 4, 1, .7);

    --grey: rgb(173, 181, 189);
    --grey-90: rgba(173, 181, 189, .9);
    --grey-80: rgba(173, 181, 189, .8);
    --grey-70: rgba(173, 181, 189, .7);

    --grey-dark: rgb(118, 123, 128);
    --grey-dark-90: rgb(118, 123, 128, .9);
    --grey-dark-80: rgb(118, 123, 128, .8);
    --grey-dark-70: rgb(118, 123, 128, .7);

    /*Foreground / Highlights*/
    /*TODO: remove these*/
    --primary-red: rgb(214, 14, 14);
    --primary-red-75: rgba(163, 0, 0, .75);
    --secondary-red: rgb(117, 0, 0);
    --primary-orange: rgb(255, 162, 0);
    --secondary-orange: rgb(235, 149, 0);
    --green-1: rgb(25, 135, 84);
    --green-2: rgb(20, 112, 69);

    --text-light: rgb(170, 170, 170);
    --text-light-2: rgb(120, 120, 120);
    --text-light-3: rgb(60, 60, 60);

    /*Offwhite*/
    /*TODO: remove these for --text-primary-1,2,3 -secondary-1,2,3*/
    --offwhite: #F8FAFC;
    --offwhite-2: #e4e7eb;
    --beige: rgb(243,243,242);
    --night: #0C090A;
}

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*generic*/
body {
    font-family: 'DM Sans', sans-serif;
    font-size: 12pt;
    background-color: var(--bg-1); 
    color: var(--text-primary);
}

ol li {
    list-style: decimal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Slabo 27px", serif;
}

.fw-lessbold {
    font-weight: 300;
}

.fw-bold {
    font-weight: 400;
}

.fw-bolder {
    font-weight: 600;
}

.fw-boldest {
    font-weight: 900;
}

.brand-color-1 {
    color: var(--brand-1);
}

.brand-color-2 {
    color: var(--brand-2);
}

.highlight-red {
    transition: all .3s ease;

    &:hover {
        color: var(--primary-red) !important;
    }
}

.highlight-bg-3 {
    transition: color .3s ease;

    &:hover {
        color: var(--bg-3);
    }
}

.highlight-text-secondary {
    transition: color .3s ease;

    &:hover {
        color: var(--text-secondary) !important;
    }
}

.highlight-brand-1 {
    transition: color .3s ease;

    &:hover {
        color: var(--brand-1) !important;
    }
}

.highlight-brand-2 {
    transition: color .3s ease;

    &:hover {
        color: var(--brand-2) !important;
    }
}

.background-color-2 {
    transition: all .3s ease !important;

    &:hover {
        background-color: var(--bg-2) !important;
    }
}

.background-color-3 {
    transition: backgroundColor .3s ease;

    &:hover {
        background-color: var(--bg-3) !important;
    }
}

.background-color-4 {
    transition: backgroundColor .3s ease;

    &:hover {
        background-color: var(--bg-4) !important;
    }
}

.transition-ease-3 {
    transition: all .3s ease;
}

.no-scroll {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hidden {
    opacity: 0;
    max-height: 0;
    height: fit-content;
    overflow: hidden;
    transition: opacity .3s ease;
    display: block;
}

.no-height {
    max-height: 0;
    overflow: hidden;
}

.show-height {
    opacity: 1 !important;
    max-height: fit-content !important;
}

.show {
    opacity: 1;
}

.modal-body .show {
    max-height: fit-content;
}

.sticky-top {
    position: sticky;
    position: -webkit-sticky;
    top: 52px;
}

@media(min-width: 768px) {
    .sticky-top {
        top: 59px;
    }
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-m {
    font-size: .85rem; 
    line-height: .85rem;
}

.text-sm {
    font-size: .7rem; 
    line-height: .7rem;
}

.text-m {
    font-size: .85rem;
    line-height: .85rem;
}

.text-regular {
    font-size: 1rem;
    line-height: 1rem;
}

/*Page Headers*/
.hero-container {
    padding-top: 125px;
}

@media(min-width: 768px) {
    .hero-container {
        padding-top: 100px;
    }
}

/*Popup Container*/
.popup-hover-container {
    position: relative;
}

.popup-hover-container .popup-container {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--beige);
    border-radius: 10px;
    padding: 10px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
    z-index: 100;
}

.popup-hover-container:hover .popup-container {
    opacity: 1;
    height: fit-content;
    width: clamp(250px, 20vw, 600px);
}


/*Line Clamps*/
.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.hover-m-left, .hover-m-right, .hover-target {
    transition: all .3s ease;
}

.hover-m-left:hover .hover-target {
    margin-left: 10px;
}

.hover-m-right:hover .hover-target {
    margin-right: 10px;
}

.hover-scale {
    transition: all .3s ease;

    &:hover {
        transform: scale(1.03);
    }
}

/*Dropdown Menu*/
.dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--bg-2);
}

.dropdown-toggle::after {
    display: none !important;
}

/*Products carousel*/
.product {
    position: relative;
    overflow: hidden;
    padding: 20px;
    height: fit-content;
}
  
.product-container {
    padding: 25px 10vw;
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    height: fit-content;
}
  
.product-container::-webkit-scrollbar {
    display: none;
}
  
.product-conatiner .product-card {
    margin-right: 40px;
}

.product-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 250px;
    height: 450px;
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}
  
.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.discount-tag {
    position: absolute;
    background: var(--bg-2);
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--beige);
    right: 10px;
    top: 10px;
    text-transform: capitalize;
}
  
.card-btn {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    width: 90%;
    text-transform: capitalize;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
    opacity: 0;
}
  
.product-card:hover .card-btn {
    opacity: 1;
}
  
.card-btn:hover {
    background: #ff7d7d;
    color: #fff;
}
  
  .product-info {
    width: 100%;
    height: 100px;
    padding-top: 10px;
}
  
.product-short-description {
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    opacity: 0.5;
    text-transform: capitalize;
    margin: 5px 0;
}
  
.price {
    font-weight: 500;
}
  
.actual-price {
    margin-right: 5px;
    opacity: 0.5;
    text-decoration: line-through;
}
  
.pre-btn,
.nxt-btn {
    border: none;
    width: 10vw;
    height: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--bg-1) 100%);
    cursor: pointer;
    z-index: 8;
    transition: all .3s ease;

    &:hover i {
        box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 15px;
        background-color: var(--bg-1);
        padding: 5px 10px;
        border-radius: 50%;
    }
}

.pre-btn i, .nxt-btn i {
    transition: all .3s ease;
}

.nxt-btn-small, 
.pre-btn-small {
    width: 75px;
    background: none;
}
  
.pre-btn {
    left: 0;
    transform: rotate(180deg);
}
  
.nxt-btn {
    right: 0;
}
  
.pre-btn img,
.nxt-btn img {
    opacity: 0.2;
}
  
.pre-btn:hover img,
.nxt-btn:hover img {
    opacity: 1;
}
  
.collection-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}
  
.collection {
    position: relative;
}
  
.collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
.collection p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-2);
    font-size: 50px;
    text-transform: capitalize;
}
  
.collection:nth-child(3) {
    grid-column: span 2;
    margin-bottom: 10px;
}

.product-brand {
    font-size: 1.3rem;
    margin-bottom: 0;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/*Bootstrap Overwrites*/
.container {
    max-width: 1450px;
}

.accordion-button {
    &::after {
        content: none !important;
    }
}

.btn-primary {
    background-color: var(--green-1) !important;
    border-color: var(--green-1) !important;
    color: var(--bg-1) !important;
    transition: all .3s ease !important;

    &:hover {
        background-color: var(--green-2) !important;
        border-color: var(--green-2) !important;
        box-shadow: 0 3px 10px rgb(0 0 0 / 0.2) !important;
    }
}

.btn-cta {
    color: var(--text-primary) !important;
    background-color: var(--brand-1) !important;
    border: none !important;
    transition: all .3s ease;
    border-radius: 5px;

    &:hover {
        border-color: var(--brand-1);
        background-color: var(--brand-1);
        box-shadow: 0 3px 10px rgb(0 0 0 / 0.2) !important;
    }
}

.btn-cta-2 {
    color: var(--text-primary) !important;
    border: 1px solid var(--text-primary);
    transition: all .3s ease;
    border-radius: 25px;

    &:hover {
        border-color: var(--brand-1);
        box-shadow: 0 3px 10px rgb(0 0 0 / 0.2) !important;
    }
}

.btn-info {
    background-color: var(--blue);
    border-color: var(--blue) !important;
    color: white !important;

    &:hover {
        background-color: rgb(32, 87, 206);
        color: white !important;
    }
}

.btn-outline {
    border: 1px solid var(--bg-1);
    color: var(--bg-2);
    border-radius: 0;

    &:hover {
        border: 1px solid var(--bg-1);
        background-color: var(--bg-1);
    }
}

.btn-outline-selected {
    border: 1px solid var(--bg-1);
    background-color: var(--bg-1);
}

.add-qty-btn, .minus-qty-btn {
    border: 1px solid rgb(99, 99, 99);

    &:hover {
        border-color: black;
    }

    &:disabled {
        border-color: lightgray;
    }
}

.add-qty-btn {
    border-top-left-radius: 0; 
    border-bottom-left-radius: 0;
}

.minus-qty-btn {
    border-top-right-radius: 0; 
    border-bottom-right-radius: 0;
}

.accordion-button {
    background-color: var(--bg-2) !important;
    font-size: 18px;
    color: white !important;
}

a {
    color: var(--text-primary) !important;
    text-decoration: none;
}

.hover-underline {
    text-decoration: underline 1px solid var(--highlight-1) !important;

    &:hover {
        text-decoration: none !important;
    }
}

.text-light {
    color: var(--text-light);
}

.text-light-2 {
    color: var(--text-light-2);
}

.hover-bg-2 {
    transition: all .3s ease;

    &:hover {
        background-color: var(--bg-2) !important;
    }
}

.hover-red {
    transition: all .3s ease;

    &:hover {
        color: red;
    }
}

.hover-pointer:hover {
    cursor: pointer;
}

.highlight-link {
    color: var(--primary-red);
    text-decoration: underline 1px solid var(--primary-red);
    transition: all .3s ease;
    &:hover {
        color: var(--primary-red);
        text-decoration: none;
    }
}

.highlight-link-blue {
    color: rgb(43, 108, 248) !important;
    text-decoration: underline 1px solid rgb(43, 108, 248);
    transition: all .3s ease;

    &:hover {
        text-decoration: none;
    }
}

@media(min-width: 992px) {
    .display-4 {
        line-height: 3.3rem;
    }
}

.form-check-input {
    border-color: var(--text-primary) !important;
}

/*Nav*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    /*background: transparent;*/
    z-index: 100;
    transition: all .3s ease;
}

.navbar-transparent {
    background: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

.left-nav-item {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 20px;
    border-radius: 10px;
    transition: all .3s ease;
    text-decoration: none !important;
    box-shadow: none;
    color: var(--text-light-3);

    &:hover {
        box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    }
}

.nav-link {
    transition: all .15s ease;
    color: var(--text-primary);

    &:hover {
        font-weight: bold;
    }
}

.text-decoration-color-bg-2 {
    text-decoration-color: var(--bg-2) !important;
}

.left-nav-item[data-selected='true'] {
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.nav-link[data-selected='true'] {
    font-weight: bold;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -110vw; 
    background-color: rgba(0, 0, 0, .7); 
    height: 100vh;
    width: 100vw;
    z-index: 200; 
    transition: all .3s ease;
}

.mobile-nav-open {
    left: 0;
}

/*Cart*/
.cart-container {
    position: fixed;
    top: 0;
    left: -110vw; 
    background-color: rgba(0, 0, 0, .7); 
    height: 100dvh;
    width: 100vw;
    z-index: 300;
    transition: all .3s ease;
}

#cart-items-container {
    overflow-y: auto;
    scroll-behavior: smooth;
}

#cart-items-container::-webkit-scrollbar {
    display: none;
}

.cart-open {
    left: 0;
}

.mobile-nav-open {
    left: 0;
}

.cart-indicator {
    width: 17px; 
    height: 17px; 
    position: absolute; 
    top: 0; 
    left: 0; 
    transform: translate(70%, -70%);
    border-radius: 50%; 
    background-color: var(--bg-3); 
    color: var(--text-secondary);
    z-index: 2;
    pointer-events: none;
}

.cart-indicator p {
    font-size: .6rem;
}

.adjust-quantity-container {
    border: 1px solid rgb(204, 204, 204);
    width: fit-content;
    padding: 0;
    border-radius: 2px;
}

.btn-decrease-qty, .btn-increase-qty {
    color: var(--bg-2);
    
    padding: 0 10px;
    transition: all .3s ease;

    &:hover {
        background-color: var(--bg-1);
    }
}

.btn-decrease-qty {
    border-right: 1px solid rgb(204, 204, 204);
}

.btn-increase-qty {
    border-left: 1px solid rgb(204, 204, 204);
}

/*Store Products*/
.store-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0rem;
}

@media(min-width: 600px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 1rem;
        column-gap: 3rem;
    }
}

@media(min-width: 768px) {
    .store-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 992px) {
    .store-grid {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 3rem;
    }
}

.store-grid-item {
    width: 100%;
    height: 100%;
}

.product-img-container {
    overflow: hidden; 
    height: 350px !important;
}

@media(min-width: 992px) {
    .product-img-container {
        height: 300px !important;
    }   
}

.item-thumbnail {
    width: 100%;
    height: 250px;

    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.bg-img-cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.status-filter {
    transition: all .3s ease;

    &:hover {
        background-color: var(--bg-1);
    }
}

.selected-status-filter {
    background-color: var(--bg-1);
    font-weight: bold;
}

.empty-circle-checkmark {
    border: 1px solid black;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.review-container {
    overflow: hidden;
}

.review-btn-left, .review-btn-right {
    transition: all .3s ease;
}

.review-btn-left {
    left: -100%;
}

.review-container:hover .review-btn-left {
    left: 0;
}

.review-btn-right {
    right: -100%;
}

.review-container:hover .review-btn-right {
    right: 0;
}

/*blog*/
.profile-picture {
    border-radius: 50%;
}

/*Styled Product Preview*/
.styled-img-conatiner {
    height: 250px;
}

@media(min-width: 365px) {
    .styled-img-conatiner {
        height: 350px;
    }
}

@media(min-width: 512px) {
    .styled-img-conatiner {
        height: 450px;
    }
}

@media(min-width: 647px) {
    .styled-img-conatiner {
        height: 550px;
    }
}

@media(min-width: 992px) {
    .styled-img-conatiner {
        height: 300px;
    }
}

/* Alert Banners */
.alert-banner {
    padding: 12px;
    border-radius: 25px;
}

.alert-banner-info {
    border-color: var(--blue);
    background-color: var(--blue-10);
}

.alert-banner-success {
    border-color: var(--green);
    background-color: var(--green-10);
}

.alert-banner-warning {
    border-color: var(--yellow);
    background-color: var(--yellow-10);
}

.alert-banner-error {
    border-color: var(--red);
    background-color: var(--red-10);
}

.alert-banner-error .hover-underline {
    text-decoration-color: var(--bg-2) !important;
}