:root {
    --primary-color: white;
    --accent-color: black;
    --text-color: black;
    --hero-text-color: white;
    --hover-button-background-color: pink;
    --footer-background-color: lightgrey;
    --footer-hover-color: orange;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    /* NOTE: Ensures the body doesn't exceed the viewport width */
    overflow-x: hidden;
    color: var(--text-color);
    font-size: 18px;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
}

section {
    margin-bottom: 2em;
}

h1 {
    color: var(--accent-color);
    margin: 0.625rem 0;
    text-transform: uppercase;
    background: none;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 50px;
}

h2 {
    color: var(--accent-color);
    background: none;
    text-transform: uppercase;
    font-size: 40px;
    font-family: 'Playfair Display', serif;
}

h3 {
    background: none;
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

h4 {
    background: none;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-size: x-large;
    font-weight: bold;
}

p {
    line-height: 1.6;
    text-align: center;
}

button {
    background-color: var(--accent-color);
    color: var(--hero-text-color);
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-size: small;
    padding: 5px 15px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

button:hover {
    background-color: var(--hover-button-background-color);
    color: var(--text-color);
    border-radius: 30px;
}

a {
    text-decoration: none;
    transition: color 0.3s ease;
}

input {
    background: var(--primary-color);
    padding-right: 15px;
}

hr {
    background-color: var(--accent-color);
    border: none;
    height: 2px;
}

.container {
    width: 100%;
}

/*Nav Bar*/
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    font-size: 30px;
    text-transform: uppercase;
    margin-right: 20px;
    color: var(--text-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    position: relative;
}

.navbar-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.nav-upper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.nav-socials {
    display: flex;
    gap: 1rem;
    margin: 1rem 4rem;
}

.currency-select {
    background: none;
    border: none;
    margin-right: 5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 40px;
    text-transform: uppercase;
    color: var(--text-color);
}

.nav-links li {
    padding: 0 15px;
    position: relative;
}

.nav-links li:hover {
    color: var(--footer-hover-color);
    text-decoration: underline;
}

.nav-lower {
    margin-right: 1rem;
}

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

.fa-bars,
.fa-times {
    visibility: hidden;
}

.nav-icons i {
    font-size: 20px;
    margin: 0 20px;
}

.nav-socials a,
.nav-icons a {
    display: inline-block;
    color: var(--accent-color);
    transition: transform 0.2s ease-in-out;
}

.nav-socials a:hover,
.nav-icons a:hover {
    transform: scale(1.1);
}

/* Submenu and hover image styles */
.submenu-container {
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    position: fixed;
    left: 0;
    margin-top: 25px;
    width: 100%;
    height: 65%;
    z-index: 1;
}

.has-submenu:hover .submenu-container {
    display: inline-block;
}

.hover-links {
    display: grid;
    position: absolute;
    left: 5%;
    top: 35%;
    gap: 18px;
}

.hover-links li {
    list-style: none;
}

.hover-links a {
    color: var(--text-color);
}

.hover-links li a:hover {
    color: var(--footer-hover-color);
}

.hover-image {
    position: relative;
    left: 58%;
    margin-top: 30px;
}

/* home page*/
.discount {
    background: #252424;
    color: var(--hero-text-color);
    padding: 5px 0 5px 0;
    text-align: center;
    text-transform: uppercase;
}

.hero {
    height: 100vh;
    width: 100vw;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
}

.hero-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-content h1 {
    font-size: 100px;
    color: var(--hero-text-color);
}

.hero-content button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

.hero-content button:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.slideshow-controls {
    justify-content: center;
    display: flex;
    background: none;
    margin-top: 10px;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    opacity: 1;
}

.active,
.dot:hover {
    background-color: var(--accent-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1800px;
}

.hero-grid .hero-grid-item {
    position: relative;
    overflow: hidden;
}

.hero-grid .hero-grid-item img {
    width: 100%;
    height: 600px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.hero-grid .hero-grid-item:hover img {
    transform: scale(1.1);
}

.hero-item-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: rgba(0, 0, 0, 0);
    padding: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.hero-item-overlay p,
.hero-item-overlay h1 {
    font-family: 'Playfair Display', serif;
    background: none;
    color: var(--primary-color);
}

.hero-item-overlay p {
    font-size: 20px;
    padding-bottom: 10px;
}

/*shop by section*/
.shop-by {
    text-align: center;
    padding: 1.25rem;
}

.shop-by h2 {
    color: var(--accent-color);
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shop-items .item {
    position: relative;
    overflow: hidden;

}

.shop-items .item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.shop-items .item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    color: var(--primary-color);
    z-index: 2;
    background-color: rgba(0, 0, 0, 0);
}

.overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 5px;
}

.shop-items button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 8px 30px;
    cursor: pointer;
    margin-top: 250px;
}

.shop-items button:hover {
    background-color: var(--hover-button-background-color);
    color: var(--text-color);
    border-radius: 30px;
}

/* promo section*/
.promo-section {
    background-image: url("../img/home/promo-backgroundImg.jpg");
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.promo-content {
    position: absolute;
    left: 15%;
    color: var(--text-color);
    background: none;
    padding: 10px;
    text-align: left;
}

.promo-content h2,
.care-content h2 {
    text-align: center;
    font-size: 60px;
}

.promo-content h3,
.care-content h3 {
    padding-bottom: 10px;
    text-align: center;
    color: var(--text-color);
}

.promo-content button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
    margin-left: 5rem;
}

.promo-content button:hover {
    background-color: var(--hover-button-background-color);
    color: var(--text-color);
}


.promo-content .read-more {
    display: inline-block;
    color: var(--primary-color);
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
}

.promotions {
    padding: 20px;
    text-align: center;
}

.promotions h1 {
    color: var(--accent-color);
}

.blog-posts {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
}

.blog-posts .post {
    width: 30%;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-posts .post img {
    width: 100%;
    height: 60%;
    transition: transform 0.3s ease;
}

.blog-posts .post:hover img {
    transform: scale(1.05);
}

.blog-content p {
    background: none;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 10px;
    color: var(--accent-color);
}

.blog-content h2 {
    background: none;
    text-transform: uppercase;
    font-weight: 500;
}

.care-tips {
    background-image: url('../img/home/care-tips-backgroundImg.jpg');
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 20px 0px;
    margin-left: auto;
    margin-right: auto;
}

.care-content {
    position: absolute;
    right: 10%;
    top: 20%;
    color: var(--text-color);
    background: none;
    padding: 10px;
    text-align: center;
}

.care-content button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.3s, color 0.3s;
}

.care-content button:hover {
    background-color: var(--hover-button-background-color);
    color: var(--text-color);
}

.pickup-info {
    position: relative;
    height: 500px;
}

.pickup-info-overlay {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    padding: 10px 20px;
    text-align: center;
    margin-right: 60px;
}

.pickup-info h2 {
    color: var(--text-color);
    background: none;
    font-size: 40px;
}

.pickup-info p {
    color: var(--text-color);
    background: none;
    font-size: 20px;
    padding-bottom: 15px;
}

.pickup-info-overlay button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px 30px;
    border: none;
    transition: background-color 0.3s, color 0.3s;

}

.pickup-info-overlay button:hover {
    background-color: var(--hover-button-background-color);
    color: var(--text-color);
}

.pickup-info iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

footer {
    background-color: var(--footer-background-color);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
}

.footer-upper {
    text-transform: uppercase;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 5rem 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-color);
}

.footer-nav li:hover {
    color: var(--footer-hover-color);
    text-decoration: underline;
}

.footer-nav li {
    margin: 5px 0;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.footer-socials a:hover {
    transform: scale(1.3);
}

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

.search-form input,
.search-form button {
    height: 35px;
    width: 150px;
}

.search-form input {
    width: 150px;
    border: 2px solid #ccc;
    margin-right: -2px;
}

.search-form button {
    background-color: var(--accent-color);
    color: var(--hero-text-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0 15px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    flex: 1;
    color: var(--text-color);
    margin-top: 10rem;
    margin-right: 15rem;
}

.payment-methods {
    display: flex;
    gap: 10px;
    font-size: 20px;
    color: var(--text-color);
    margin-top: 5rem;
}

.payment-methods i:hover {
    transform: scale(1.3);
}

.company-name {
    font-size: 30px;
    color: var(--accent-color);
}

/*contact page*/
.contact-hero {
    position: relative;
    height: 550px;
    background-image: url('../img/home/plant4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

/* Contact section styling */
.contact-container {
    width: 100%;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.input-group label {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.input-group input,
.input-group textarea {
    padding: 10px;
    background: var(--primary-color);
    color: var(--text-color);
    border-radius: 4px;
}

.input-group textarea {
    height: 400px;
}

.contact-container button {
    padding: 5px 30px;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

/* blogpage */
.blog-hero-image {
    height: 100vh;
    width: 100vw;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url('../img/home/blogHeroImg.jpg');
}

.blog-content-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.blog-content-overlay h1 {
    font-size: 65px;
    letter-spacing: 0px;
    margin: 0 0 5px;
    color: var(--primary-color);
}

.blog-pottedposts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    padding: 30px
}

.pottedpost img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.potted-content {
    position: relative;
    text-align: center;
    padding: 20px;
}

.potted-content p {
    font-family: 'Playfair Display', serif;
    background: none;
    color: var(--accent-color);
    font-weight: 600;
}

.potted-content h2 {
    font-family: 'Playfair Display', serif;
    background: none;
    color: var(--accent-color);
    text-align: center;
    font-size: x-large;
}

.potted-content button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
}

/*shop page*/
.shop-hero-image {
    height: 100vh;
    width: 100vw;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url('../img/shop/shop-top-hero.jpg');
}

.shop-bottom-hero-image {
    background-image: url('../img/shop/shop-bottom-hero.jpg');
    height: 100vh;
    width: 100vw;
    position: relative;
    background-size: cover;
    background-position: 50% 50%;
}

.shop-bottom-hero-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.shop-bottom-hero-content h1 {
    font-size: 65px;
    letter-spacing: 0px;
    margin: 0 0 5px;
}

.shop-bottom-hero-content p {
    font-size: 20px;
    color: var(--text-color);
}


.shop-hero-content {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.shop-hero-content h1 {
    font-size: 65px;
    letter-spacing: 0px;
    margin: 0 0 10px;
    color: var(--primary-color)
}

.shop-hero-content button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transition: background-color 0.3s, color 0.3s;
}

.shop-hero-content button:hover {
    background-color: var(--hover-button-background-color);
    color: var(--text-color);
}

.gift-header-content h2 {
    text-align: center;
    padding: 20px;
    margin-right: 50rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    /* Modified padding to add left padding */
    padding-left: 400px;
    /* Additional left padding to offset the sidebar width */
    align-items: start;
}

.plant-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 550px;
    margin: 5px;
    overflow: hidden;
}

.plant-item img {
    object-fit: cover;
    width: 100%;
}

.description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5px;
}

.info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.meta {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: 0.8em;
    text-align: left;
    width: 100%;
    justify-content: flex-start;
    color: var(--text-color);
}

.price {
    font-size: 2em;
    color: var(--accent-color);
}

.ratings {
    font-size: 1.4em;
}

.reviews {
    margin-top: 5px;
}

.selected-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: #3b3a3a;
    padding: 10px;
    min-height: 500px;
    min-width: 800px;
}

.selected-item {
    position: relative;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.selected-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-item .remove-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary-color);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*shop page aside*/
.filter-sidebar {
    width: 400px;
    height: 280vh;
    position: absolute;
    left: 0;
    top: 12;
    background-color: rgba(255, 255, 255, 255);
    overflow-x: hidden;
    padding: 20px;
    z-index: 100;
}

.filter-section {
    margin-bottom: 20px;
}

.filter-section h4 {
    margin-bottom: 10px;
    margin-left: 40px;
    font-size: 15px;
    font-weight: 500;
}

.filter-section input {
    margin-left: 40px;
}

.filter-section label {
    color: var(--text-color);
}

input[type="checkbox"] {
    margin-right: 10px;
}

.filter-section::after {
    content: "-";
    display: block;
    color: lightgrey;
}

/*product page*/
.product-filter-sidebar {
    width: 400px;
    height: 150vh;
    position: absolute;
    left: 0;
    top: 12;
    background-color: rgba(255, 255, 255, 255);
    overflow-x: hidden;
    padding: 20px;
    z-index: 100;
}

#main-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.product-details {
    display: flex;
    flex-direction: column;
    padding: 0px 50px 0px 80px;
}

.product-details h1,
.product-details h2 {
    text-align: start;
    font-size: 30px;
    gap: 0px;
}

.product-details h3 {
    text-align: start;
    font-size: 20px;
    color: var(--text-color);
    text-transform: uppercase;
}

.product-details p {
    text-align: start;
    font-size: smaller;
    color: var(--text-color);
}

.button1 .add-to-cart {
    background-color: grey;
    color: var(--primary-color);
    width: 60%;
    margin-bottom: 10px;
    transition: background-color 0.3s, color 0.3s;
    padding: 5px 10px;
}

.button2 .buy-now {
    background-color: var(--accent-color);
    color: var(--primary-color);
    width: 60%;
    transition: background-color 0.3s, color 0.3s;
}

.product-display {
    /* Modified padding to add left padding */
    padding-left: 400px;
}

.image-subImage {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.image-subImage img {
    width: 100px;
    margin: 0 5px;
    align-items: start;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.image-subImage img:hover {
    transform: scale(1.1);
    border: #252424 solid;
}

.product-container h2 {
    text-align: center;
    padding: 20px;
    margin-right: 40rem;
}

/*product bundle page*/
.selected-items {
    display: flex;
    background-color: #989696;
    width: auto;
    min-height: 700px;
}

.selected-item {
    position: relative;
    width: 120px;
    height: 150px;
    overflow: hidden;
}

.selected-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-item .remove-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--primary-color);
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-other {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.image-other {
    display: flex;
    justify-content: start;
    margin-top: 10px;
}

.image-other img {
    width: 100px;
    margin: 0 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.image-other img:hover {
    transform: scale(1.1);
    border: #252424 solid;
}


.image-other img {
    width: 100px;
    margin: 10px;
    cursor: pointer;
}

/*about page*/
.about-hero {
    position: relative;
    height: 500px;
    background-image: url('../img/about/about-heroImg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 0;
}

.about-hero h1 {
    color: var(--text-color);
    text-align: center;
}

.about-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.about-feature:nth-child(odd) .about-feature-image {
    order: 2;
}

.about-feature-image {
    flex: 1;
    overflow: hidden;
    margin-left: 5rem;
}

.about-feature-image img {
    width: 90%;
    height: auto;
    justify-content: center;
    object-fit: cover;
}

.about-feature-text {
    flex: 1;
    padding: 0;
    font-size: 20px;
    line-height: 10;
    margin-right: 2rem;
    color: var(--text-color);
}

/*privacy page & legal page*/
.privacy-content,
.legal-content {
    max-width: 75%;
    margin: 40px auto;
    padding: 20px;
}

.privacy-content h1,
.legal-content h1 {
    font-size: 40px;
    color: var(--text-color);
    text-align: start;
    margin-bottom: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.privacy-content h2,
.legal-content h2 {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: start;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.privacy-content p,
.legal-content p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: start;
    font-family: 'Montserrat', sans-serif;
}

.privacy-content a,
.legal-content a {
    text-decoration: none;
}

.privacy-content ul {
    padding-left: 20px;
}

.privacy-content span,
.legal-content span {
    text-transform: lowercase;
}

@media (min-width: 375px) and (max-width: 576px) {

    .hero,
    .care-tips,
    .promo-section,
    .shop-hero,
    .shop-bottom-hero,
    .contact-hero {
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding: 3em 2em;
        background-repeat: no-repeat;
    }

    .hero-content,
    .care-tips,
    .shop-hero-content {
        text-align: center;
    }

    .container h2 {
        font-size: x-large;
    }

    .hero-content button {
        padding: 5px 20px;
    }

    .logo a {
        margin: 20px 0 0 10px;
    }

    .category img {
        width: 100%;
        height: 100%;
    }

    .promo-section,
    .care-tip {
        height: 100vh;
        width: 100vw;
        position: relative;
        background-size: cover;
        background-position: 50% 50%;
    }

    .promo-content,
    .care-content {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.5);
    }

    .promo-content h2,
    .care-content h2 {
        font-size: 40px;
        letter-spacing: 0px;
        margin: 0 0 5px;
        color: var(--primary-color);
    }

    .promo-content h3,
    .care-content h3 {
        letter-spacing: 0px;
        margin: 0 0 5px;
        color: var(--primary-color);
    }

    .promo-content button {
        margin-right: 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-item-overlay {
        position: absolute;
        height: 100%;
        width: 100%;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .shop-items {
        grid-template-columns: 1fr;
    }

    .blog-posts {
        flex-direction: column;
    }

    .blog-posts .post {
        width: 100%;
    }

    .blog-content h1 {
        font-size: xx-large;
    }

    .blog-pottedposts {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }

    .blog-content {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        text-align: center;
        transition: background-color 0.3s ease;
    }

    .blog-content h2 {
        font-family: 'Playfair Display', serif;
        background: none;
        color: var(--primary-color);
        font-size: larger;
    }

    .blog-content p {
        background: none;
        font-size: medium;
        text-transform: uppercase;
        color: var(--primary-color);
    }

    .pickup-info {
        height: auto;
    }

    .hero-content h1 {
        font-size: 45px;
    }

    .pickup-info-overlay {
        width: 80%;
        height: auto;
        top: 30%;
        left: 10%;
        transform: translateY(0);
    }

    .pickup-info-overlay h2,
    .pickup-info-overlay p,
    .pickup-info-overlay button {
        font-size: large;
    }

    footer {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .footer-left {
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }

    .footer-right {
        align-items: center;
        margin-top: 20px;
        width: 100%;
        margin-left: 15rem;
    }

    .footer-links,
    .footer-nav {
        margin-left: 2.5rem;
    }

    .footer-socials {
        justify-content: center;
        width: 100%;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 20px;
    }

    .company-name {
        margin-top: 20px;
    }

    .fa-bars,
    .fa-times {
        position: absolute;
    }

    .fa-bars {
        visibility: visible;
    }

    .fa-times {
        visibility: hidden;
    }

    .nav-socials,
    .nav-links,
    .currency-select,
    .nav-icons {
        display: none;
    }

    /* Toggle visibility when menu is active */
    /* General styles for the active menu */
    .active {
        background-color: transparent;
        color: var(--text-color);

    }

    .active .nav-icons {
        display: none;
    }

    .active .nav-links {
        display: flex;
        flex-direction: row;
        margin-top: 3rem;
    }

    .submenu-container img {
        display: none;
    }

    /*contact page*/

    .contact-hero-content {
        width: 100%;
        max-width: 900px;
        margin: auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .contact-hero-content h1 {
        font-size: xx-large;
        text-align: center;
        margin-bottom: 20px;
        color: var(--primary-color);
    }

    .contact-hero-content form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .input-row {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
    }

    .input-group label {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .input-group input,
    .input-group textarea {
        padding: 10px;
        border: 1px solid #444;
        color: var(--text-color);
        border-radius: 4px;
    }

    .input-group textarea {
        height: 200px;
    }

    .contact-container button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        align-self: center;
    }

    /*product page*/

    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .product-filter-sidebar {
        width: 100%;
        height: 50vh;
        padding: 10px;
        box-sizing: border-box;
    }

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

    .product-display {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
    }

    .plant-item img {
        object-fit: cover;
        width: 100%;
    }

    .product-image {
        width: 100%;
        padding-top: 300px;
    }

    .product-image img {
        width: 100%;
        height: auto;
    }

    .image-subImage {
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-top: 10px;
    }

    .image-subImage img {
        width: 30%;
        height: auto;
    }

    .product-container h2 {
        text-align: center;
        margin: 20px 0;
        font-size: xx-large;
    }

    .shop-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        align-items: center;
        width: 100%;
        padding: 10px;
    }

    .description .info .name h4,
    .description .price,
    .meta {
        text-align: center;
    }

    .meta .ratings {
        display: flex;
        justify-content: center;
        gap: 2px;
    }

    .product-details {
        padding: 10px;
    }

    .product-details h1 {
        font-size: 8vw;
    }

    .button1 .add-to-cart,
    .button2 .buy-now {
        font-size: medium;
    }

    .selected-items {
        min-height: 500px;
        min-width: 100%;
    }

    .selected-items img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }

    .image-other {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin-right: 1rem;
    }

    .image-other img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }

    /*about page*/
    .about-feature {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .about-feature:nth-child(even) .about-feature-image {
        order: 1;
    }

    .about-feature-image {
        flex: 1;
        overflow: hidden;
        margin-left: 3rem;
    }

    .about-feature-image img {
        width: 90%;
        height: auto;
        justify-content: center;
        object-fit: cover;
    }

    .about-feature-text {
        flex: 1;
        font-size: 20px;
        margin-left: 3rem;
    }

    /*shop page*/
    aside.filter-sidebar {
        display: flex;
        flex-direction: row;
        width: 100%;
        height: 10vh;
        justify-content: center;
    }

    .gift-header-content h2 {
        text-align: center;
        margin-left: 50rem;
        font-size: xx-large;
    }

    .filter-section-submenu {
        display: none;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .shop-hero-image,
    .shop-bottom-hero-image {
        height: 100vh;
        background-size: cover;
        background-position: center;
    }

    .shop-hero-content,
    .shop-bottom-hero-content {
        background: rgba(0, 0, 0, 0.5);
    }

    .shop-hero-content h1,
    .shop-bottom-hero-content h1 {
        font-size: 32px;
    }

    .shop-hero-content button,
    .shop-bottom-hero-content button {
        font-size: 16px;
        padding: 10px 20px;
    }

    .plant-item {
        flex-direction: column;
    }

    /*legal an privacy page*/
    .privacy-content h1,
    .legal-content h1,
    .privacy-content h2,
    .legal-content h2,
    .privacy-content p,
    .legal-content p,
    .privacy-content,
    .legal-content {
        text-align: center;
    }
}

@media (min-width: 577px) and (max-width: 767px) {

    .hero,
    .care-tips,
    .promo-section,
    .shop-hero,
    .shop-bottom-hero,
    .contact-hero {
        background-size: cover;
        background-position: center;
        justify-content: center;
        padding: 2.5em 2em;
        background-repeat: no-repeat;
    }

    .hero-content,
    .care-tips,
    .shop-hero-content {
        text-align: center;
    }

    .container h2 {
        font-size: large;
        /* Adjusted from x-large to large for slightly smaller screens */
    }

    .hero-content button {
        padding: 10px 25px;
        /* Slightly larger button for better clickability on tablets */
    }

    .logo a {
        margin: 15px 0 0 10px;
    }

    .category img {
        width: 100%;
        height: auto;
        /* Changed from 100% to auto for better aspect ratio control */
    }

    .promo-section,
    .care-tip {
        height: 90vh;
        /* Adjusted for better screen usage on tablets */
        width: 100vw;
        position: relative;
        background-size: cover;
        background-position: 50% 50%;
    }

    .promo-content,
    .care-content {
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.5);
    }

    .promo-content h2,
    .care-content h2,
    .promo-content h3,
    .care-content h3 {
        font-size: 35px;
        /* Slightly smaller font size */
        letter-spacing: 1px;
        /* Adding some letter spacing */
        margin: 0 0 5px;
        color: var(--primary-color);
    }

    .promo-content button {
        margin-right: 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-item-overlay {
        position: absolute;
        height: 100%;
        width: 100%;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .shop-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-posts {
        flex-direction: column;
    }

    .blog-posts .post {
        width: 100%;
    }

    .blog-content h1 {
        font-size: x-large;
        /* Slightly smaller than xx-large */
    }

    .blog-pottedposts {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .blog-content {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        background: rgba(0, 0, 0, 0.5);
        padding: 10px;
        text-align: center;
        transition: background-color 0.3s ease;
    }

    .blog-content h2 {
        font-family: 'Playfair Display', serif;
        background: none;
        color: var(--primary-color);
        font-size: larger;
    }

    .blog-content p {
        background: none;
        font-size: medium;
        text-transform: uppercase;
        color: var(--primary_color);
    }

    .pickup-info {
        height: auto;
    }

    .hero-content h1 {
        font-size: 40px;
        /* Adjusted for readability on tablets */
    }

    .pickup-info-overlay {
        width: 80%;
        height: auto;
        top: 30%;
        left: 10%;
        transform: translateY(0);
    }

    .pickup-info-overlay h2,
    .pickup-info-overlay p,
    .pickup-info-overlay button {
        font-size: medium;
        /* Adjusted for readability */
    }

    footer {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .footer-left {
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }

    .footer-right {
        align-items: center;
        margin-top: 20px;
        width: 100%;
        margin-left: 15rem;
    }

    .footer-links,
    .footer-nav {
        margin-left: 2rem;
    }

    .footer-socials {
        justify-content: center;
        width: 100%;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }

    .company-name {
        margin-top: 15px;
    }

    .fa-bars,
    .fa-times {
        position: absolute;
    }

    .fa-bars {
        visibility: visible;
    }

    .fa-times {
        visibility: hidden;
    }

    .nav-socials,
    .nav-links,
    .currency-select,
    .nav-icons {
        display: none;
    }

    /* Toggle visibility when menu is active */
    .active {
        background-color: transparent;
        color: var(--text-color);
    }

    .active .nav-links {
        display: flex;
        flex-direction: row;
        margin-top: 3rem;
    }

    .submenu-container img {
        display: none;
    }

    /* Adjustments for the contact and product pages */
    .contact-hero-content,
    .product-filter-sidebar,
    .product-details,
    .product-display,
    .plant-item img,
    .product-image,
    .image-subImage,
    .product-container h2,
    .shop-grid,
    .about-feature,
    .about-feature-image,
    .about-feature-text,
    .filter-sidebar,
    .gift-header-content h2,
    .filter-section-submenu,
    .shop-hero-image,
    .shop-bottom-hero-image,
    .shop-hero-content,
    .shop-bottom-hero-content,
    .plant-item,
    .privacy-content,
    .legal-content {
        /* Add individual styles for these elements as needed */
    }
}


@media (min-width: 768px) and (max-width: 992px) {}

@media (min-width: 993px) and (max-width: 1200px) {}