@charset "UTF-8";

/* Helper classes */
.no-underline {
    text-decoration: none !important;
}

.black {
    color: black !important;
}

.white {
    color: white !important;
}

.grey {
    color: #666 !important;
}

.light-gray {
    color: lightgrey !important;
}

.red {
    color: red !important;
}

.dark-green {
    color: #3b5150 !important;
}

.white-bg {
    background-color: white;
}

.off-white-bg {
    background-color: #f8f8f8;
}

.green-bg {
    background-color: #3b5150;
}

.light-green-bg {
    background-color: #e6f2f1;
}

.light-gray-bg {
    background-color: lightgray;
}

.transition {
    transition: opacity 0.5s ease-in-out;
}

.text-center {
    text-align: center;
}

.width-145 {
    width: 145px;
}

.width-200 {
    min-width: 200px !important;
    width: 200px !important;
}

.width-250 {
    width: 250px;
}


.width-400 {
    width: 400px;
}

.height-145 {
    height: 145px;
}

.height-200 {
    height: 200px;
}

.height-300 {
    height: 300px;
}

.height-400 {
    height: 400px;
}

.max-height-vh {
    height: 100vh;
}

.width-320 {
    width: 320px;
}

.width-400 {
    width: 400px;
}

.width-600 {
    width: 600px;
}

.max-width-600 {
    max-width: 600px;
}

.max-width-750 {
    max-width: 750px;
}

.width-100 {
    width: 100%;
}

.flex-align-start {
    display: flex;
    align-items: flex-start;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.flex-align-baseline {
    display: flex;
    align-items: baseline;
}

.flex-justify-center {
    display: flex;
    justify-content: center;
}

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

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.no-wrap {
    flex-wrap: nowrap;
}

.flex-wrap-mobile {
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .flex-wrap-mobile {
        flex-wrap: wrap;
    }
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
}

.flex-space-around {
    display: flex;
    justify-content: space-around;
}

.flex-space-evenly {
    display: flex;
    justify-content: space-evenly;
}

.gap-1 {
    display: flex;
    gap: 1rem;
}

.gap-05 {
    display: flex;
    gap: 0.5rem;
}

.gap-1 {
    display: flex;
    gap: 1rem;
}

.gap-2 {
    display: flex;
    gap: 2rem;
}

.min-width-max-content {
    min-width: max-content;
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.hidden {
    display: none !important;
}

.highlight {
    background-color: lightgoldenrodyellow;
}

.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 1rem !important;
}

.text-lg {
    font-size: 1.5rem !important;
}

.text-xl {
    font-size: 2rem !important;
}

.text-xxl {
    font-size: 2.5rem !important;
}

.padding-0 {
    padding: 0 !important;
}

.padding-05 {
    padding: 0.5rem !important;
}

.padding-1 {
    padding: 1rem !important;
}

.padding-2 {
    padding: 2rem !important;
}

.padding-top-1 {
    padding-top: 1rem !important;
}

.margin-0 {
    margin: 0 !important;
}

.margin-05 {
    margin: 0.5rem;
}

.margin-1 {
    margin: 1rem;
}

.margin-2 {
    margin: 2rem;
}

.margin-top-1 {
    margin-top: 1rem;
}

.margin-top-2 {
    margin-top: 2rem;
}

.margin-bottom-1 {
    margin-bottom: 1rem;
}

.margin-bottom-2 {
    margin-bottom: 2rem;
}

.margin-bottom-3 {
    margin-bottom: 3rem;
}

.margin-left-1 {
    margin-left: 1rem;
}

.border-top {
    border-top: 1px solid black;
}

.border-bottom-grey {
    border-bottom: 1px solid lightgray;
}

.border-all {
    border: 1px solid black;
}

.border-all-grey {
    border: 1px solid grey;
}

.border-all-light-grey {
    border: 1px solid lightgrey;
}

.zero-width {
    opacity: 0;
    width: 0;
    height: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.no-select {
    user-select: none;
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.translate-4 {
    transform: translateY(-4px);
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* Basic elements */
body {
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: 'Vollkorn', serif;
    margin: 0;
}

iframe {
    height: 500px;
    width: 500px;
    max-width: 100%;
}

iframe.inline-iframe {
    width: 100%;
}

p {
    margin: 1rem 1rem 1rem 0;
}

ul,
ol {
    list-style: none;
}

ol.enforce-list-style {
    list-style: decimal;
}

ul.enforce-list-style {
    list-style: disc;
}

blockquote {
    font-style: italic;
    padding: 0.5rem;
    margin: 0.5rem 0;
}

a {
    color: black;
}

a:visited {
    color: #414141;
}


/* Images */

img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
}

.img-25 {
    max-width: 25px;
    max-height: 25px;
}

.img-50 {
    max-width: 50px;
    max-height: 50px;
}

.img-75 {
    max-width: 75px;
    max-height: 75px;
}

.img-100 {
    max-width: 100px;
    max-height: 100px;
}

.img-150 {
    max-width: 150px;
    max-height: 150px;
}

.img-200 {
    max-width: 200px;
    max-height: 200px;
    margin-right: 50px;
}

.img-300 {
    max-width: 300px;
}

.img-300-shrink {
    max-width: 300px;
    min-width: 0;
    width: 100%
}

.img-200-shrink {
    max-width: 200px;
    min-width: 0;
    width: 100%
}

.img-height-300 {
    height: 300px !important;
}

.img-450 {
    max-width: 450px;
}

.img-500 {
    max-width: 500px;
}

.img-500-shrink {
    max-width: 500px;
    min-width: 0;
    width: 100%
}

.img-650 {
    height: 650px !important;
    width: 650px !important;
}

.rotate-left {
    transform: rotate(-1deg);
}

.rotate-right {
    transform: rotate(1deg);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f5f5f5;
    font-weight: normal;
}

tr:nth-child(odd) {
    background-color: white;
}

tr:nth-child(even) {
    background-color: #fafafa;
}

/* Buttons */

button,
a.button {
    height: fit-content;
    color: black;
    background-color: white;
    padding: 16px 28px;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: "Vollkorn", serif;
    cursor: pointer;
    border: 1px solid black;
    width: fit-content;
    white-space: nowrap;
}

button:hover,
a.button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

button:disabled,
a.button:disabled {
    color: gray;
    border: 1px solid gray;
    cursor: not-allowed;
}

a.small-button,
button.small-button {
    font-size: 1rem !important;
    padding: 0.5rem 1rem;
    width: fit-content;
    margin: 0.75rem 0rem !important;
}

/* Navigation */

nav {
    display: flex;
    position: fixed;
    align-items: center;
    height: 76px;
    top: 0;
    width: 100vw;
    justify-content: space-between;
    background-color: #3b5150;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

nav a,
nav a:visited,
footer a,
footer a:visited,
.consent-banner a,
.consent-banner a:visited {
    color: white;
}

nav a:hover {
    opacity: 0.8;
}

nav .disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: white;
}

nav .home {
    display: flex;
    flex-direction: column;
    font-size: 2em;
    padding: 1rem;
    white-space: nowrap;
}

.navbar-list li {
    margin: 0 10px;
}

nav a {
    color: white;
    text-decoration: none;
}

.navbar-list {
    display: flex;
    list-style-type: none;
    margin: 0 1rem;
    padding-top: 0.5rem;
}

#navbar-shopping-cart a {
    gap: 0.25rem;
}


/* Forms */
input[type="text"],
input[type="email"],
textarea {
    text-overflow: ellipsis;
    border: 1px solid black;
    padding: 1rem;
    font-family: Vollkorn, serif;
    font-size: 1.25rem;
    resize: none;
    outline-width: 0;
}

.login-gradient {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 300px;
    height: 6px;
    background: rgb(59, 81, 80);
    border-radius: 3px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2b3b3a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2b3b3a;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

input[type="range"]:disabled {
    background: #d3d3d3;
    border-color: #808080;
    cursor: not-allowed;
}

input[type="range"]:disabled::-webkit-slider-thumb {
    background: #c0c0c0;
    border-color: #808080;
    box-shadow: none;
    cursor: not-allowed;
}

input[type="range"]:disabled::-moz-range-thumb {
    background: #c0c0c0;
    border-color: #808080;
    box-shadow: none;
    cursor: not-allowed;
}

input[type="file"] {
    display: none;
}

label[for="file-upload"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 3rem;
    font-family: 'Vollkorn', serif;
    font-size: 1.25rem;
    border: 1px solid #3b5150;
    background: #3b5150;
    color: white;
    cursor: pointer;
}

label[for="file-upload"]:hover {
    opacity: 0.8;
}

#preview-container {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 34px;
    background-color: #3b5150;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 30px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:not(:checked)+.slider {
    background-color: #ccc;
}

input:not(:checked)+.slider:before {
    transform: translateX(-26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

select {
    padding: 0.5rem;
    font-family: 'Vollkorn', serif;
    font-size: 1.25rem;

    &:focus {
        outline: none;
    }
}

.small-select {
    font-size: 1rem;
    font-family: 'Vollkorn', serif;
    padding: 0.5rem;
    width: fit-content;
}

textarea:focus,
select:focus {
    outline: none;
}

.consent-banner {
    position: fixed;
    bottom: 0;
    background-color: #3b5150;
    color: white;
}

.consent-banner button {
    margin-right: 2rem;
    min-width: 8rem;
}

footer {
    color: white;
    margin-top: 1rem;
    box-shadow: 0 -2px 4px rgb(0 0 0 / 10%);
}

.dropdown-toggle button {
    all: unset;
    cursor: pointer;
}

.dropdown-toggle button:hover {
    opacity: 0.8;
}

.dropdown-toggle button::after {
    content: "▼";
    font-size: 0.5rem;
    margin-left: 0.5rem;
}

.menu-dropdown {
    position: fixed;
    left: 0;
    top: 76px;
    width: 100%;
    z-index: 100;
    background-color: #2b3b3a;
}

.menu-dropdown>div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.menu-dropdown ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.big-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid lightgrey;
    padding: 1rem;
    background-color: #3b5150;
}

.big-link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
}

.text-link {
    display: flex;
    border: 1px solid lightgrey;
    padding: 1rem;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    width: 200px;
}

.switcher-tab {
    border-bottom-width: 0;
    white-space: nowrap;
    margin-top: 1rem;
}

@media (max-width: 1000px) {
    .no-padding-mobile {
        padding: 0 !important;
    }

    .menu-dropdown {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background-color: #2b3b3a;
        padding: 1rem;
    }

    .menu-dropdown>div {
        padding: 0;
        width: 100%;
        position: relative;
    }

    .menu-dropdown>div::after {
        content: "×";
        position: absolute;
        top: 0;
        right: 2rem;
        color: white;
        font-size: 2rem;
        padding: 0.5rem;
        cursor: pointer;
    }

    .menu-dropdown ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin: 0;
        padding: 0;
        gap: 0;
    }

    .big-link {
        width: 100%;
        margin: 0.25rem 0;
        padding: 0.5rem;
        border: none;
        background-color: transparent;
        box-shadow: none;
        justify-content: flex-start;
    }

    .big-link a {
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.5rem;
    }

    .text-link {
        width: 100%;
        margin: 0.25rem 0;
        padding: 0.5rem;
        border: none;
        background-color: transparent;
        box-shadow: none;
        justify-content: flex-start;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0.5rem;
    }
}

.content {
    margin-top: 80px;
    min-height: 100vh;
    overflow: hidden;
    max-width: 100%;
}

.navbar-list {
    display: flex;
}

.navbar-list.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background-color: #3b5150;
}

#hamburger-toggle {
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    display: none;
}
.tiny-utility-bar {
    font-size: 0.75rem;
    margin-right: 1rem;
    position: absolute;
    right: 10px;
    top: 5px;
    text-transform: uppercase;
    color: lightgrey;
}
.currency-switcher {
    color: inherit;
    cursor: pointer;
}
.currency-switcher:visited {
    color: inherit;
}
.currency-switcher:hover {
    opacity: 0.8;
}

@media (max-width: 1000px) {
    .tiny-utility-bar {
        display: none;
    }
    #hamburger-toggle {
        display: block;
    }

    .width-100-mobile,
    .hero-column {
        width: 100% !important;
    }

    .img-500 {
        max-width: min(70vw, 500px) !important;
    }

    iframe {
        max-width: 100vw !important;
    }

    .shopping-cart-item-column {
        width: 100% !important;
    }

    .hero-column:nth-child(1)>p,
    .hero-column:nth-child(1)>.hero-text {
        margin-left: 0.5rem;
    }

    .testimonial-images {
        flex-direction: column;
    }

    /* Make this rule more specific */
    .navbar-list:not(.open) {
        display: none;
    }

    .navbar-list.open {
        display: flex;
        margin: 0;
        padding: 1rem;
        flex-direction: column;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background-color: #3b5150;
    }

    nav .home {
        justify-content: center;
    }

    #search {
        width: 75% !important;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 140px) !important;
        grid-template-rows: repeat(2, 140px) !important;
        grid-auto-flow: column;
        height: 280px !important;
        width: 280px !important;
    }

    .collection-grid img,
    .collection-grid a {
        height: 140px !important;
        width: 140px !important;
    }

    .tall-collection-grid {
        height: 280px !important;
        width: 280px !important;
    }

    .tall-collection-grid a {
        height: 280px !important;
        width: 280px !important;
    }
}

.workshop-area {
    border-top: 1px solid #3b5150;
    position: relative;
    z-index: 1;
}

.workshop-tabs {
    margin-top: 1rem;
    justify-content: left;
    margin-left: 1rem;
    position: relative;
    z-index: 2;
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 1rem;
}

.workshop-tab {
    border: 1px solid #3b5150;
    background-color: white;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    width: 200px !important;
    text-align: center;
    white-space: nowrap;
    min-width: 200px;
}

.workshop-tab img {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    display: block;
}

.workshop-tab:hover {
    opacity: 0.8;
}

.workshop-tabs a.active {
    color: white;
    background-color: #3b5150;
    border-bottom-color: #f8f8f8;
    font-weight: bold;
    box-shadow: 0 -2px 4px rgba(59, 81, 80, 0.1);
}

/* Add responsive behavior */
@media (max-width: 768px) {
    .workshop-tabs {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .workshop-tab {
        padding: 0.5rem 1rem;
    }
}

.expand-prompt-options {
    margin-left: 0.5rem;
}

.style-size-option {
    width: 50px;
    background: #ddd;
    margin-right: 8px;
}

.style-size-option.square {
    padding-bottom: 50px;
}

.style-size-option.landscape {
    padding-bottom: 17.8px;
}

.repeat-size-option {
    width: 50px;
    height: 50px;
    background: white;
    margin-right: 8px;
    position: relative;
    border: 1px solid #ccc;
    overflow: hidden;
}

.repeat-size-option::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #f8f8f8;
    background-image:
        linear-gradient(to right, #ddd 1px, transparent 1px),
        linear-gradient(to bottom, #ddd 1px, transparent 1px);
}

.repeat-size-option.large::before {
    background-size: 50% 50%;
}

.repeat-size-option.medium::before {
    background-size: 33% 33%;
}

.repeat-size-option.small::before {
    background-size: 25% 25%;
}

.fine-tune-choices {
    background-color: #f0f0f0;
    max-height: 400px;
    overflow-y: auto;
}

.fine-tune-choices-divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 1rem 0;
}

.workshop-finetune-choice {
    min-width: 300px;
    flex: 1;
}

.workshop-finetune-choice label {
    border: 2px solid #f0f0f0;
}

.workshop-finetune-choice label img {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.workshop-finetune-choice label:hover img {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.workshop-finetune-choice label.disabled {
    color: darkgray !important;
}

.workshop-finetune-choice:has(input:checked)>label,
.workshop-finetune-choice input:checked~label {
    border: 2px solid #3b5150;
}

.workshop-finetune-choice:has(input:checked)>label.disabled,
.workshop-finetune-choice input:checked~label.disabled {
    border: 2px solid black;
}

.workshop-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.hero.left {
    justify-content: flex-start;
}

/* Mobile Styles */
@media (max-width: 768px) {

    .mobile-filter-toggle,
    .filter-container.active {
        display: block;
    }

    .filter-container {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        overflow-y: auto;
        padding: 1rem;
    }

    .filter-container>* {
        margin: 0.5rem;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {

    .close-btn,
    .mobile-filter-toggle {
        display: none;
    }

    .filter-container {
        display: block !important;
    }
}

#tile-options {
    max-width: 1400px;
    margin: 0 auto;
}

.tile-search-styles {
    overflow-x: auto;
    padding: 0.75rem 0;
}

.tile-search-styles input {
    position: absolute;
    left: -9999px;
}

.style-filters-container {
    flex-wrap: nowrap;
    min-width: max-content;
    padding: 0 2rem;
}

.tile-search-styles {
    flex-shrink: 0;
}

.tile-search-styles input {
    opacity: 0;
}

.tile-search-styles input~label {
    font-weight: normal;
    font-size: 1rem;
}

.tile-search-styles input~label {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.tile-search-styles input:checked~label {
    border: 1px solid #3b5150;
}

#search {
    padding: 0.5rem 4rem 0.5rem 0.5rem;
    font-family: Vollkorn, serif;
    width: 50vw;
}

.hero-column {
    height: fit-content;
    padding: 1rem 3rem;
    width: 40%;
}

.width-100-mobile {
    width: 40%;
}

.centered-hero-column {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.hero-video {
    margin-bottom: 3rem;
}

.overflow-auto {
    overflow: auto;
}

.full-hero-image {
    max-height: 50vh;
}

@media (max-width: 768px) {
    .full-hero-image {
        height: 50vh;
        margin-top: 0.75rem;
        max-width: none;
        width: auto;
        object-fit: contain;
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
}

.product-tag {
    padding: 0.25rem;
    font-size: 0.75rem;
    margin-left: 0.25rem;
    width: fit-content;
    white-space: nowrap;
}

button.primary,
a.primary {
    background-color: darkgoldenrod;
    color: white !important;
    border: none !important;
    transition: transform 0.2s ease-out;
}

button.primary:disabled {
    background-color: #b8b8b8;
    color: #666666 !important;
    cursor: not-allowed;
    transform: none;
}

button.success,
a.success {
    background-color: darkgreen;
    color: white !important;
    border-color: darkgreen;
}

button.delete {
    margin: 0.5rem 0;
    background-color: darkred;
    color: white !important;
    border: none !important;
}

.zoom-set-centered {
    gap: 1.5rem;
    flex-direction: column;
    text-align: center;
}

.mural-banner-image {
    background-image: url('https://nqp-image-bucket.s3.eu-west-2.amazonaws.com/da51bba9-5f7e-4f9a-adc6-cc5d34ff4bba.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
}

.mural-banner-image a {
    color: white;
    background-color: rgb(0 0 0 / 90%);
}

.zoom-set-centered p,
.zoom-image-set p {
    margin: 0.5rem;
}

.zoom-image-set img {
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}

.image-set-image-container {
    margin-top: 0.5rem;
}

.all-styles-fine-tune {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid lightgray;
}

.workshop-tile-header {
    max-height: 5rem;
    overflow: auto;
}

.workshop-gallery-grid.htmx-request {
    background-color: #f8f8f8;
}

.gallery-item {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    padding: 1rem;
}

.workshop-gallery-grid .gallery-item {
    justify-content: space-between;
}

.gallery-item:has([data-bulk-select]:checked) {
    background-color: #f0f0f0;
}

.gallery-item-link {
    min-height: 250px;
}

.workshop-gallery-grid .gallery-item img {
    height: fit-content;
    box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
}


input[type="number"] {
    padding: 0.25rem;
    font-family: Vollkorn, serif;
    font-size: 1rem;
    width: fit-content;
    height: fit-content;
    max-width: 4rem;
}

.shopping-cart-discount {
    padding: 2rem 0;
    border-top: 1px solid lightgray;
}

.shopping-cart-discount .tall {
    height: 4rem;
}

.cart-warning {
    border-bottom: 1px solid lightgray;
}

.shopping-cart-list li:not(:empty) {
    max-width: 40rem;
}

.workshop-breadcrumbs a {
    justify-content: space-evenly;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0;
    width: 15rem;
    position: relative;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
    z-index: 1;
}

.workshop-breadcrumbs a+a {
    margin-left: -1rem;
}

.workshop-breadcrumbs .selected {
    background-color: #f0f0f0;
}

.workshop-breadcrumbs a:first-child {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.workshop-breadcrumbs a:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
}


#mailchimp-popup {
    font-family: Vollkorn, serif !important;
    background-color: white;
    border: 1px solid grey;
    position: fixed;
    bottom: 10vh;
    left: 3vw;
    z-index: 99;
    max-width: 500px;
}

#mailchimp-popup #mc_embed_signup .mc-field-group {
    display: flex !important;
    flex-direction: row;
}

#mc_embed_signup .mc-field-group input {
    border-radius: 0;
    padding: 0.2rem !important;
}

#mce-EMAIL,
#mc-embedded-subscribe {
    font-family: Vollkorn, serif !important;
    border-radius: 0 !important;
}

.no-right-border {
    border-right: 0 !important;
}

.order-item {
    flex-direction: column;
    margin-top: 0.25rem;
}

.fade-in {
    animation-name: fadeIn;
    animation-duration: 250ms;
    animation-timing-function: ease;
}

.tiled-bg {
    margin: 0;
    height: 400px;
    width: 100%;
    background-repeat: repeat;
    background-size: 200px 200px;
    overflow-x: scroll;
    background-image: var(--background-image);
}

.tiled-bg.gridlines {
    background-image: linear-gradient(to right, #aaa 1px, transparent 1px),
        linear-gradient(to bottom, #aaa 1px, transparent 1px),
        var(--background-image);
}

.scroll-container {
    height: 500px;
    overflow-x: scroll;
}

.scroll-container .tiled-bg {
    height: 600px;
}

.slideshow .tiled-bg {
    height: 650px;
}

#gallery-grid {
    overflow-y: scroll;
}

.social-buttons {
    justify-content: center;
    gap: 2rem;
    margin: 1.25rem;
}

.share-buttons {
    margin: 1rem 0;
}

#wall-body {
    background-color: #f8f8f8;
    border-top: 1px solid black;
}

.wall-setting {
    margin: 3rem 0;
}

.wall-setting input:disabled~label {
    color: darkgrey;
}

.wall-setting input:checked~label {
    border: 2px solid #3b5150;
}

.collections-border-above {
    border-top: 1px solid lightgray;
    text-align: center;
}

.collection-tags {
    min-height: 3rem;
    padding: 0.5rem 0;
}

.scrolling {
    flex-wrap: wrap;
    overflow-x: auto;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b5150 0%, #2c3e50 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 81, 80, 0.3);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 81, 80, 0.4);
}

.feature-description {
    color: #6c757d;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.feature-description a {
    color: #3b5150;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-weight: 600;
}

.feature-description a:hover {
    border-bottom-color: #3b5150;
    color: #2c3e50;
}
.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.collections-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);    
}

.collections-hero ul {
    list-style: none;
    display: flex;
    padding: 4rem 2rem;
    justify-content: normal;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 2rem;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d1d5db 50%, transparent 100%);
}


.wall-grid {
    display: grid;
    max-width: 80vw;
    max-height: 100vh;
    overflow: auto;
    grid-template-columns: repeat(var(--tile-width, 4), minmax(15vh, 0.25fr));
}

:root {
    --collections-tile-size: 150px;
}

.collection-grid {
    display: grid;
    gap: 0;
    width: calc(var(--collections-tile-size) * 4);
    height: calc(var(--collections-tile-size) * 3);
    overflow: hidden;
    grid-template-columns: repeat(4, var(--collections-tile-size));
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.03);
    /* Subtle inset shadow */
}

.collection-grid a {
    width: var(--collections-tile-size);
    height: var(--collections-tile-size);
}

.tall-collection-grid {
    display: flex;
    width: calc(var(--collections-tile-size) * 4);
    height: calc(var(--collections-tile-size) * 3);
}

.tall-collection-grid a {
    display: block;
    height: calc(var(--collections-tile-size) * 3);
    width: calc((var(--collections-tile-size) * 4) / 3);
    background-repeat: repeat;
    transition: transform 0.2s ease-out;
}

.tall-collection-grid a:hover {
    transform: translateY(-2px);
}


.expand-hover {
    transition: transform 0.2s ease-out;
}

.expand-hover:hover {
    transform: scale(1.02);
}

.squircle-corners {
    border-radius: 5px;
}

.gallery-item select,
.gallery-item input {
    border: 1px solid rgb(220, 220, 220);
    padding: 6px;
    font-size: 14px;
    width: 100%;
    margin: 4px 0;
}

.small-button.primary:hover {
    transform: scale(1.02);
}

.variations-grid {
    grid-template-columns: repeat(3, 140px);
}

.tableau-grid {
    display: grid;
    gap: 0;
    max-width: 80vw;
    max-height: 100vh;
    overflow: auto;
    grid-template-columns: repeat(16, minmax(1vw, 128px));
}

.tableau-grid img {
    display: block;
    aspect-ratio: 1/1;
    object-fit: fill;
    border-style: solid;
    border-width: 3px 0 0 3px;
    border-color: white;
    box-sizing: border-box;
}

.wall-grid img {
    display: block;
    height: 100%;
}

.empty-tile {
    aspect-ratio: 1/1;
    justify-content: center;
    border: 1px solid white;
    color: white;
}

.wall-selected-tiles {
    overflow-x: auto;
    max-width: 100%;
}

.wall-selected-tiles > * {
    width: 200px;
    flex-shrink: 0;
}

.testimonial-images {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.image-container {
    flex: 1;
    flex-direction: column;
}

.testimonial-images img {
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    max-width: 100%;
    height: auto;
}

.testimonial-caption {
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.step-container {
    gap: 4rem;
}

.draggable {
    cursor: grab;
    aspect-ratio: 1 / 1;
}


.draggable.dragging {
    opacity: 0.5;
    cursor: grabbing;
}

.slideshow {
    display: flex;
    position: relative;
    height: 450px;
    max-width: 100vw;
    background-color: white;
}

.slideshow img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.slideshow p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white !important;
}

.slideshow p>a {
    color: white !important;
}

.slideshow>div {
    position: relative;
    width: 100%;
}

.slideshow> :not(.active) {
    display: none;
    transition: opacity 1s ease-in-out;
}

.slideshow>a {
    display: block !important;
}

.slideshow iframe.active,
.slideshow img.active,
.slideshow div.active {
    display: block;
}

.slideshow .medium-wallpaper.active {
    display: grid;
    width: 403px;
}

.slideshow .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    background-color: rgb(0 0 0 / 50%);
    cursor: pointer;
    user-select: none;
    z-index: 1;
}

.slideshow .arrow.prev {
    left: 0;
}

.slideshow .arrow.next {
    right: 0;
}

.slideshow-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    cursor: pointer;
}

.tag {
    width: fit-content;
    font-style: italic;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    color: white !important;
    text-decoration: none !important;
}

.tag-filter {
    background-color: white;
    color: #3b5150 !important;
    border: 2px solid #3b5150;
}

.grey-squares {
    display: grid;
    grid-gap: 2px;
    width: 100px;
}

.grey-square {
    background-color: grey;
    aspect-ratio: 1;
}

.newsletter-signup {
    flex-direction: column;
    max-width: 600px;
    text-align: center;
}

input.letters-input {
    text-transform: uppercase;
    text-decoration: underline;
    letter-spacing: 0.5rem;
    outline: none;
    border: none;
    background-color: white;
    font-size: 2rem;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
    /* This helps with filling gaps */
    gap: 1rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mosaic-grid>* {
    width: 100%;
    height: auto;
    /* Let height be determined by aspect ratio */
    display: block;
}

.grid-2x2 {
    grid-column: span 2;
    grid-row: span 2;
}

.grid-2x1 {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0.75rem;
    }

    .grid-2x2 {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* Mobile breakpoint */
@media (max-width: 480px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .grid-2x2,
    .grid-2x1 {
        grid-column: span 2;
        grid-row: auto;
    }
}

.news-column {
    width: 85%;
}

.news-item {
    border-bottom: 1px solid rgba(59, 81, 80, 0.1);
    padding: 3rem 0;
    transition: background-color 0.3s;
}

.news-item:hover {
    background-color: rgba(59, 81, 80, 0.02);
}

.news-item:first-child {
    padding-top: 0;
}

.news-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    font-weight: 400;
}

.news-item img {
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(59, 81, 80, 0.12);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    margin: 1.5rem 0;
}

.news-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 81, 80, 0.16);
}

.home-page-gallery-items .gallery-item {
    width: 200px;
}

.press-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    color: #3b5150;
}

.press-links a {
    white-space: nowrap;
    color: #3b5150;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(150px, 1fr));
    position: relative;
    padding: 1rem 0;
}

.home-grid img {
    width: 100%;
}

.home-grid-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: 300px;
    background: white;
    padding: 2.5rem;
}
.testimonial-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    margin: 0;
    margin-bottom: 0.5rem;
}

.testimonial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.colour-choice input {
    appearance: none;
    width: 5rem;
    height: 2.5rem;
    cursor: pointer;
    margin: 0;
    transition: all 0.2s ease;
    font-size: 0.5rem;
}

.colour-choice span {
    color: white;
    position: absolute;
    pointer-events: none;
    font-size: 0.75rem;
    transform: translateX(-50%);
    left: 50%;
}

.colour-choice {
    position: relative;
}

.colour-choice:hover {
    opacity: 0.8;
}

.colour-choice:has(input:checked) {
    border: 2px solid #3b5150;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(59, 81, 80, 0.2);
    position: relative;
}

.colour-choice:has(input:checked)::after {
    content: '✓';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #3b5150;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    box-sizing: border-box;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 30px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch input:checked+.slider {
    background-color: #3b5150;
}

.switch input:checked+.slider:before {
    transform: translateX(1px);
}

.skeleton-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    height: 200px;
    width: 200px;
}

.skeleton-loading .img-200 {
    display: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.draggable-tile {
    border: none;
    cursor: grab;
    aspect-ratio: 1 / 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: manipulation;
}

.draggable-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.draggable-tile.dragging {
    z-index: 1000;
    position: relative;
}

.wallpaper-canvas {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 100px));
    gap: 2px;
    margin: 0 auto;
    min-width: 0; /* Prevents grid from overflowing on narrow screens */
}

.tiny-wallpaper,
.medium-wallpaper {
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    grid-template-rows: repeat(7, 1fr); 
    gap: 1px; 
}

.canvas-cell {
    aspect-ratio: 1;
    background-color: #f5f5f5;
    border: 1px dashed #ccc;
    padding: 0;
    overflow: hidden;
}

.pattern-controls {
    background: #f5f5f5;
    padding: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pattern-controls {
        flex-wrap: wrap;
    }
}


.pattern-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.pattern-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pattern-button:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pattern-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.product-link {
    color: #2c3e50;
    text-decoration: none;
}

.product-link:hover {
    color: #0066cc;
}

.product-specs {
    color: #666;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.engaged-button {
    background: #0066cc;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.engaged-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: lightgray;
}

.engaged-button:hover:not(:disabled) {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.engaged-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.tile-wallpaper-gallery-column {
    flex: 1;
    min-width: 300px;
}

.tile-wallpaper-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 150px));
    gap: 1px;
    margin: 0 auto;
    min-width: 0;
}

@media (max-width: 768px) {
    .tile-wallpaper-gallery-column {
        width: 100%;
        min-width: 100%;
    }
    .tile-wallpaper-gallery-grid {
        max-height: 1000px;
        grid-template-columns: repeat(4, minmax(0, 150px));
        overflow-y: auto;
    }
}

.tile-wallpaper-gallery-slideshow {
    width: 403px;
    height: 706px;
}

.tile-wallpaper-gallery-image {
    height: 706px;
    width: 403px;
    object-fit: cover !important;
}