* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    overflow-x: hidden;
}

/*FONTS*/
@font-face {
    font-family: "aboreto";
    src: url(../fonts/Aboreto-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "quicksand";
    src: url(../fonts/Quicksand-VariableFont_wght.ttf);
    font-weight: normal;
    font-style: normal;
}

/*END*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "aboreto";
}

p {
    font-family: 'quicksand';
}

.radius {
    border-radius: 8px;
}

.align {
    text-align: center;
}

button {
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    background-color: white;
    outline: none;
    padding: 0.1rem 1rem 0.1rem 1rem;
    border: none;
    box-shadow: var(--shadow);
    font-family: 'Aboreto';
}


/*COLOURS*/
:root {
    --light-blue: #CDD4D9;
    --medium-blue: #A7BAC8;
    --mobile: #92b1c8;
    --dark-blue: #838E97;
    --darkest-blue: #5c616c;
    --shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/*END*/

/*FLEX*/
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-col {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-start {
    align-items: start;
}

.flex-between {
    justify-content: space-between;
}

.flex-even {
    justify-content: space-evenly;
}

/*END*/

img {
    object-fit: cover;
}

a {
    position: relative;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
}

.privacy-policy {
    padding: 7rem 2rem 2rem 2rem;
}

.privacy-policy h1,
.privacy-policy h2,
.privacy-policy h3 {
    font-family: sans-serif;
}

.privacy-policy ul,
.privacy-policy ol {
    list-style-type: disc;
    list-style-position: outside;
    margin: 1em 0;
    padding-left: 40px;
}

.privacy-policy p {
    width: 20rem;
}

.privacy-policy ul {
    width: 20rem;
    margin-bottom: 5rem;
    height: fit-content;
}



.desk-nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    outline: none;
    border: none;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: -2px;
    left: 0;
    letter-spacing: 1em;
}

/*expands to full width of container on hover*/
a:hover::after {
    width: 100%;
}

a {
    padding-bottom: 2px;
}



/*HEADER / NAV*/
.desk-nav {
    display: none;
}

.desk-nav .active-nav {
    color: white;
}

.navigation .active-nav {
    text-decoration: underline;
}

.mobile-nav {
    width: 100%;
}

.mobile-nav a {
    color: var(--light-blue);
}

.icons {
    position: fixed;
    right: 0rem;
    top: 1rem;
    width: 40%;
    font-size: 1.3rem;
}

.basket-icon {
    display: flex;
    justify-content: start;
    position: relative;
    bottom: 0.12rem;
}

.items-icons {
    display: flex;
    justify-content: end;
    width: 80%;
}

.items-icons .fa-heart {
    margin-right: 2rem;

}

.items-icons a {
    margin-top: -0.25rem !important;
}

.logo {
    border-radius: 50px;
    position: fixed;
    left: 19px;
    top: 8px;
}

header {
    background-color: var(--dark-blue);
    padding: 0.8rem 1rem 0.8rem 1.2rem;
    display: flex;
    align-items: start;
    justify-content: space-between;
}


.head {
    width: 100vw;
    position: fixed;
    z-index: 1000;
}

header h1 {
    font-size: 1.3rem;
    font-family: "italiana";
}

.hamburger-container {
    width: 2.7rem;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    cursor: pointer;
}

.hamburger {
    width: 75%;
    height: 75%;
    background-color: var(--darkest-blue);
    border-radius: 1rem;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.hamburger-1,
.hamburger-3 {
    animation-duration: 700ms;
}

.hamburger-2 {
    width: 50%;
    animation-duration: 500ms;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        transform: scale(.5);
    }
}

@keyframes flipDown {
    100% {
        transform: rotate(45deg) translate(6px, 7px);
    }
}

@keyframes flipUp {
    100% {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}


.navigation {
    display: none;
    width: 100%;
    background-color: var(--dark-blue);
    margin: 4rem 0rem 1rem -9rem;
}

.navigation li {
    margin-left: -2rem;

}

.navigation a,
.desk-nav a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.desk-nav a:hover {
    color: white;
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

ul {
    list-style: none;
    width: 45%;
    justify-content: space-evenly !important;
    height: 12rem;
    margin-left: 2rem;
}

li {
    text-align: left;
    font-family: sans-serif;
    /* font-weight: 500; */
    border-radius: 10px;
    padding: 0.5rem 0.8rem;
    background-position: right;
    opacity: 0;
    /* Start with hidden items */
    transform: translateY(10px);
    /* Optional: add a bit of movement initially */
    transition: opacity 0.5s ease, transform 0.5s ease;
    /* Animation properties */
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    /* Reset the transform for the fade-in effect */
    transition: opacity 0.4s ease-in, transform 0.4s ease-in;
    /* Adjust duration as */
}

.title {
    background-color: white;
}

.title h1 {
    font-family: "Aboreto";
    font-weight: bold;
    margin-top: 0.3rem;
    letter-spacing: 0.2em;
    font-size: 1rem;
}


/*END*/

/*FOOTER*/
footer {
    padding: 2rem;
    background-color: var(--medium-blue);
}

footer h6 {
    font-weight: bold;
}
.shop-footer{
    position:relative;
    z-index: 9999;
}
.cards {
    width: 12rem;
    height: 2rem;
    margin-bottom: 3rem;
}

.socials {
    margin: 5rem 0rem 0.5rem 0rem;
}

.socials img {
    margin: 0rem 0.7rem 0rem 0.7rem;
}

.footer-links {
    margin-top: 2rem;
}

.ft-info {
    padding-right: 3.5rem;
}


/*END*/



/*HOME*/
.banner {
    width: 100vw;
    height: 40rem;
    background-image: url(../images/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.banner h1 {
    margin-top: 5rem;
    color: white;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}

.banner h1 span {
    font-weight: normal;
    font-size: 2.4rem;
}

.cta-container {
    margin-top: 3rem;
}

.cta button,
.cta2 button {
    background-color: var(--light-blue);
    color: rgb(22, 21, 21);
    font-weight: bold;
}

.cta button:hover,
.cta2 button:hover,
.cta3 button:hover {
    background-color: var(--medium-blue);
}

.cta {
    padding: 1.5rem;
    color: white;
    font-weight: bold;
}

.cta2 {
    color: white;
    padding: 0.8rem;
}

.cta2 h1 {
    font-size: 1rem;
}

.cta2 button {
    font-size: 0.7rem;
}

.background-img1, .background-img2, .background-img3{
    filter: brightness(98%);
}

.cta-2 {
    width: 23rem;
}

.background-img1,
.background-img2,
.background-img3 {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    align-items: start;
    justify-content: end;
}

.background-img1 {
    background-image: url(../images/candle.jpg);
    height: 25rem;
    width: 23rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.background-img2 {
    background-image: url(../images/basket.png);
    height: 12rem;
    width: 11rem;
}

.background-img3 {
    background-image: url(../images/bag.png);
    height: 12rem;
    width: 11rem;
}

.search-cont {
    position: relative;
    border-radius: 20px;
    background-color: transparent;
}

#search,
#deskSearch {
    border: 1px solid var(--darkest-blue);
    border-radius: 20px;
    height: 1.5rem;
    width: 10rem;
    position: absolute;
    right: 0;
    padding: 0rem 0.8rem 0rem 0.8rem;
    font-size: 0.8rem;
    background-color: rgb(243, 243, 243);
}

#search:hover,
#search:active,
#search:focus,
#deskSearch:hover,
#deskSearch:focus,
#deskSearch:active {
    cursor: pointer;
    outline: none;
    border: 2px solid var(--darkest-blue);
    background-color: white;
}

.searchIcon,
.mobileSearch {
    z-index: 10;
    margin-right: 1rem;
    font-size: 1rem !important;
    margin-top: 0.2rem;
}

.bs-cont {
    margin-top: 4rem;
    background-color: var(--light-blue);
    padding: 2rem 0rem 2rem 0rem;
}

.bestseller-title {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 5rem;
}

.bestseller-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: 1.5em;
    width: 100%;
}

.bestsellers,
.slider {
    width: 100%;
}

.bs-item {
    color: white;
}

.aboutUs,
.ordering {
    align-items: center;
}

.aboutUs h1,
.ordering h1 {
    border-bottom: 1px solid var(--darkest-blue);
    padding-bottom: 1rem;
    width: 18rem;
}

.aboutUs img,
.ordering img {
    width: 100%;
    height: 30rem;
    margin-bottom: 3rem;
}

.aboutUs p,
.ordering p {
    margin-bottom: 3rem;
    padding: 1rem 3rem 0rem 3rem;
}

.ordering button,
.aboutUs button {
    background-color: var(--darkest-blue);
    color: white;
    padding: 0.4rem 1rem 0.4rem 1rem;
    margin-bottom: 3rem;
}

.ordering button:hover,
.ordering button:active,
.ordering button:focus,
.aboutUs button:hover,
.aboutUs button:active,
.aboutUs button:focus {
    background-color: var(--dark-blue);
}



/*SLIDER HOME PAGE SPLIDE*/
.splide__pagination {
    display: none !important;
}

#splide01 {
    margin: 5rem 0rem 5rem 0rem;
    width: 80%;
}

.splide__track {
    height: 20rem !important;
}

/*SLIDER HOME PAGE SPLIDE*/
.splide__pagination {
    display: none;
}

.splide-cont {
    margin: 7rem 0rem 10rem 0rem;
    width: 100%;
    height: 12rem;
}

#splide01 .splide {
    width: 90% !important;
}

.splide {
    width: 90%;
}

#splide01 {
    margin: 5rem 0rem 5rem 0rem;
}

.bs-item {
    text-align: center;
    box-shadow: var(--shadow);
    border: 8px solid white;
    font-family: 'Aboreto';
    font-weight: bold;
}

.bs-item:hover {
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    cursor: pointer;
}

.bs-desc p {
    font-size: 0.8rem;
    margin-top: 0.4rem;
    margin-bottom: 0rem;
}
.bs-desc strong{
        white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bs-item img {
    width: 100%;
    height: 20rem;
    position: relative;
    filter: brightness(0.75);
}

.bs-item .overlay {
    position: absolute;
    top: 10%;
    /* Moves overlay to the middle vertically */
    left: 50%;
    /* Moves overlay to the middle horizontally */
    transform: translate(-50%, 750%);
    z-index: 999;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: var(--shadow);
    font-family: 'Aboreto';
    text-align: center;
    width: 80%;
    max-width: 25rem;
}

.accordion {
    background-color: var(--light-blue);
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: var(--medium-blue);
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease-in-out;
    /* Optional smooth fade */
}

.panel p {
    padding-top: 0.6rem;
}

.accordion:after {
    content: '\25BC';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\25B2";
}

.faq {
    padding: 2rem;
}

.faq-title {
    padding: 0rem 0rem 3rem 2rem;
}

.faq-title h2 {
    font-size: 3rem;
}

.faq img {
    display: none;
}

.acc-border {
    padding-top: 1rem;
    border-top: 2px solid var(--medium-blue);
    border-bottom: 2px solid var(--medium-blue);
    overflow: visible;
}

.new {
    padding: 2rem;
}

.new-img-cont {
    width: 100%;
}

.new-info {
    padding: 2rem 0rem 2rem 0rem;
}

.new-info strong {
    border-top: 1.5px solid var(--dark-blue);
    border-bottom: 1.5px solid var(--dark-blue);
    padding: 0.3rem;
}

.new-info h1 {
    margin-bottom: 2rem;
}

.harris-imgs img {
    width: 50%;
}

.harris-imgs img:first-child {
    padding-right: 0.3rem;
}

.harris {
    width: 100%;
    padding-top: 0.3rem;
}

.harris-hidden {
    display: none;
}

.home-cafe {
    background-image: linear-gradient(to left, rgba(17, 16, 16, 0.8), rgba(76, 76, 76, 0)), url(../images/gallery/cafe_edit.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 30rem;
    color: white;
    position: relative;
    margin: 2rem 0rem 2rem 0rem;
}

.cafe-text {
    position: absolute;
    bottom: 2rem;
    text-align: right;
    right: 1rem;
}

.cafe-text h3 {
    font-weight: bold;
}

.cafe-text em {
    background-color: var(--light-blue);
    padding: 0.3rem 0.6rem 0.3rem 0.6rem;
    border-radius: 8px;
    color: var(--darkest-blue);
    transition: underline 0.3s ease-in-out;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.cafe-text p {
    padding: 0rem 0rem 0rem 6rem;
    font-size: 0.8rem;
    font-weight: bold;
}


/*END*/


/*CONTACT PAGE*/
.contact-banner {
    height: 32rem;
    background-image: url(../images/gallery/exterior.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

.visit-banner {
    padding: 1rem;
    background-color: var(--darkest-blue);
    color: white;
    height: 15rem;
    width: 65%;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.contact-header {
    width: 100%;
    height: 8rem;
    margin-top: 10rem;
}

.contact-header img {
    width: 80%;
}

.contact-info {
    margin-top: 5rem;
    padding: 0.5rem;
    width: 100%;
}

#contact-alert{
    background-color: var(--medium-blue);
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1rem 2.5rem 1rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    color: white;
}


.visitUs {
    border-bottom: 1px solid black;
    width: 80%;
}


.opening-times {
    margin-top: 2rem;
}



.opening-times .times {
    margin-left: 1.5rem;
}



.details {
    align-items: start;
    width: 80%;
    margin-top: 2rem;
}

.fa-envelope,
.fa-phone {
    font-size: 1.2rem;
    padding: 0.2rem 0.6rem 0rem 0rem;
}

.phone,
.email {
    justify-content: start;
    align-items: start;
}

.map {
    margin-top: 3rem;
    margin-bottom: 4rem;
    width: 80%;
    height: 20rem;
    background-color: var(--dark-blue);
}

.map iframe {
    width: 100%;
    height: 20rem;
    border-radius: 8px 8px 0px 0px !important;
}

.map-info {
    margin: 2rem 0rem 0rem -10rem;
    color: white;
    padding-bottom: 2rem;
}

.map-info h1 {
    padding-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 1px solid var(--light-blue);
    margin-bottom: 1.5rem;
}



.contact {
    width: 80%;
    margin: 0rem;
    padding: 0rem;
    border-radius: 10px;
    border: 1.5px solid var(--darkest-blue);
}

.contact-title {
    background-color: var(--medium-blue);
    margin-bottom: -0.5rem;
    border-radius: 8px 8px 0px 0px;
    padding: 0.5rem 0rem 0.5rem 0rem;

}

.form-cont {
    width: 100%;
    margin-top: 10rem;
}


form {
    color: white;
    padding: 2rem 0rem 1rem 0rem;
    border-radius: 0px 0px 8px 8px;
}

form label {
    color: var(--darkest-blue);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

form input,
form textarea {
    border-radius: 8px;
    outline: none;
    border: 1.5px solid var(--medium-blue);
    width: 15rem;
    padding: 0.2rem;
}

form input:hover,
form input:focus,
form input:active,
form textarea:hover,
form textarea:active,
form textarea:focus {
    border: 1.5px solid var(--darkest-blue);
    border-radius: 7px;
    outline: none;
    cursor: pointer;
}



.message {
    /* Set width to fit your layout */
    line-height: 1.5rem;
    resize: none;
    overflow: hidden;
    height: 8rem;
}

.form-name::placeholder,
.message::placeholder,
.form-email::placeholder {
    font-style: italic;
}

form .send {
    margin: 0rem 0rem 1rem 0rem;
    border-radius: 20px;
    background-color: white;
    color: var(--darkest-blue);
    font-weight: bold;
    border: 2px solid var(--darkest-blue);
    box-shadow: var(--shadow);
    transition: letter-spacing 0.3s ease-in-out;
    transition: letter-spacing 0.3s ease-in-out, transform 0.3s ease-in-out;
}


form .send:hover,
form .send:active,
form .send:focus {
    border-radius: 20px;
    letter-spacing: 0.2em;
    background-color: var(--light-blue);
}

/*PRODUCTS PAGE*/
.filtersColours,
.filtersBrands {
    border-bottom: 1px solid black;
    padding: 0.5rem 0rem 0.5rem 0rem;
    align-items: start;
    margin-top: 1rem;
}

.filtersColours {
    margin-top: 1rem !important;
}



.colour {
    align-items: start;
    width: fit-content;
    justify-content: start;
    padding-right: 1rem;
}

.colour img,
.radio {
    margin: 0.3rem 0.5rem 0rem 0rem;
}


select {
    margin-top: 0.5rem;
}

/*filters*/
.brands,
.colours {
    align-items: start;
}


#applyFilters {
    border: 2px solid var(--dark-blue);
}

#clearFilters {
    background-color: white;
    border: 2px solid var(--dark-blue);
    color: var(--dark-blue);
}

.filter-cont {
    align-items: end;
}

.filters {
    width: 100%;
}

.filter-main {
    padding-left: 1rem;
}

.filter-btn-container {
    width: 100vw !important;
    display: flex;
    justify-content: start;
}

#filterButton {
    padding: 0rem;
    background-color: white;
    color: var(--darkest-blue);
    box-shadow: none;
    font-weight: bold;
    cursor: pointer;
    margin-left: 1rem;
}

#arrow {
    transition: transform 0.3s ease;
}

#toggleCheckbox:checked+label #arrow {
    transform: rotate(180deg);
}

.arrow-down {
    width: 0.8rem;
    height: 0.8rem;
    padding-bottom: 0.2rem;
    margin-left: 0.5rem;
}


.filters-mob {
    width: 100vw !important;
    display: flex;
    justify-content: start !important;
}

#filters {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    transform: scale(0.8);
    width: 25rem;
    margin: -4rem 0rem 0rem -1rem;
}

.filterButtons {
    margin-top: 1.5rem;
    justify-content: start !important;
}

#clearFilters {
    margin-right: 1rem;
}

.categories-desk {
    display: none;
}

.categories-mobile {
    padding-left: 0.5rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* allows scrolling */
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100vw;
}

.categories-mobile::-webkit-scrollbar {
    display: none;
}

.categories-mobile {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-mob {
    /* necessary for scrolling above */
    flex-shrink: 0;
    padding: 0.3rem 2rem 0.3rem 2rem;
    background-color: var(--mobile);
    margin-right: -0.8rem;
    border-radius: 5px;
    transform: scale(0.8);
    color: white;
    font-family: 'Aboreto';
    cursor: pointer !important;
    font-weight: bold;
}

.category-mob:focus,
.category-mob:active {
    box-shadow: var(--shadow);
    background-color: var(--dark-blue);

}


/*PRODUCT DISPLAY*/




/*responsive grid layout*/
.main-container {
    min-height: 1000px;
    justify-content: start;
    padding-top: 8rem;
}

.prod-display {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 2rem;
}

.product {
    /* Adjust flex-basis for 4 items per row */
    flex: 1 1 calc(25% - 30px);
    /* 25% width for 4 items minus the gap */
    min-width: 200px;
    /* Optional: reduce to make items smaller */
    max-width: 250px;
    /* Optional: cap the size to control item growth */
    transform: scale(0.95);
}

.product:hover {
    cursor: pointer;
}

.product-img {
    display: flex;
    justify-content: center;
}

.product img {
    width: 100%;
    height: 65%;
    margin-bottom: 1rem;
}

.limited-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-div {
    display: none;
}

.product h6 {
    font-size: 0.9rem;
    font-weight: bold;
}

.product h6,
.product p {
    padding: 0rem 0.5rem 0rem 0.5rem;
}

.price-holder {
    display: flex;
    justify-content: space-between;
}

.product-brand {
    font-size: 0.8rem;
}

.price {
    font-weight: bold;
    font-size: 0.8rem;
}



.product h6.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    /* or set a specific width */
    display: block;
}

/*END*/



/* ITEM PAGE */
 .itemCartButton {
        margin-top: 3rem !important;
    }
.item-btn #unavailable {
    margin-top: 5rem;
    cursor: unset;
    background-color: lightgray;
    margin-top: -1.5rem;
}

.item-main {
    padding: 8rem 1.3rem 1.3rem 1.3rem;
}

.item-cont {
    padding: 1.5rem 1.5rem 0rem 1.5rem;
}

.item-content{
   transform: scale(0.9);
}

.item-content h1 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.item-content h2 {
    font-size: 1rem;
    margin-bottom: 1.4rem;
}

.item-content p {
    padding-right: 2rem;
}

.short-desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

#description-wrapper {
    overflow: hidden;
    max-height: 3.2em;
    transition: max-height 0.5s ease;
}

#description-wrapper.expand {
    max-height: 1000px;
}

.color-display {
    margin-top: -1rem;
    display: flex;
    flex-wrap: wrap;
}

.colours {
    margin-top: -1rem;
}

.color-display p {
    margin-right: 0.5rem;
}

.color-display a:active,
.color-display a:focus {
    border: white;
}

.price-quant {
    align-items: start;
}

.price-quant p {
    font-weight: bold;
    font-size: large;
    margin-right: 2rem;
    margin-top: 0.23rem;
}

.quant-label {
    font-size: 1.1rem;
}

.price-quant input {
    height: 1rem;
    width: 4.5rem;
    margin-left: 0.8rem;
    border-radius: 5px;
    outline: none;
    border: none;
    text-align: center;
    border: 2px solid var(--dark-blue);
}

.item-btn button {
    background-color: var(--dark-blue);
    color: white;
    width: 22rem;
    margin: 0.8rem 0rem 3rem -7.5rem;
    padding: 0.3rem 0rem 0.3rem 0rem;
}

.item-btn button:hover
 {
    background-color: var(--darkest-blue);
}

#slider1 {
    padding: 0rem;
}

#slider1 li {
    opacity: 1 !important;
}

#slider1 .item-list {
    width: 100%;
}

#slider1 .splide__list,
#slider1 .splide__track {
    height: fit-content !important;
    padding-bottom: 1rem;
}

#slider1 .item-img {
    /* height: fit-content !important; */
    aspect-ratio: 1 / 1;
}

#slider1 .item-img img {
    width: 100%;
    border-radius: 8px;
    /* height: 30rem; */
    object-fit: cover;
}

#slider1 .splide__pagination {
    display: none;
}

.recomend {
    margin-top: 3.5rem;
    text-align: center;
    font-weight: bold;
}

.recomend-item {
    box-shadow: none;
}

.recomend-item img {
    height: 12rem !important;
    width: 16rem;
    border-radius: 5px 5px 0px 0px;
    filter: unset;
    box-shadow: var(--shadow);
}

.recomend-desc {
    background-color: var(--dark-blue);
    width: 16rem;
    border-radius: 0px 0px 5px 5px;
    box-shadow: var(--shadow);
    padding-top: 1rem;
}

.cart-form {
    padding: unset;
    margin: unset;
}

.cart-form label,
.payment-form label {
    margin-bottom: 0rem;
    margin-top: 1.5rem;
    text-align: left;
    width: 15rem;
}

.basket-form {
    padding: unset;
}


/* brand section */
.brand-sect {
    background-color: var(--dark-blue);
    color: white;
    margin-bottom: 2rem;
}

.brand-sect div:first-child {
    padding: 1rem 2rem 1rem 2rem;
    text-align: center;
}

.brand-sect h6 {
    font-family: 'Aboreto';
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid white;
    padding-bottom: 1rem;
}

.brand-sect p {
    font-size: 0.9rem;
    line-height: 2;
}

.brand-sect img {
    width: 100%;
    height: 100%;
}

.favorite-btn {
    font-size: 1.5rem;
    cursor: pointer;
}
.cart-btn {
    display: block; /* or inline-block */
    font-size: small;
    font-family: 'Aboreto';
    border-radius: 5px;
    border: 2px solid transparent;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: var(--dark-blue);
    color: white;
    text-align: center;
}

.cart-unavailable{
    background-color: lightgrey;
    cursor: auto;
    font-size: smaller;
    font-family: 'Aboreto';
    border-radius: 5px;
    width: 100%;
    color: white;
    border: 2px solid transparent;
}

.cart-btn:hover,
.cart-btn:focus,
.cart-btn:active {
    background-color: white;
    border: 2px solid var(--dark-blue);
    color: var(--darkest-blue);
}
.favorite-icon {
    align-items: end;
    justify-content: space-between;
}

/* END */


/*IMAGE GALLERY*/
.gallery {
    padding-top: 8rem;
}

.img-container {
    height: 20rem;
}

.img-fluid {
    width: 100%;
    height: 100%;
}

/* image gallery modal */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll for large images */
    background-color: rgba(0, 0, 0, 0.8);
    /* Black with transparency */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

/* modal close button */
.modal .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    padding: 1px 10px 2px 10px;
    border-radius: 50%;
}

.modal-content {
    object-fit: contain;
    margin: auto;
    display: block;
    max-width: 50%;
    max-height: 90%;
    /* Ensure the image fits the screen */
    border: 2px solid white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

/* modal opening animation */
.modal-content {
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/*END*/

/* CAFE PAGE */
.cafe-gallery {
    padding: 1.5rem;

}

.menu-div {
    padding: 1rem;
}

.menuImg1 {
    margin-bottom: 2rem;
}

.menuImg1,
.menuImg2 {
    width: 20rem;
    border: 1px solid var(--dark-blue);
}

.cafe-main {
    padding-top: 10rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--medium-blue);
}

.cafebanner {
    background-image: url(../images/cafeheader.jpg);
    margin-top: -6rem;
    height: 33rem;
}

.cafe-title {
    width: 80%;
    padding: 0.3rem 0rem 0.3rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--dark-blue);
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.menu-heading {
    padding: 1rem 0rem 1rem 0rem;
    text-align: center;
    height: 95%;
    width: 95%;
    background-color: white;
    clip-path: polygon(0% 15%, 15% 15%, 15% 0%, 85% 0%, 85% 15%, 100% 15%, 100% 85%, 85% 85%, 85% 100%, 15% 100%, 15% 85%, 0% 85%);
}

.menu-heading h1 {
    font-size: 1.5rem;
}

.menu-title p {
    padding: 3rem 2rem 0rem 2rem;
}

/* BASKET / SHOPPING CART PROCESS */
.basket-counter {
    text-align: center;
    border-radius: 50px;
    width: 1.2rem;
    height: 1.2rem;
    background-color: rgba(55, 88, 130, 0.961);
    position: absolute;
    color: white;
    top: -0.2rem;
    left: 1rem;
    font-size: 0.8rem;
    position: absolute;
}

/*CAFE PAGE*/
.cafe-page {
    padding-top: 8rem;
}

.menu-title h1 {
    margin-bottom: 2rem;
}

.menu-border {
    color: transparent;
    width: 20rem;
    border-bottom: 2px solid black;
    z-index: 0;
    margin-top: 3rem;
}

.menu-title h2 {
    z-index: 999;
    margin-top: -1.2rem;
    background-color: white;
    padding: 0rem 1rem 0rem 1rem;
}

.cafe-imgs {
    justify-content: space-evenly;
    margin-bottom: 2rem;
}

.cafe-imgs img {
    width: 7rem;
    aspect-ratio: 3/2;
}

/* FAVORITES PAGE */
.product-item img {
    width: 10rem !important;
}

.favorites {
    padding: 4.2rem 0rem 0rem 0rem;
}

.favorites h1 {
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
    background-color: var(--dark-blue);
    padding: 0.5rem;
    color: white;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
}

.faves-background {
    box-shadow: var(--shadow);
    border-radius: 8px;
    padding: 0.5rem;
}

.product-item {
    cursor: pointer;
    background-color: var(--dark-blue);
    color: white;
    width: 15rem;
    height: 18.5rem;
}

.product-item img {
    width: 15rem !important;
    height: 13rem;
    border-radius: 8px 8px 0px 0px;
}

.product-item i {
    font-size: 1.2rem;
    padding-right: 0.2rem;
}

.favorite-title {
    margin-top: 0.5rem;
    justify-content: space-between;
    width: 100%;
}

.favorite-title h6 {
    font-size: larger;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 15ch;
    /* Adjusts based on character width */
}

.favorite-text {
    justify-content: space-between !important;
    align-items: start;
    text-align: left;
    height: 5rem;
    padding: 0.5rem 0.7rem 0.5rem 0.5rem;
}

.favorite-text p {
    margin-bottom: 0rem;
}

.empty-faves,
.empty-item {
    width: 100%;
    padding: 8rem 0rem 8rem 0rem;
}

/* CART */
.cart-cont {
    padding-top: 9rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cart-item {
    background-color: var(--light-blue);
    color: black;
    margin-bottom: 1.5rem;
    height: 5rem;
    width: 20rem;

}

.cart-item img {
    width: 5rem !important;
    height: 5rem;
    border-radius: 8px 0px 0px 8px;
}

.cart-item-text {
    margin-top: 0.35rem;
    padding: 0rem 0rem 0rem 1rem;
    font-size: 0.7rem;
    width: 100%;
    height: fit-content !important;
}

.cart-item-text h6 {
    max-width: 15ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-price {
    width: 40%;
    margin-top: -0.2rem;
}

.cart-total {
    margin: 2rem 0rem 2rem 0rem;
    padding: 2rem 1rem 1rem 1rem;
    background-color: rgba(225, 225, 225, 0.904);
}

.cart-total h6 {
    width: 15rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid black;
}

.cart-total-padding {
    padding: 1rem;
}

.total-info {
    margin-top: 2rem;
    width: 75%;
    text-align: left;
}

.subtotal,
.delivery,
.cartTotal {
    width: 100% !important;
    border-bottom: 1px solid black;
}

.cartTotal {
    font-weight: 800 !important;
    margin-top: 3rem;
}

.total-container img {
    margin-top: 3rem;
    width: 8rem;
}

.total-container button {
    width: 75%;
    margin: 1.5rem 0rem 1rem 0rem;
    background-color: var(--darkest-blue);
    padding: 0.2rem;
}

.total-container a {
    color: white;
}

.total-container button:hover {
    background-color: var(--medium-blue);
}

.cart-information {
    padding: 2rem 1rem 1rem 1rem;
}

.cart-information h6 {
    font-weight: bolder;
    border-bottom: 1px solid black;
    padding-bottom: 0.2rem;
}

/* CHECKOUT PAGE */
.checkout {
    padding: 6rem 1rem 2rem 1rem;
}

.cart-form {
    border: 1px solid var(--darkest-blue);
    padding: 2rem 1rem 2rem 1rem;

    box-shadow: var(--shadow);
    transform: scale(0.9);
}

.cart-form h1,
.payment-form h1 {
    transform: scale(0.9);
    color: black;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid black;
}

.payment-redirect,
.complete-payment {
    font-family: 'Aboreto';
    margin-top: 3rem;
    font-weight: bold;
    background-color: var(--darkest-blue);
    color: white;
    outline: none;
    border: none;
    box-shadow: var(--shadow);
    padding: 0.5rem;
}

.payment-redirect:hover,
.complete-payment {
    outline: none;
    border: none;
    background-color: var(--medium-blue);
}

.complete-payment {
    margin-bottom: 1rem;
}

.deleteCartItem {
    padding: 1rem 2rem 0rem 1rem;
    font-weight: bold;
    height: 2rem;
}

.empty-cart {
    padding: 10rem;
}

.cart-subtotal {
    margin-top: -0.6rem;
}


/* PAYMENT.PHP */
.payment-cards img {
    width: 3.9rem;
    padding: 0.5rem;
    border: 1px solid transparent;
}

.payment-cards {
    width: 15rem;
}

.payment {
    padding: 8rem 1rem 2rem 1rem;
}

.payment-cards img:hover,
.payment-cards img:active,
.payment-cards img:focus {
    cursor: pointer;
    border-radius: 10px;
    background-color: var(--medium-blue);
}

.selected {
    cursor: pointer;
    border-radius: 10px;
    background-color: var(--medium-blue);
}

.payment form div {
    align-items: start;
}

.payment-form {
    border: 1.5px solid var(--darkest-blue);
    box-shadow: var(--shadow);
}

.payment-form {
    width: 80%;
}

.complete-payment {
    background-color: var(--darkest-blue);
}

.complete-payment:hover {
    border: none;
    background-color: var(--medium-blue);
}

/* COOKIE */
#cookie-popup {
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--light-blue);
    color: black;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 9999;
    max-width: 800px;
    margin: auto;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#cookie-popup.visible {
    visibility: visible;
    opacity: 1;
}

#cookie-popup button {
    background: var(--darkest-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
}

#cookie-popup button:hover {
    background-color: var(--dark-blue);
}

.cart-contents,
.cart-info-cont {
    padding: 0rem 2rem 0rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}


/* confirmation page */
.confirmation-page {
    padding: 14rem 2rem 14rem 2rem;
}

.confirmation {
    background-color: var(--darkest-blue);
    color: white;
    padding: 3rem;
    text-align: center;
    transform: scale(0.8);
}

.confirmation h1 {
    border-bottom: 1px solid white;
    padding-bottom: 0.7rem;
}

.confirmation span {
    position: absolute;
    border: 1px solid white;
    border-radius: 50px;
    padding: 0rem 0.5rem 0rem 0.5rem;
    font-size: 1rem;
    top: 1.5rem;
    right: 1.5rem;
    color: white !important;
}

.confirmation span a {
    color: white;
}

@media screen and (min-width: 400px) {

    .cafe-imgs img {
        width: 10rem;
    }
}

@media screen and (min-width: 481px) {


    .privacy-policy p {
        width: 30rem;
    }

    .privacy-policy ul {
        width: 30rem;
    }

    .bs-item img {
        filter: unset;
        height: 12rem;
        object-fit: cover;
    }

    .bs-item .overlay {
        display: none;
    }

    .bs-desc {
        display: block;
        padding: 0.5rem;
        background-color: var(--dark-blue);
        width: 100%;
    }

    .recomend-item {
        box-shadow: var(--shadow);
    }

    .recomend-item img {
        height: 12rem !important;
        width: 100%;
    }

    .bs-item img {
        filter: unset;
        height: 12rem;
    }

    .bs-item .overlay {
        display: none;
    }

    .bs-desc {
        display: block;
        padding: 0.5rem;
        background-color: var(--dark-blue);
        width: 100%;
    }

    .item-btn button {
        width: 20rem;
        margin: 2rem 0rem 5rem -7rem;
    }

    .item-content {
        width: 80%;
        transform: scale(1);
    }
}

@media screen and (min-width: 650px) {
    
    .map {
    flex-direction: row;
    justify-content: start;
}

.map iframe {
    width: 60%;
    border-radius: 8px 0px 0px 8px !important;
}

.map-info {
    margin: 2rem 0rem 0rem 2rem;
}

    .cart-item-text h6 {
        max-width: unset;
    }

    .cart-item {
        width: 30rem;
    }

    .cart-total-padding {
        padding: 3rem;
    }

    .menuImg1,
    .menuImg2 {
        width: 20rem !important;
    }

    .confirmation {
        transform: scale(0.7);
    }

    .payment-form {
        transform: scale(0.8);
        width: 30rem;
        padding: 2rem;
    }

    .cart-form-responsive {
        display: flex;
        justify-content: space-evenly;

    }

    .privacy-policy p {
        width: 45rem;
    }

    .privacy-policy ul {
        width: 45rem;
    }

    .ft-info,
    .ft-info2 {
        justify-content: space-evenly;
    }

    /* ITEM PAGE */


    .item-content {
        height: 24rem;
        width: 90%;
        padding-left: 2rem;
    }

    .item-content h1 {
        font-size: 1.2rem;
        font-weight: bold;
    }

    .item-content h2 {
        font-size: 1rem;
        margin-bottom: 1.4rem;
    }

    .item-content p {
        padding-right: 0rem;
        font-size: 0.8rem;
    }

    .item-btn button {
        width: 30rem;
        margin: 2rem 0rem 5rem -5rem;
    }

    .item-content {
        width: 95%;
    }

    .short-desc {
        all: unset;
    }

    #description-wrapper {
        all: unset;
    }

    #description-wrapper.expand {
        all: unset;
    }

    #toggle-btn {
        display: none;
    }

    .price-quant p {
        font-size: large;
    }

    .price-quant input {
        width: 2rem;
    }

    /* END */
    .icons-desk {
        width: 18%;
    }

    .background-img1 {
        margin: 0rem;
        height: 35rem;
    }

    .cta-container {
        flex-direction: row;
        justify-content: center !important;
        align-items: center;
    }

    .cta-2 {
        flex-direction: column;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        align-items: end;
        height: 35rem;
    }

    .background-img2,
    .background-img3 {
        height: 17rem;
        width: 20rem;
    }

    .cta-2 h1 {
        font-size: 1.5rem;
    }

    .cta-2 button {
        font-size: 1rem;
    }

    .cafe-imgs img {
        width: 15rem;
    }

    .menuImg1,
    .menuImg2 {
        width: 35rem !important;
    }

    .menuImg1 {
        margin-bottom: 0rem;
    }
}


@media screen and (min-width: 854px) {

    .aboutUs img,
    .ordering img {
        height: 50rem;
    }

    .aboutUs p,
    .ordering p {
        padding-right: 7rem;
        padding-left: 7rem;
    }

    .product-div {
        justify-content: end !important;
        padding: 0rem 3rem 0rem 3rem;
        margin-top: 4rem;
        margin-bottom: 0rem !important;
        display: block;
    }

    .product-div div:first-child {
        width: 100%;
        background-color: var(--dark-blue);
        color: white;
        border-radius: 8px;
    }

    .product-div-info {
        padding: 0rem 3rem 0rem 2rem;
    }

    .product-div-info h1 {
        font-size: 1.6rem;
        font-weight: bold;
    }

    .product-div-info p {
        font-size: small;
    }

    .product-div img {
        width: 100%;
        height: 18rem;
        border-radius: 0px 8px 8px 0px;
    }
}

/*LAPTOP*/
@media screen and (min-width: 992px) {
    .items-icons .fa-heart {

    margin-top: 0.5rem;
    }
    #description{
        width: 29rem;
    }

    .basket-counter{
        background-color: rgba(172, 208, 255, 0.824);
    }

    .aboutUs {
        flex-direction: row;
        margin-top: 6rem;
    }

    .ordering {
        flex-direction: row-reverse;
        margin-bottom: 6rem;
    }

    .aboutUs img,
    .ordering img {
        width: 50%;
        /* height: 39rem; */
        margin-bottom: 0rem;
    }



    .cart-flex {
        display: flex;
        justify-content: space-evenly;
        padding-top: 6rem;
    }

    .cart-items {
        margin-top: 2rem;
    }

    .cart-cont {
        padding: 0rem;
    }

    .cart-total {
        width: 25rem !important;
    }

    .cart-total-padding {
        padding: 0rem;
    }

    .cart-item {
        margin-bottom: 0.8rem;
    }

    .product-div {

        justify-content: end !important;
        padding: 0rem 3rem 0rem 3rem;
        margin-top: 4rem;
        margin-bottom: 0rem !important;
        display: block;
    }

    .product-div div:first-child {
        width: 100%;
        background-color: var(--dark-blue);
        color: white;
        height: 18rem !important;
    }

    .product-div-info h1 {
        font-size: 1.2rem !important;
        margin-top: 1rem;
    }

    .product-div img {
        width: 20rem !important;
        height: 18rem;
    }

    .confirmation {
        transform: scale(0.6);
        position: relative;
    }

    .confirmation span {
        border: 2px solid white;
        border-radius: 50px;
        padding: 0rem 1.2rem 0.5rem 1.2rem;
        font-size: 1.8rem;
        right: 2.5rem;
    }

    .confirmation a {
        color: #ffffff;
    }

    .confirmation p {
        font-size: 2rem;
    }

    .cart-contents {
        padding: 0rem 3rem 0rem 3rem;
        display: flex;
        justify-content: space-evenly;
        align-items: start;
    }

    .cart-item {
        width: 30rem;
    }

    .total-container {
        height: 30rem;
        width: 20rem;
    }

    .total-container button {
        font-size: 0.8rem;
        width: 20rem;
        padding: 0.5rem;
    }

    .payment-form {
        width: 60rem;
    }

    .payment-form input {
        width: 18rem;
    }

    .card-desk-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .apply-margin {
        margin-right: 3rem;
    }

    .expiry,
    .security {
        width: 12rem !important;
    }

    .cart-info-cont {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-evenly;
    }

    .cart-information {
        width: 40%;
    }

    .cart-form label {
        width: 25rem;
    }

    header {
        padding: 0.3rem 0rem 0.3rem 0rem;
    }

    .desk-nav {
        display: block;
        width: 100%;
        text-align: center;
    }

    .desk-nav ul {
        text-align: center;
        width: 100%;
        font-size: 0.9rem;
    }

    .header-name {
        position: absolute;
        top: 1rem;
        left: 2rem;
    }

    .mobile-nav {
        display: none;
    }

    ul {
        all: unset;
    }

    li {
        all: unset;
        padding: 0.4rem 1.5rem 0.4rem 1.5rem;
        font-family: "italiana";
        background-position: right;
        border-radius: 25px;
    }

    li:hover,
    .hover:hover {
        background: linear-gradient(to right, var(--light) 50%, transparent 50%);
        background-size: 200% 100%;
        background-position: left;
        transition: background-position 0.2s ease-in-out;
    }

    .hover:hover {
        background: linear-gradient(to right, var(--background) 50%, transparent 50%);
        background-size: 200% 100%;
        background-position: left;
        transition: background-position 0.2s ease-in-out;
    }

    .desk-flex {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .products-footer {
        position: relative;
        z-index: 999;
    }

    .footer-flex {
        display: flex;
        justify-content: space-evenly;
        align-items: start;
    }

    .footer-links {
        margin-top: 0rem;
    }

    .ft-info {
        padding: 0rem;
    }

    .visit {
        margin-right: 12rem;
    }

    .links {
        margin-right: 10rem;
    }

    .icons-desk {
        width: 18%;
        right: 0rem;
        top: 0.3rem;
        transform: scale(0.85);
    }

    .icons-desk i {
        font-size: 1.3rem;
        transition: transform 0.2s ease-in-out;
    }

    .icons-desk i:hover {
        transform: scale(1.2);
        cursor: pointer;
    }

    /*HOME*/
    .banner h1 {
        font-size: 3rem;
        position: absolute;
    }


    .cafe-text h3 {
        font-size: 3rem;
    }

    .cafe-text a {
        font-size: 1.3rem;
    }

    .faq {
        flex-direction: row;
    }

    .faq img {
        display: block;
        width: 40%;
    }

    .accordion-cont {
        width: 60%;
        padding: 0% 5% 0% 5%;
    }

    .harris {
        display: none;
    }

    .harris-hidden {
        display: block;
    }

    .new {
        padding: 1rem;
        flex-direction: column-reverse;
    }

    .new-info {
        padding: 0rem 1rem 3rem 1rem;
    }

    .new-info p {
        padding: 0rem 10rem 0rem 10rem;
    }

    .harris-imgs {
        display: flex;
        justify-content: space-evenly;
    }

    .harris-imgs img {
        width: 30%;
    }

    .cafe-text {
        right: 2rem;
        padding-right: 1.5rem;
    }



    /*CONTACT PAGE*/

    .contact-desktop {
        flex-direction: row;
        transform: scale(0.8);
        height: 35rem;
    }

    .contact-map-form {
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
    }

    .map {
        flex-direction: row;
        justify-content: start;
        align-items: center;
        width: 80%;
        height: 20rem;

    }

    .map iframe {
        width: 65%;
        height: 20rem;
        border-radius: 8px 0px 0px 8px !important;
    }

    .map-info {
        margin-left: 2rem;
        color: white;
    }

    .map-info h1 {
        padding-bottom: 0.5rem;
        font-size: 1.5rem;
        font-weight: bold;
        border-bottom: 1px solid var(--light-blue);
        margin-bottom: 1.5rem;
    }

    .form-cont {
        width: 100%;
    }

    .contact {
        width: 100%;
    }

    form input,
    form textarea {
        width: 25rem;
    }

    .contact-info {
        padding-left: 2.5rem;
    }

    /*FILTERS*/
    #filterButton {
        margin-left: 2rem;
    }

    .filterButtons {
        flex-direction: column;

        justify-content: space-evenly !important;
        align-items: start !important;
        height: 8rem;
    }

    .filter-btn-container {
        all: unset;
    }

    .filters-mob {
        width: unset !important;
        overflow-x: scroll;
    }

    .filters {
        margin-top: -3rem;
    }

    .filter-cont {
        padding: 0rem;
        width: 15rem;
        height: 100vh;
        background-color: transparent;
        border-right: 2px solid var(--medium-blue);
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 120px;
        justify-content: start !important;
        align-items: start;
        z-index: 1;
        overflow-y: scroll;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    #filters {
        transform: scale(0.8);
        overflow-y: scroll;
        margin: -3rem -1rem -1rem -0.8rem
    }

    .prices {
        flex-direction: column;
    }


    #applyFilters,
    #clearFilters {
        width: 50%;
        padding: 0.2rem;
        margin-right: 0rem;
    }

    .categories-desk {
        display: block;
        margin-top: 3rem;
        margin-left: 2rem;
        width: 7rem;
        max-height: 400px;
        overflow-y: auto;
    }

    .category {
        cursor: pointer;
        font-style: italic;
        font-size: smaller;
    }

    .category:hover {
        font-weight: bold !important;
    }

    .subcategory {
        padding-left: 20px;
        font-weight: normal !important;
    }

    .subcategory-group {
        margin-top: 5px;
    }

    .categories-desk p {
        font-style: italic;
        font-size: smaller;
    }

    .categories-mobile {
        display: none;
    }

    .category {
        border-bottom: 1px solid var(--darkest-blue);
        padding-bottom: 0.5rem;
    }

    .category:hover {
        cursor: pointer;
        font-weight: 500;
    }

    .prod-display {
        margin-left: 15rem;
    }

    .main-container {
        padding-bottom: 30rem;
    }


    /* #slider1{
    display: flex;
    justify-content: center;
    align-items: center;
} */

    .itemCartButton {
        width: 13rem;
        font-size: 0.8rem;
    }

 

    .item-cont {
        flex-direction: row;
        height: fit-content;
    }

    .item-content {
        width: 60%;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    .item-content h1 {
        margin-top: 0rem;
        font-size: 1.2rem;
    }

    .item-cont input {
        width: 4rem;
        padding-bottom: 0.2rem;
        height: 1.2rem;
    }

    .item-btn button {
        width: 30rem;
        margin: 2rem 0rem 0rem -5rem;
    }

    .item-content p {
        font-size: 1rem;
    }

    /* .item-img{
    height: 25rem;
} */
    .favorite-icon {
        align-items: start;
    }

    /* brand section */
    .brand-sect {
        display: flex;
        flex-direction: row;
    }

    .brand-sect div:first-child {
        width: 40%;
        text-align: left;
    }

    .brand-sect h6 {
        margin-top: -3rem;
        margin-bottom: 3rem;
        text-align: left;
    }

    .brand-sect p {
        padding-right: 2.5rem;
    }

    .brand-sect .brand-img {
        width: 60%;
    }

    /* END */
    .background-img1 {
        width: 30rem;
        height: 40rem;
    }

    .cta-2 {
        width: 35rem;
        height: 40rem;
    }

    .background-img2,
    .background-img3 {
        width: 33rem;
        height: 19.5rem;
    }

    .product-div {
        justify-content: end !important;
        margin-top: 0rem;
        margin-left: 15rem;
        padding: 0rem 3rem 0rem 3rem;
        margin-bottom: 3rem;
        display: block;
    }

    .product-div div:first-child {
        width: 100%;
        color: white;
    }

    .product-div-info {
        padding: 0rem 3rem 0rem 2rem;
    }

    .product-div-info h1 {
        font-size: 1.6rem;
        font-weight: bold;
    }

    .product-div-info p {
        font-size: 0.8rem;
    }

    .product-div img {
        width: 100%;
        height: 18rem;
        border-radius: 0px 8px 8px 0px;
    }

    /* .splide{
    width: 90%;
} */
    .privacy-policy p {
        width: 60rem;
    }

    .privacy-policy ul {
        width: 60rem;
    }

    .filtersColours em {
        padding: unset;
        margin: unset;
        margin-bottom: 2rem;
    }

    .menu-div {
        flex-direction: row;
        padding-bottom: 4rem;
    }

    .cafe-imgs img {
        width: 25rem;
    }

    .favorites h1 {

        margin-top: 0rem;
        font-size: 1.8rem;

    }

    .menuImg1,
    .menuImg2 {
        width: 30rem !important;
    }
}

@media screen and (min-width: 1200px) {

    .product-div img {
        width: 100% !important;
    }

    .product-div-info h1 {
        margin-top: 2.5rem;
        font-size: 1.8rem;
    }

    .product-div-info p {
        padding: 0rem !important;
        font-size: 0.9rem;
    }

    .cart-flex {
        padding-top: 5rem;
    }

    .cart-items {
        width: 35rem;
    }

    .cart-item {
        width: 35rem;
    }


    .icons-desk {
        width: 12%;
    }

    #slider1 {
        width: 35% !important;
    }

    #search,
    #deskSearch {
        width: 12rem;
    }
}