html {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

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

a {
    text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: #000;
}

hr {
    border: none;
    height: 3px; /* sets the thickness */
    background-color: #6a35ce; /* sets the color */
}

h1 {
    font-size: 2rem;
    margin: 1rem 0;
    padding: 0;
}

h4 {
    font-size: 0.75rem;
}

i {
    font-size: 1rem;
}

#hamburger i.large {
    font-size: 2rem;
    padding-top: 10px;
}

button {
    border: none;
}

table {
    border-collapse: collapse;
    width: 90%;
    margin: 0 auto;
}


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

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


thead tr {
    font-weight: 900;
    background-color: navy;
    color: white;
}

th,
td {
    padding: 0.4rem;
    text-align: left;
}

th {
    text-align: center;
}

label {
    font-weight: 700;
    padding-right: 0.5rem;
    font-size: 1rem;
}

input,
select {
    font-size: 1rem;
}

input[type="radio"] {
    transform: scale(1.5); /* Makes the radio button 1.5 times its original size */
    /* Add vendor prefixes for broader browser support if needed: */
    -ms-transform: scale(1.25);
    -webkit-transform: scale(1.25);
    vertical-align: middle; /* Helps align the larger button with adjacent text */
    margin-right: 5px;
}

input[type="checkbox"] {
    accent-color: #4CAF50; /* Sets the color when checked to a green shade */
    font-size: 1rem;
    width: 1rem;  
    height: 1rem; 
    margin: 4px 0 0; 
}

fieldset {
    width: 300px;
    padding: 2rem;
}

textarea {
    font-family: arial;
    font-size: 1rem;
}

#main-container {
    width: 100%;
    margin: 0 auto;
}

.upper-menu {
    width: 100%;
}

.hero-image {
    width: 100%;
}

.col1,
.col3,
.col4,
.col5 {
    width: 10%;
}

.col2 {
    width: 25%;
}

.col6 {
    width: 10%;
    text-align: right;
}

.col7 {
    width: 10%;
    text-align: right;
}

.col8 {
    width: 15%;
}

.bold {
    font-weight: 900;
}

.logo-area {
    width: 100%;
}

.logo {
    width: 100%;
    
}

.main-header {
  width: 100%;
  display: flex;
  justify-content: flex-end; /* Aligns content to the right side */
  align-items: center;     /* Centers logos vertically within the header */
  box-sizing: border-box;  /* Ensures padding doesn't break the 100% width */
}

.outer-logo-container {
    position: relative;
}

.logo-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    right: -3rem;
    top: 0;
    transform: scale(.5);
}

.company-logo {
    object-fit: cover; 
    display: flex;
    width: 100%;
    padding-bottom: 5px;
}

.logo {
  max-width: 60px;        /* Limits logo size for responsiveness */
  height: auto;            /* Maintains aspect ratio */
}

.facebook-container,
.avsa-container {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    gap: 1rem;
}

.container {
    border: 1px solid #ccc;
    padding: 0.5rem;
    overflow: auto; /* Clears the float within the container */
}

.image-shape {
    float: right;
    max-width: 500px;
    margin: 0 20px 30px 50px;
    
    border-radius: 20px;
}
/********************************************/

.desktop-only {
    display: flex;
}

.mobile-only {
    display: block;
}

.content-area {
    width: 80%;
    margin: 0 auto;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.menu {
    list-style-type: none;
    visibility: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: auto;
    align-content: flex-start;
    align-items: flex-start;
    justify-items: flex-start;
    /* padding: 0 25px 0 0; */
}

.menu-items > p {
    padding: 0 2rem;
    font-weight: 700;
}

.menu-items > p > a:hover {
    color: #931b32;
}

.hamburger {
    color: #fff;
    padding-left: 1rem;
}

.menu-items {
    display: flex;
    justify-content: center;
    flex-direction: column;
    background: #6a35ce;
    display: none;
}

.menu-item {
    width: 100%;
    padding: 0.2em 0.5em;
    outline: none;
    position: relative;
    background: #6a35ce;
    /*transition: background-color 0.3s ease-in-out;*/
    color: #fff;
}

.sub-menu {
    width: 15rem;
    visibility: hidden;
    list-style-type: none;
    position: absolute;
    top: 100%;
    left: 30%;
    background-color: #6a35ce;
    color: white;
    box-shadow: 2px 2px 2px black;
    border: 1px solid black;
    z-index: 1;
}

.highlight:hover,
.highlight:focus,
.menu-item:hover,
.menu-item:focus {
    /* transition: 500ms ease all; */
    outline: none;
}

.sub-item:hover,
.sub-item:focus {
    /* transition: 500ms ease all; */
    /* border-radius: 1rem; */
    /* background: #931b32; */
    color: white;
    /* transition-delay: 0.25s; */
}

.menu-item:focus > .highlight .sub-menu,
.menu-item:hover > .highlight .sub-menu,
.menu-item:focus > .sub-menu,
.menu-item:hover > .sub-menu,
.menu-item:focus-within,
.sub-item:focus > .sub-menu,
.sub-item:hover > .sub-menu,
.sub-item:focus-within {
    visibility: visible;
    /* transition-delay: 0.25s; */
}

/***********************************************/

.header-container {
    background-color: #fff;
}

/* .main-menu-container {
    background: transparent;
    height: 3.7rem;
} 
    */

nav.main-nav {
    width: 100%;
    background-color: #6a35ce;
    outline-offset: 3px;
    outline: 4px solid #6a35ce;
    padding: 1px;
}

nav.top-nav {
    width: 95%;
    float: right;
    position: relative;
    z-index: 1000;
}

nav.main-nav,
nav.top-nav {
    height: 3.4rem;
    margin: 0 auto;
    /* text-align: center; */
    /* display: flex; */
    /* justify-content: space-around; */
}

nav.main-nav ul,
nav.top-nav ul {
    float: left;
}

nav.main-nav ul li,
nav.top-nav ul li {
    float: left;
    list-style: none;
    position: relative;
}

nav.top-nav ul li a {
    display: block;
    color: #222;
    padding: 1rem 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

nav.top-nav ul li a.welcome {
    display: block;
    color: blue;
    padding: 1rem 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

nav.main-nav ul li a {
    display: block;
    color: #fff;
    padding: 5px 0;
    text-decoration: none;
    font-size: 1.25rem;
}

.welcome {
    font-weight: 600;
    font-size: 0.7rem;
}

nav.main-nav ul li ul {
    display: none;
    position: absolute;
    background-color: #6a35ce;
    padding: 0.5rem;
    z-index: 1;
}

nav.top-nav ul li ul {
    display: none;
    position: absolute;
    background-color: #fcfcfc;
    padding: 0.5rem;
    top: 3em;
    z-index: 1;
}

nav.main-nav ul li:hover ul,
nav.top-nav ul li:hover ul {
    display: block;
}

nav.main-nav ul li ul li a,
nav.top-nav ul li ul li a {
    padding: 0.4rem 0.75rem;
}

nav.main-nav ul li ul li,
nav.top-nav ul li ul li {
    width: 15rem;
    border-radius: 0 0 4px 4px;
}

nav.main-nav ul li ul li a:hover,
nav.top-nav ul li ul li a:hover {
    background-color: #e4d7f5;
    color: #6a35ce;
    width: 15rem;
    /* height: 30px; */
}

/* .prod-count {
    position: absolute;
    top: -14.5rem;
    right: -1.75rem;
} */

.prod-count-search {
    position: absolute;
    top: -4.5rem;
    right: 4.25rem;
}

.search-form {
    padding: 1rem;
}

.search-form-outer {
    position: absolute;
    top: 0;
    left: 45px;
}

.cart-position {
    position: absolute;
    top: 18px;
    left: 180px;
    width: 200px;
}

.search-input {
    font-size: 1rem;
    width: 10rem;
}

.facebook {
    position: absolute;
    bottom: 0rem;
    right: -3rem;
    transform: scale(.5);
}

.facebook a div {
    font-size: 1rem;
}

.hero-container, 
.select-products {
    display: flex;
    justify-content: space-evenly;
    gap: 2px;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.select-products {
    margin: 2.5rem 0;
}

.fa-magnifying-glass {
    font-size: 1rem;
}


.hero-card {
    flex: 1 1 49%;
    padding: 0;
}

.nav-images {
        flex: 1 1 50%;
    padding: 2px;
}

.hero-card img,
.nav-images img {
    width: 100%;
    height: auto;
    display: block;
}

.show-products {
    padding: 0.5rem 0;
    margin: 0 2.5rem;
    position: relative;
    color: #000;
}

.show-headings {
    width: 80%;
    padding: 0.5rem 0;
    margin: 0 2.5rem;
    display: flex;
    flex-direction: column;
}

.list-heading {
    font-size: 1rem;
    margin: 1rem 0;
    padding: 0;
    font-weight: 900;
    color: #6a35ce;
}

.list-subheading {
    font-size: 1.25rem;
    text-decoration-line: none;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    color: #6a35ce;
}

.list-detail {
    font-size: 1rem;
    text-decoration-line: none;
    font-weight: normal;
    margin: 0.25rem;
    color: #000;
}

.additional-info {
    margin: 0 auto;
    width: 60%;
}

.formbuilder-form {
    margin: 0 auto;
    width: 91%;
}

.message-info {
    width: 15%;
    margin: 0 auto;
    background: green;
    color: white;
    text-align: center;
}

.indent {
    margin: 0 auto;
    width: 90%;
}


.outer-control-container {
    display: flex;
}

.inner-control-container {
    margin-right: 1rem;
    margin-top: 2rem;
    line-height: 1.5;
}

#top_pager {
    display: block;
} 

/* #top_pager_search {
    position: absolute;
    top: -2rem;
    right: 3.75rem;
} */

#end_pager {
    position: absolute;
    bottom: 0;
    right: 3.75rem;
}

#filter {
/*     position: absolute;
    top: -13.25rem;
    right: -1.5rem; */
    color: blue;
}

#filter-search {
/*     position: absolute;
    top: -3re2remm;
    right: 3.75rem; */
    color: blue;
}

.normal {
    font-weight: 500;
}

.form-outline {
    background-color: lightgray;
    padding: 2.5rem;
    border: 2px black solid;
}

.notification {
    background: red;
    min-height: 8rem;
    width: 100%;
    padding: 1rem;
}

.notification p {
    color: white;
    font-size: 1rem;
}

.product-display {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* height: 40rem; */
    margin-bottom: 1rem;
    background-color: #f2e6ff;
    padding: 0 0.5rem;
    border-radius: 25px;
}

.product-display-fixed-height {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 32rem;
    margin-bottom: 1rem;
    background-color: #f2e6ff;
    padding: 1rem 0.5rem 2rem 1.5rem;
    border-radius: 25px;
}

#product-qty {
    width: 2.5rem;
}


.product-overview {
    margin-top: 1.25rem;
    display: flex;
    /* width: 20rem; */
    flex-direction: column;
}

.product-overview img,
.product-image {
    border-radius: 15px;
}

.product-image {
    width: 100%;
    max-width: 300px;
    height: 225px;
}

.product-price {
    font-weight: 500;
    margin-right: 1rem;
}

.so-hover {
    opacity: 0;
}

.so-hover:hover {
    opacity: 1;
}

/*
[id^="page"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
*/

[id^="page"] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
  gap: 20px;
}

.show-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(315px, 1fr));
    gap: 20px;
}

#substitute-entry {
    display: none;
}

.right {
    align-self: flex-end;
    text-align: right;
    float: right;
    margin-right: 2rem;
}

.center {
    text-align: center;
}

.pad-r32 {
    padding-right: 1.6rem;
    text-align: right;
}

.larger-image {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}   

.larger-image-caption {
    position: absolute;
    opacity: 75%;
    bottom: 2px;
    left: 27%;
    /* transform: translate(-10%, 100%); */
    background: black;
    color: white;
    padding: 4px;
    text-align: center;
    font-size: .75rem;
}

.select {
    border-radius: 0.5rem;
    background-color: blue;
    color: white;
    text-align: center;
    font-size: 1rem;
    margin-right: 8px;
}

.sold-out {
    border-radius: 0.5rem;
    background-color: red;
    text-align: center;
    width: fit-content;
    color: white;
    font-size: 1rem;
}

a.cancel,
.cancel {
    border-radius: 0.5rem;
    background-color: red;
    color: white;
    text-align: center;
    font-size: 0.75rem;
    white-space: pre;
    border-width: 2px;
    border-style: outset;
    border-color: buttonborder;
    text-decoration: none;
}

.update-select {
    border-radius: 0.5rem;
    background-color: green;
    color: white;
    text-align: center;
}

.tiny-button {
    font-size: xx-small;
    padding: 2px 5px;
}

.remove-select {
    border-radius: 0.5rem;
    background-color: red;
    color: white;
    text-align: center;
}

.select:hover {
    background-color: #000099;
}

.sold-out:hover {
    background-color: #990000;
}
.update-select:hover {
    background-color: darkgreen;
}

.remove-select:hover {
    background-color: maroon;
}

.email-action-button,
input.email-action-button {
    background-color: blue;
    color: white;
    padding: 0.25rem 0.5rem;
    margin-left: 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 0;
    font-size: 0.75rem;
}

.select a {
    text-decoration: none;
    color: white;
}

.sold-out a {
    text-decoration: none;
    color: white;
}

.button,
.update-button {
    padding: 5px 10px;
}

.small-button {
    font-size: 0.75rem;
    text-align: center;
    color: white;
    background: blue;
    padding: 0.25rem;
    border: 1px blue solid;
    border-radius: 10px;
}

.subtotal {
    float: right;
}

.check-out {
    float: right;
    padding-right: 20%;
}

.check-out form input {
    font-size: 1rem;
}

.cart-listing {
    margin-top: 1.5rem;
    margin-left: 5rem;
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.form {
    padding: 1.5rem;
    width: 85%;
    background-color: #E4D7F5;
    border: 2px solid violet;
    margin: 1.5rem auto;
    border-radius: 1rem;
}

.form-inside {
    padding: 1.5rem;
    width: 85%;
    background-color: #E4D7F5;
    border: 2px solid violet;
    /* margin: 1.5rem auto; */
    border-radius: 1rem;
}

.form-narrow {
   padding: 1.5rem;
    width: 60%;
    background-color: #E4D7F5;
    border: 2px solid violet;
    margin: 1.5rem auto;
    border-radius: 1rem;
}

.summer-shipping {
    padding: 1.5rem;
    width: 85%;
    background-color: #aee7ae;
    border: 2px solid green;
    /* margin: 1.5rem auto; */
    border-radius: 1rem;
}

.winter-shipping {
    padding: 1.5rem;
    width: 85%;
    background-color: #E4D7F5;
    border: 2px solid violet;
    /* margin: 1.5rem auto; */
    border-radius: 1rem;
}

.express-shipping {
    padding: 1.5rem;
    width: 85%;
    background-color: #d7eef5;
    border: 2px solid rgb(162, 130, 238);
    /* margin: 1.5rem auto; */
    border-radius: 1rem;
}

.email_read {
    padding: 1.5rem;
    width: 50%;
    background-color: #d8f9ff;
    border: 2px solid darkgray;
    margin: 1.5rem auto;
    border-radius: 25px;
}

.email-content {
    background: white;
    padding: 0.5rem;
    display: inline-block;
    line-height: 1.25;
    border-radius: 10px;
}

.email-line {
    margin-bottom: 0.5rem;

}

.details {
    padding: 1.5rem;
    width: 100%;
    background-color: lightgray;
    border: 2px solid darkgray;
    margin: 1.5rem auto;
}

.new-customer-heading {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 900;
    width: 50%;
    float: left;
}

.msg {
    border: 2px solid gray;
    width: 100%;
    background-color: lightgray;
}

.emsg {
    border: 2px solid gray;
    width: 100%;
    background-color: #f28c8c;
    padding: 0 0.5rem;
}

.gmsg {
    border: 2px solid gray;
    width: 100%;
    background-color: #71d895;
    padding: 0 0.5rem;
}

p.errmsg {
    background-color: red;
    color: white;
}

p.infomsg {
    background-color: green;
    color: white;
}

.margin-style {
    width: 90%;
    margin: 0 auto;
}

.check-out-container {
    line-height: 1.5;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 90%;
    font-size: .75rem;
    margin: 0 auto;
    margin-top: 0.75rem;
}

.cart-widget {
    border: 0;
    width: 100%;
    padding: 2px 5px;
    margin-left: 1.25rem;
}

.footer-container {
    position: relative;

}

.footer-container img {
    width: 100%;
}

.footer-contact-info {
    position: absolute;
    font-size: .55rem;
    font-weight: normal;
    top: 32%;
    left: 38%;
    width: 25em;
}

.footer-copyright {
    position: absolute;
    font-size: .5rem;
    font-weight: normal;
    bottom: 3%;
    right: 1%;
    width: 30em;
}

.why-buy-container {
    position: relative;
    margin: 2.5rem 0;
}

.image-area {
    width: 100%;
    display: flex;
}

.section-container {
    position: absolute;
    top: 7px;
    left: 37%;
    width: 62%;
    height: auto;
}

.section-heading {
    width: 100%;
    margin-bottom: 5px;
}

.section-heading p {
    font-size: 0.9rem;
    color: #007032;
    font-weight: 700;
}


.section-text {
    width: 100%;
    height: auto;
}

.section-text p,
.section-text p i {
    font-size: .65rem;
    color: white;
    font-weight: 400;
    line-height: 1;
}

.catalog-container {
    background-color: #6da54a;
    width: 100%;
    margin: 2.5rem 0 0 0;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
}

.catalog-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 65%;
    flex: 1 1 50%;
}

.catalog-section-title {
    margin: 1rem 0;
}

.catalog-section-title p {
    font-size: 2.25rem;
    color: #007032;
    font-family: "Times New Roman", Times, serif;
}

.catalog-section-subtitle {
    margin: 1rem 0;
}

.catalog-section-subtitle p {
    font-size: 1.75rem;
    color: #007032;
    font-family: "Times New Roman", Times, serif;
}

.catalog-section-text {
    margin: 1rem 0;
}

.catalog-section-text p {
    font-size: 1.5rem;
    color: #fff;
}

.catalog-section-button {
    text-align: center;
    width: 20rem;
}

.catalog-section-button a:link,
.catalog-section-button a:visited,
.catalog-section-button a:hover,
.catalog-section-button a:active {
    text-decoration: none;
    color: #fff;
}

.catalog-button-style {
    font-size: 1.5rem;
    border: 3px solid white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: 900;
}

.catalog-button {
}

.catalog-menu-container {
    padding: 0 1rem;
}

.catalog-menu-item {
    margin: 3.25rem 0 0 0;
}

.catalog-menu-item a:link,
.catalog-menu-item a:visited,
.catalog-menu-item a:hover,
.catalog-menu-item a:active {
    text-decoration: none;
    color: #007032;
}

.catalog-menu-item p {
    font-size: 2rem;
    color: #007032;
    font-family: "Times New Roman", Times, serif;
}

.MarkupPagerNav {
    clear: both;
    margin: 1em 0;
    font-family: Arial, sans-serif;
}
.MarkupPagerNav li {
    display: inline;
    list-style: none;
    margin: 0;
}

.MarkupPagerNav li a,
.MarkupPagerNav li.MarkupPagerNavSeparator {
    display: block;
    float: left;
    padding: 2px 9px;
    color: #fff;
    background: #2f4248;
    margin-right: 3px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.MarkupPagerNav li.MarkupPagerNavOn a,
.MarkupPagerNav li a:hover {
    color: #fff;
    background: #db1174;
    text-decoration: none;
}

.MarkupPagerNav li.MarkupPagerNavSeparator {
    display: inline;
    color: #777;
    background: #d2e4ea;
    padding-left: 3px;
    padding-right: 3px;
}
/*  css to change a checkbox to a switch */
/* The switch container - the label */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
    cursor: pointer; /* Indicates it's clickable */
}

/* Hide the default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider track (span) */
.slider {
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    bottom: -2px;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px; /* Rounded corners for the pill shape */
}

/* The slider handle (the dot) - using a pseudo-element */
.slider::before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%; /* Circular handle */
}

/* Change background color when the checkbox is checked */
input:checked + .slider {
    background-color: #2196f3; /* Blue when "on" */
}

/* Move the handle to the right when checked */
input:checked + .slider::before {
    -webkit-transform: translateX(26px); /* Moves it the width of the handle plus padding */
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

@media only screen and (min-width: 500px) {
/*     .prod-count {
        position: absolute;
        top: -13rem;
        right: -2rem;
    } */

    #filter {
/*         position: absolute;
        top: -11.5rem;
        right: -2rem; */
        color: blue;
    }

/*     #top_pager {
        position: absolute;
        top: -11rem;
        right: -2rem;
    } */
}


/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }

    /*
    .main-nav ul li a:not(:last-child)::after, .top-nav ul li a:not(:last-child)::after {
        content: " | ";
        margin: 0 2rem;
    }
        */
}

/* Medium screens (e.g., tablets and small laptops) */
@media screen and (min-width: 768px) {
    html {
        font-size: 20px; /* New base font size for medium screens */
    }
    
    .hero-container, .select-products {
        display: flex;
        justify-content: space-evenly;
        gap: 2px;
        flex-wrap: nowrap;
        margin-top: 0.25rem;
    }

    .nav-images {
        flex: 1 0 20%;
    }

    .footer-contact-info {
        position: absolute;
        font-size: 0.75rem;
        font-weight: normal;
        top: 39%;
        left: 42%;
        width: 25em;
    }

    .footer-copyright {
        position: absolute;
        font-size: 0.5rem;
        font-weight: normal;
        bottom: 3%;
        right: -1%;
        width: 30em;
    }

    .list-heading {
        font-size: 1.25rem;
        margin: 1rem 0;
        padding: 0;
        font-weight: 900;
        color: #6a35ce;
    }

    .search-form-outer {
        position: absolute;
        top: 0;
        left: 102px;
    }

    .cart-position {
        position: absolute;
        top: 21px;
        left: 249px;
        width: 200px;
    }

}

/* Large screens (e.g., desktops) */
@media screen and (min-width: 1024px) {
      html {
        font-size: 14px; /* New base font size for large screens */
    }

    h4 {
        font-size: 1rem;
    }

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

    .mobile-only {
        display: none;
    }

    .hamburger {
        display: none;
    }

    .menu-items {
        display: flex;
        justify-content: center;
        flex-direction: column;
        background: #6a35ce;
    }

    .logo-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        right: 1rem;
        top: 8px;
        transform: scale(1);
    }

    .search-form {
        padding: 1rem;
    }

    .main-nav ul li a:not(:last-child)::after, .top-nav ul li a:not(:last-child)::after {
        content: " | ";
        margin: 0 .75rem;
    }

    nav.main-nav ul, nav.top-nav ul {
        align-self: center;
        /* height: 0; */
    }

    nav.main-nav ul li ul li a:hover,
    nav.top-nav ul li ul li a:hover {
        background-color: #e4d7f5;
        color: #6a35ce;
        width: 15rem;
        height: auto;
    }

    .hero-container, .select-products {
        display: flex;
        justify-content: space-evenly;
        gap: 2px;
        /* flex-wrap: wrap; */
        margin-top: 0.25rem;
    }

    .hero-card {
        flex: 1 1 49%;
        padding: 0;
    }

    nav.main-nav ul li a {
        display: block;
        color: #fff;
        padding: 0.85rem 0;
        text-decoration: none;
        font-size: 1.1rem;
    }

    nav.top-nav {
        width: 55%;
        float: right;
        position: relative;
        z-index: 1000;
    }

    .nav-images {
        flex: 1;
        padding: 2px;
    }

    nav.main-nav ul li ul {
        display: none;
        position: absolute;
        background-color: #6a35ce;
        padding: 0.5rem;
        z-index: 1;
        top: 2rem;
        height: auto;
    }

/*     .prod-count {
        position: absolute;
        top: -7rem;
        right: -1.75rem;
    } */

    #filter {
/*         position: absolute;
        top: -5.5rem;
        right: -2rem; */
        color: blue;
    }

/*     #top_pager {
        position: absolute;
        top: -4.5rem;
        right: -2.25rem;
    } */

    .section-container {
        position: absolute;
        top: 30px;
        left: 40%;
        width: 55%;
        height: auto;
    }

    .section-heading p {
        font-size: 1.5rem;
        color: #007032;
        font-weight: 700;
    }

    .section-text p {
        font-size: 1rem;
        color: white;
        font-weight: 400;
        line-height: 1;
        margin-top: 1rem;
    }

    .catalog-container {
        background-color: #6da54a;
        width: 100%;
        margin: 2.5rem 0 0 0;
        padding: 1rem 1rem 3rem 1rem;
        display: flex;
        flex-wrap: nowrap;
    }

    .catalog-menu-container {
        padding: 0 1rem;
        margin: 0 2rem 0 1rem;
    }
    
    .catalog-menu-item p {
        font-size: 1.5rem;
        color: #007032;
        font-family: "Times New Roman", Times, serif;
    }

    .catalog-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 59%;
        margin: 0 1rem 0 2rem;
    }

    .catalog-section-title {
        margin: 0.5rem;
    }

    .catalog-section-subtitle {
        margin: 0.5rem;
    }

    .catalog-button-style {
        font-size: 1.5rem;
        border: 3px solid white;
        text-decoration: none;
        padding: 0.5rem 1rem;
        color: #fff;
        font-weight: 900;
        width: 320px;
        /* justify-self: center; */
    }

    .check-out-container {
        line-height: 1.5;
        justify-content: space-between;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        width: 90%;
        font-size: 1rem;
        margin: 0 auto;
        margin-top: 0.75rem;
    }

    .footer-contact-info {
        position: absolute;
        font-size: 1rem;
        font-weight: normal;
        top: 47%;
        left: 42%;
        width: 25em;
    }

    .footer-copyright {
        position: absolute;
        font-size: 0.65rem;
        font-weight: normal;
        bottom: 6px;
        right: 0%;
        width: 30em;
    }
}

/* Large screens (e.g., desktops) */
@media screen and (min-width: 1200px) {
      html {
        font-size: 16px; /* New base font size for large screens */
    }

    .desktop-only {
        display: flex;
    }

    .mobile-only {
        display: none;
    }

    .hamburger {
        display: none;
    }

    .logo-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        right: 1rem;
        top: 34px;
        transform: scale(1);
    }

    .menu-items {
        display: flex;
        justify-content: center;
        flex-direction: column;
        background: #6a35ce;
    }

    nav.main-nav ul li a {
        display: block;
        color: #fff;
        padding: 0.85rem 0;
        text-decoration: none;
        font-size: 1.1rem;
    }

    .main-nav ul li a:not(:last-child)::after, .top-nav ul li a:not(:last-child)::after {
        content: " | ";
        margin: 0 .75rem;
    }

    nav.main-nav ul, nav.top-nav ul {
        align-self: center;
    }

    nav.top-nav {
        width: 55%;
        float: right;
        position: relative;
        z-index: 1000;
    }

    .search-form {
        padding: 1rem;
    }

    .list-heading {
        font-size: 2rem;
        margin: 1rem 0;
        padding: 0;
        font-weight: 900;
        color: #6a35ce;
    }

    .hero-container, .select-products {
        display: flex;
        justify-content: space-evenly;
        gap: 2px;
        flex-wrap: nowrap;
        margin-top: 0.25rem;
    }

    .notification p {
        color: white;
        font-size: 1.25rem;
    }

    .nav-images {
        flex: 1;
        padding: 2px;
    }

    .section-container {
        position: absolute;
        top: 30px;
        left: 40%;
        width: 55%;
        height: auto;
    }

    .section-heading p {
        font-size: 1.75rem;
        color: #007032;
        font-weight: 700;
    }

    .section-text p {
        font-size: 1.15rem;
        color: white;
        font-weight: 400;
        line-height: 1;
        margin-top: 1rem;
    }

    .catalog-container {
        background-color: #6da54a;
        width: 100%;
        margin: 2.5rem 0 0 0;
        padding: 1rem 1rem 3rem 1rem;
        display: flex;
        flex-wrap: nowrap;
    }

    .catalog-menu-container {
        padding: 0 1rem;
        margin: 0 2rem 0 1rem;
    }
    
    .catalog-menu-item p {
        font-size: 1.5rem;
        color: #007032;
        font-family: "Times New Roman", Times, serif;
    }

    .catalog-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 59%;
        margin: 0 1rem 0 2rem;
    }

    .catalog-section-title {
        margin: 0.5rem;
    }

    .catalog-section-subtitle {
        margin: 0.5rem;
    }

    .catalog-button-style {
        font-size: 1.5rem;
        border: 3px solid white;
        text-decoration: none;
        padding: 0.5rem 1rem;
        color: #fff;
        font-weight: 900;
        width: 20rem;
        /* justify-self: center; */
    }

    .footer-contact-info {
        position: absolute;
        font-size: 1rem;
        font-weight: normal;
        top: 47%;
        left: 42%;
        width: 25em;
    }

    .footer-copyright {
        position: absolute;
        font-size: 0.65rem;
        font-weight: normal;
        bottom: 6px;
        right: 5px;
        width: 30em;
    }
}

@media screen and (min-width: 1250px) {
    .section-text p {
        font-size: 1.25rem;
        color: white;
        font-weight: 400;
        line-height: 1;
        margin-top: 1rem;
    }
}


@media screen and (min-width: 1400px) {
      html {
        font-size: 18px; /* New base font size for large screens */
    }


    .section-text p {
        font-size: 1.25rem;
        color: white;
        font-weight: 400;
        line-height: 1;
        margin-top: 1rem;
    }
}

@media screen and (min-width: 1680px) {
    .desktop-only {
        display: flex;
    }

    .mobile-only {
        display: none;
    }

    .hamburger {
        display: none;
    }

    .show-products,
    .show-headings {
        padding: 0.5rem 1.5rem;
        margin: 0 2.5rem;
    }

    .show-headings {
        width: 80%;
    }

        html {
        font-size: 20px; /* New base font size for large screens */
    }

    i {
        font-size: 1rem;
    }

    .section-container {
        position: absolute;
        top: 4rem;
        left: 40%;
        width: 52%;
        height: auto;
    }

    .section-heading p {
        font-size: 2rem;
        color: #007032;
        font-weight: 500;
    }
    .hero-container, 
    .select-products {
        display: flex;
        justify-content: space-evenly;
        gap: 8px;
        flex-wrap: nowrap;
        margin-top: 0.25rem;
    }

    .hero-card,
    .nav-images {
        flex: 1;
    }

    .notification {
        background: red;
        min-height: 8rem;
        width: 100%;
        padding: 2rem 5rem;
    }

    nav.main-nav,
    nav.top-nav {
        height: 3.4rem;
        margin: 0 auto;
        /* text-align: center; */
        display: flex;
        justify-content: space-around;
    }

    .menu-items {
        display: flex;
        justify-content: center;
        flex-direction: column;
        background: #6a35ce;
        width: 100%;
        /* display: none; */
    }

    .menu {
        list-style-type: none;
        visibility: visible;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        z-index: auto;
        align-content: flex-start;
        align-items: flex-start;
        justify-items: flex-start;
        padding: 0 120px 0 0;
    }

    .top-menu-item {
        align-self: center;
        font-weight: 500;
        font-size: 1rem;
    }

    nav.top-nav {
        width: 75%;
        float: right;
        position: relative;
        z-index: 1000;
    }

    nav.main-nav ul li a {
        display: block;
        color: #fff;
        padding: 0.85rem 0;
        text-decoration: none;
        font-size: 1.25rem;
    }

    .main-nav ul li a:not(:last-child)::after,
    .top-nav ul li a:not(:last-child)::after {
        content: " | ";
        margin: 0 1rem;
    }

    .product-overview {
        margin-top: 1.25rem;
        display: flex;
        flex-direction: column;
        padding: 0 .5rem;
    }

    .product-image {
        width: 100%;
        max-width: 300px;
        height: 225px;
        border: 2px solid transparent;
        border-radius: 15px;
    }

    .section-heading {
        width: 100%;
        margin-bottom: 1rem;
    }

    .section-text p {
        font-size: 1.5rem;
        color: white;
        font-weight: 400;
    }
    .catalog-container {
        background-color: #6da54a;
        width: 100%;
        margin: 2.5rem 0 0 0;
        padding: 3.75rem;
        display: flex;
    }

    .catalog-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 65%;
    }

    .catalog-section-title p {
        font-size: 4rem;
        color: #007032;
        font-family: "Times New Roman", Times, serif;
    }


    .catalog-section-subtitle p {
        font-size: 2.5rem;
        color: #007032;
        font-family: "Times New Roman", Times, serif;
    }

    .catalog-section-text p {
        font-size: 1.75rem;
        color: #fff;
    }

    .catalog-menu-container {
        padding: 0 3.75rem;
    }

    .catalog-section-button {
        text-align: center;
        width: 25rem;
    }

    .catalog-button-style {
        font-size: 2rem;
        border: 3px solid white;
        text-decoration: none;
        padding: 0.5rem 1rem;
        color: #fff;
        font-weight: 900;
        width: 25rem;
    }

    .catalog-menu-item p {
        font-size: 1.75rem;
        color: #007032;
        font-family: "Times New Roman", Times, serif;
    }

    .footer-contact-info {
        position: absolute;
        font-size: 1.5rem;
        font-weight: normal;
        top: 47%;
        left: 42%;
        width: 25em;
    }
}

@media screen and (min-width: 1920px) {

    .logo-container {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        right: 1rem;
        top: 90px;
        transform: scale(1);
    }
}