@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


nav{
    height: 6rem;
    width: 100vw;
    background-color: #f9f9f9;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 10;
}

/*Styling logo*/
.logo {
    padding: 1vh 1vw;
    text-align: center;
    width: 500px; 
    height: 100px;
}

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

.nav-links{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Montserrat", system-ui;
    font-weight: 500;
    list-style: none; 
    width: 88vw;
    padding: 0 0.7vw;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}
.nav-links li a{
    text-decoration: none;
    margin: 0 0.7vw;
    color: #183a1e;
}
.nav-links li a:hover {
    color: #5c2c0c;
}
.nav-links li {
    position: relative;
}
.nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #5c2c0c;
    position: absolute;
    -webkit-transition: all ease-in-out 250ms;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
    width: 80%;
}

i.fas.fa-shopping-cart {
    font-size: 2rem; 
    color: #183a1e;
    cursor: pointer;
}

i.fa-solid.fa-user {
    font-size: 2rem; 
    color: #183a1e;
    cursor: pointer;
}

.icons {
    display: flex;
    gap: 2rem;
    align-items: center;
}


/*Styling Buttons*/
.login-button{
    color: #f2f5f7;
    background-color: #183a1e;
    border: 1.5px solid #e3deca;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
    text-transform: capitalize;

}
.login-button:hover {
    color: #5c2c0c;
    background-color: transparent;
    border:1.5px solid #5c2c0c;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
    text-transform: capitalize;
}
.join-button{
    color: #f9f9f9;
    background-color: #183a1e;
    border: 1.5px solid #e3deca;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
    text-transform: capitalize;
}
.join-button:hover {
    color: #5c2c0c;
    background-color: transparent;
    border:1.5px solid #5c2c0c;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
    text-transform: capitalize;
}


.hamburger div{
    width: 30px;
    height:3px;
    background: #183a1e;
    margin: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}


.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center; 
    -ms-flex-align: center; 
    align-items: center;    
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.hero-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Montserrat", system-ui;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    color: #f9f9f9;
    margin: 5rem;
    text-align: center;
}

.hero-content h1 {
    margin: 1.5rem;
    font-size: 3.5rem;
}

.hero-content p {
    line-height: 1.5;
    font-size: 1.5rem;
    width: 60%;
}



.hero-btn {
    font-family: "Montserrat", system-ui;
    background-color: #ff6600;
    color: #f9f9f9;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    border-radius: 2em;
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.hero-btn:hover {
    color: #ff6600;
    background-color: transparent;
    border:1.5px solid #ff6600;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
}

#best-sellers {
    padding: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f9f9f9;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #183a1e;
    text-align: center;
    text-transform: uppercase;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
}

.image-container {
    position: relative;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.image-container:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
    opacity: 1;
}


.home-description {
    color: white; 
    font-size: 1.2rem; 
    width: 80%; 
    text-align: center; 
    margin: 0.5rem 0;
    opacity: 0.9;
    font-family: "Montserrat", system-ui;
}


.product-title-1 {
    color: #f9f9f9; 
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}



.buy-now-btn {
    font-family: "Montserrat", system-ui;
    background-color: #ff6600;
    color: #f9f9f9;
    padding: 0.6rem 0.8rem;
    text-decoration: none;
    border-radius: 2em;
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.buy-now-btn:hover {
    color: #ff6600;
    background-color: transparent;
    border:1.5px solid #ff6600;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
}


.left-image {
    grid-row: 1 / span 2; 
    grid-column: 1;
}

.top-image {
    grid-row: 1;
    grid-column: 2; 
}

.right-image {
    grid-row: 2;
    grid-column: 2; 
}



.left-image {
    grid-row: 1 / span 2; 
    grid-column: 1;
}

.top-image {
    grid-row: 1;
    grid-column: 2; 
}

.right-image {
    grid-row: 2;
    grid-column: 2; 
}


.new-section {
    padding: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f9f9f9;
}




.origin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    width: 100%;
    max-width: 1200px;
    position: relative;
}


.origin-image {
    position: relative;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%); 
    height: 500px; 
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(24, 58, 30, 0.8); 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
    -webkit-box-align: center; 
    -ms-flex-align: center; 
    align-items: center; 
    padding: 1rem; 
    opacity: 0; 
    -webkit-transition: opacity 0.3s ease; 
    transition: opacity 0.3s ease; 
}

.origin-image:hover .overlay {
    opacity: 1; 
}

.product-title-1 {
    color: #f2f5f7; 
    font-size: 1.4rem;
    margin: 0.5rem 0; 
    text-align: center; 
}

.product-description {
    color: #f9f9f9; 
    font-size: 1.1rem; 
    width: 80%; 
    text-align: center; 
    margin: 0.5rem 0;
    opacity: 0.9;
    font-family: "Montserrat", system-ui;
}

.product-price {
    font-family: "Montserrat", system-ui;
    color: #f9f9f9; 
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.origin-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; 
    -webkit-transition: -webkit-transform 0.3s ease; 
    transition: -webkit-transform 0.3s ease; 
    transition: transform 0.3s ease; 
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.origin-image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.buy-now-btn {
    background-color: #5c2c0c; 
    color: #f9f9f9; 
    padding: 0.5rem 1rem; 
    border: none; 
    border-radius: 5px; 
    text-decoration: none; 
    font-size: 1rem; 
    cursor: pointer; 
    -webkit-transition: background-color 0.3s ease; 
    transition: background-color 0.3s ease; 
}

.buy-now-btn:hover {
    background-color: #7c4e25; 
}





.newsletter-section {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}


.newsletter-box {
    background-color: #fff;
    border: 2px solid #183a1e;
    border-radius: 15px;
    padding: 3rem 2rem;
    max-width: 700px;
    width: 100%;
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}


.newsletter-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    color: #183a1e;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.newsletter-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    color: #5c2c0c;
    margin-bottom: 2rem;
}


.newsletter-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5rem;
    max-width: 600px;
    width: 100%;
}

.newsletter-input {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1.5px solid #183a1e;
    border-radius: 2em;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    outline: none;
    max-width: 400px;
}

.newsletter-btn {
    font-family: "Montserrat", system-ui;
    background-color: #ff6600;
    color: #f9f9f9;
    padding: 0.8rem 1.5rem;
    border-radius: 2em;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    color: #ff6600;
    background-color: transparent;
    border:1.5px solid #ff6600;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
}


    .newsletter-section {
        padding: 4rem 1rem;
    }

    .newsletter-box {
        padding: 2rem 1.5rem;
    }

    .newsletter-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input, .newsletter-btn {
        width: 100%;
    }


.footer {
    background-color: #e3deca;
    color: white;
    padding: 4rem 5rem;
    text-align: center;
}

.footer-logo img {
    max-width: 20%;
    margin-bottom: 2rem;
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    margin-right: 5rem;
}

.footer-section {
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #183a1e;
}

.footer-section p, 
.footer-section a {
    color: #5c2c0c;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-weight: 500;
}

.footer-section a:hover {
    cursor: pointer;
    text-decoration: underline;
    
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: #5c2c0c;
    text-decoration: none;
    font-size: 1rem;
}

.footer-section ul li a:hover {
   cursor: pointer;
   text-decoration: underline;
}


.footer-bottom {
    border-top: 2px solid #5c2c0c;
    padding-top: 1rem;
    font-family: "Montserrat", sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
}

.footer-links li {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-links li a {
    color: #5c2c0c;
    text-decoration: none;
}

.footer-links li a:hover {
   cursor: pointer;
   text-decoration: underline;
}


.footer-address, 
.footer-copyright {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    color: #5c2c0c;
}



/* Chatbox toggle button */
#click {
  display: none;
}

.chatbox-toggle {
  position: fixed;
  right: 30px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  background: #ff6600;
  text-align: center;
  line-height: 55px;
  border-radius: 50px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.chatbox-toggle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

/* Hide X mark icon by default */
.chatbox-toggle i.fa-xmark {
  opacity: 0;
  pointer-events: none;
}

/* Show X mark when the chatbox is open */
#click:checked ~ .chatbox-toggle i.fa-xmark {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(180deg);
}

/* Hide question mark when the chatbox is open */
#click:checked ~ .chatbox-toggle i.fa-question {
  opacity: 0;
  pointer-events: none;
}

/* Chatbox wrapper positioning */
.wrapper {
  position: fixed;
  right: 30px;
  bottom: 85px; /* Adjusted to be above the button */
  max-width: 400px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#click:checked ~ .wrapper {
  opacity: 1;
  bottom: 85px; /* Make sure it's above the button */
  pointer-events: auto;
}

/* Head text and chat box */
.wrapper .head-text {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: 1.2rem;
  background: #ff6600;
}

.wrapper .chat-box {
  padding: 1.2rem;
  width: 100%;
}

.chat-box .desc-text {
  font-family: "Montserrat", sans-serif;
  color: darkslategrey;
  text-align: center;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
}

.chat-box form {
  padding: 1rem 1.2rem;
  margin: 20px 0;
  border-radius: 25px;
  border: 1px solid darkslategrey;
}

.chat-box form .field {
  height: 50px;
  width: 100%;
  margin-top: 20px;
}

.chat-box form .field:last-child {
  margin-bottom: 15px;
}

form .field input,
form .field button,
form .textarea textarea {
  font-family: "Montserrat", sans-serif;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  border: 1px solid darkslategrey;
  outline: none;
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

form .field input:focus,
form .textarea textarea:focus {
  border-color: #ff6600;
}

form .field input::placeholder,
form .textarea textarea::placeholder {
  color: silver;
  transition: all 0.3s ease;
}

form .field input:focus::placeholder,
form .textarea textarea:focus::placeholder {
  color: darkslategrey;
}

.chat-box form .textarea {
  height: 70px;
  width: 100%;
}

.chat-box form .textarea textarea {
  font-family: "Montserrat", sans-serif;
  height: 100%;
  border-radius: 50px;
  resize: none;
  padding: 15px 20px;
  font-size: 1rem;
}

.chat-box form .field button {
  font-family: "Montserrat", sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background: #ff6600;
  transition: all 0.3s ease;
}

.chat-box form .field button:active {
  transform: scale(0.97);
}


















.info-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; 
    -webkit-box-pack: center; 
    -ms-flex-pack: center; 
    justify-content: center; 
    padding: 1rem 0; 
}

.image-wrapper {
    position: relative; 
    width: 87%; 
    overflow: hidden; 
}

.full-width-image {
    width: 100%; 
    height: auto; 
    max-height: 550px; 
    -o-object-fit: cover; 
    object-fit: cover; 
    border-radius: 10px; 
}

.text-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5); 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-orient: vertical; 
    -webkit-box-direction: normal; 
    -ms-flex-direction: column; 
    flex-direction: column; 
    -webkit-box-pack: center; 
    -ms-flex-pack: center; 
    justify-content: center; 
    -webkit-box-align: center; 
    -ms-flex-align: center; 
    align-items: center; 
    text-align: center; 
    border-radius: 10px;
}

.info-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem; 
    margin-bottom: 0.5rem; 
    color: #f9f9f9; 
}

.info-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem; 
    line-height: 1.5; 
    color: white; 
    width: 60%;
}

.products-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 6rem;
    padding-left: 8rem;
    padding-right: 8rem;
    padding-bottom: 6rem;
}

.product-filters {
    width: 20%;
    padding: 1rem;
    background-color: white;
    border: 2px solid #5c2c0c;
}

.product-filters h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
    color: #183a1e;
}

.product-filters ul {
    list-style: none;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    color: #5c2c0c;
}

.product-filters li {
    margin-bottom: 1.5rem;
}

.product-label {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.product-filters select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #5c2c0c;
    border-radius: 5px;
}

.product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 80%;
}

.product-card {
    width: 22%;
    padding: 0.8rem;
    margin: 0.8rem;
    background-color: #f9f9f9;
    border: 3px solid #183a1e;
    border-radius: 2em;
    text-align: center;
    max-height: 600px;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card h3 {
    font-family: "Montserrat", sans-serif;
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
    color: #183a1e;
}

.product-description {
    font-size: 1rem;
    width: 100%;
    color: #5c2c0c;
    text-align: center;
    margin: 1rem 0;
}

.product-card p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #5c2c0c;
}

.buy-now-btn {
    margin-top: -0.1rem;
    background-color: #ff6600;
    color: white;
    padding: 0.6rem 0.8rem;
    border: none;
    border-radius: 2em;
    cursor: pointer;
}

.buy-now-btn:hover {
    color: #ff6600;
    background-color: transparent;
    border:1.5px solid #ff6600;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
}


.load-more-container {
        text-align: center; 
        margin-top: 2rem; 
    }
    
    .load-more-btn {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    background-color: transparent; 
    color: #5c2c0c; 
    padding: 0.5rem 1rem; 
    border: none; 
    border-radius: 5px; 
    text-decoration: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    -webkit-transition: background-color 0.3s ease, -webkit-text-decoration 0.3s ease; 
    transition: background-color 0.3s ease, -webkit-text-decoration 0.3s ease; 
    transition: background-color 0.3s ease, text-decoration 0.3s ease; 
    transition: background-color 0.3s ease, text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease; 
    text-align: left;
}

.load-more-btn:hover {
    text-decoration: underline; 
    background-color: transparent; 
    font-weight: bolder;
}

.gift-container {
    position: relative;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
}

.gift-container img {
    width: 100%;
    border-radius: 10px;
}

.gift-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4); 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 10px;
}

.gift-overlay h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.gift-overlay p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    width: 60%;
    line-height: 1.8;
}



.subscription-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 4rem 8rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.subscription-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    gap: 4rem;
}

.subscription-products {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
}

.subscription-steps {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
}

.subscription-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 2em;
    border: 3px solid #183a1e;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.subscription-image {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.subscription-title,
.step-title {
    font-size: 1.8rem;
    color: #183a1e;
    font-weight: bold;
    margin: 1rem 0;
}

.subscription-description {
    font-size: 1.2rem;
    color: #5c2c0c;
    margin: 1rem 0;
}

.subscription-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5c2c0c;
    margin: 1rem 0;
}

.step {
    position: relative;
    text-align: center;
}

.step-image {
    width: 100%;
    border-radius: 10px;
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #f9f9f9; 
    padding: 1rem;
    border-radius: 10px;
}

.step-title {
    font-size: 1.8rem;
    color: #f9f9f9; 
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 1.2rem;
    width: 60%;
}


.video-container {
    position: relative;
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
}

.responsive-video {
    width: 100%; 
    height: auto; 
    border-radius: 10px; 
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}



.testimonials-section {
    padding: 6rem 8rem;
    background-color: white;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    color: #183a1e;
    font-weight: bold;
    margin-bottom: 4rem;
}

.testimonials-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.stars {
    color: #ffcc00;
    margin-bottom: 1rem;
}

.pull-quote {
    font-size: 1.2rem;
    color: #5c2c0c;
    margin-bottom: 1rem;
    font-style: italic;
}

.customer-name {
    font-size: 1rem;
    color: #183a1e;
    font-weight: bold;
}


.cart-container {
    max-width: 87%;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffff;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Cart Item Styles */
.shopping-cart {
    margin: 20px auto;
    max-width: 1200px;
    font-family: "Montserrat", sans-serif;
}

.cart-heading {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    color: #183a1e;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
    font-family: "Montserrat", sans-serif;
    padding: 15px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    color: #183a1e;
}

.cart-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 15px;
}

.cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cart-item-details {
    font-family: "Montserrat", sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.quantity-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.quantity-btn {
    padding: 5px 10px;
    background-color: #ff6600;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    margin: 0 5px;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.cart-summary {
    font-family: "Montserrat", sans-serif;
    text-align: right;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #183a1e;
}

.grand-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: #183a1e;
}

.checkout-btn {
    background-color: #ff6600;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 20px;
}

.checkout-btn:hover {
    background-color: #183a1e;
    color: #fff;
    -webkit-transition: all ease-in-out 350ms;
    transition: all ease-in-out 350ms;
}



/* Quiz Page Styles */

.quiz-container {
    max-width: 85%;
    margin: auto;
    text-align: center;
    padding: 4rem;
}

.question {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 2rem;
    color: #183a1e;
    margin: 4rem;
}

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

.progress-bar {
    width: 100%;
    height: 10px;
    background: #183a1e;
    border-radius: 5px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0;
    background: #ff6600;
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
}

.quiz-content {
    position: relative;
}

.quiz-step {
    display: none;
    -webkit-animation: fadeIn 0.5s ease-in-out;
    animation: fadeIn 0.5s ease-in-out;
}

.quiz-step.active {
    display: block;
}

.quiz-options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.quiz-card {
    width: 500px;
    height: auto; 
    cursor: pointer;
    border: 1px solid #5c2c0c;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; 
}

.quiz-card img {
    width: 100%;
    height: 500px; 
    -o-object-fit: cover; 
    object-fit: cover; 
    border-radius: 10px 10px 0 0; 
}

.quiz-card:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.quiz-card.selected {
    border: 3px solid #ff6600;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    border-radius: 10px;
}

.quiz-card p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    padding: 1rem;
    background: #fafafa;
    color: #5c2c0c; 
    border-top: 1px solid #5c2c0c; 
}

.quiz-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.quiz-progress p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem;
    color: #183a1e;
}

.quiz-navigation button {
    font-family: "Montserrat", sans-serif;
    padding: 10px 20px;
    border: none;
    border-radius: 2em;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #183a1e;
    color: #fff;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.quiz-navigation button:hover {
    background-color: #ff6600;
}

.quiz-navigation button:disabled {
    background-color: rgba(24, 58, 30, 0.5);
    cursor: not-allowed;
}


/*Stying for tablet screens*/
@media screen and (max-width: 1024px){
    nav{
        position: fixed;
        z-index: 3;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        -webkit-transform: translate(-5%, -50%);
        transform: translate(-5%, -50%);
        z-index: 2;
        -webkit-transition: all 0.7s ease;
        transition: all 0.7s ease;
    }
    .nav-links{
        position: fixed;
        background: #e3deca;
        height: 82%;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        -webkit-transition: all 1s ease-out;
        transition: all 1s ease-out;
        pointer-events: none;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        -webkit-transition: all 0.5s ease 0.2s;
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        -webkit-transition: all 0.5s ease 0.4s;
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        -webkit-transition: all 0.5s ease 0.6s;
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        -webkit-transition: all 0.5s ease 0.7s;
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        -webkit-transition: all 0.5s ease 0.8s;
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        -webkit-transition: all 0.5s ease 0.9s;
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        -webkit-transition: all 0.5s ease 1s;
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1;
    }

.logo img {
    height: 80%;
    width: auto;
    margin-top: 10px;
}

.toggle .line1{
    -webkit-transform: rotate(-45deg) translate(-5px,6px);
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    -webkit-transform: rotate(45deg) translate(-5px,-6px);
    transform: rotate(45deg) translate(-5px,-6px);
}

.hero-content h1 {
    margin: 1rem;
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    width: 60%
}

    
.image-container .overlay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        opacity: 1; 
        visibility: visible; 
        -webkit-transition: none;
        transition: none; 
    }
    
    .image-container img {
        -webkit-filter: none;
        filter: none; 
        height: auto;
        width: 100%;
    }

    .image-container:hover .overlay {
        opacity: 1;
    }
    
.image-grid {
        grid-template-columns: 1fr; 
    }

    .left-image, .top-image, .right-image {
        grid-column: 1; 
        grid-row: auto; 
    }
    
    
    .origin-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto; 
        -webkit-scroll-snap-type: x mandatory; 
        -ms-scroll-snap-type: x mandatory; 
        scroll-snap-type: x mandatory;
    }

    .origin-image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; 
        scroll-snap-align: start; 
    }
    
    
.product-title {
    font-size: 1.2rem;
}
    
    
    .newsletter-section {
        padding: 4rem 1rem;
    }

    .newsletter-box {
        padding: 2rem 1.5rem;
    }

    .newsletter-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-input, .newsletter-btn {
        width: 100%;
    }
    
    
    .footer-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: 4rem;
        width: 80%;
    }

    .footer-section {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .footer-logo img {
        max-width: 120px;
    }
    
    .footer-logo img {
        max-width: 80%;
    }
    
    
    .products-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .product-filters {
        width: 100%;
        margin-bottom: 2rem;
    }

    .product-list {
        width: 100%;
    }

    .product-card {
        width: 100%;
        margin: 1rem 0;
        color: white;
    }
    
    .product-card h3{
        font-size: 1.8rem;
    }
    
    .product-card p{
        font-size: 1.5rem;
    }
    
    .buy-now-btn {
        padding: 1.5rem 4rem;
    }
    
    
    .subscription-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; 
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .subscription-products, .subscription-steps {
        width: 100%; 
        gap: 1.5rem; 
    }

    .step-title {
        font-size: 1.8rem; 
    }

    .step-description {
        font-size: 1.2rem; 
    }
    
    
    .product-description {
    font-size: 1.2rem;
    width: 100%;
}
    
    .video-container {
        padding: 0 0.5rem; 
    }

    .responsive-video {
        border-radius: 10px; 
    }
    
    .shopping-cart {
        padding: 10px;
        max-width: 95%;
    }

    .cart-heading {
        font-size: 1.8rem;
    }

    .cart-table th, .cart-table td {
        padding: 10px;
        font-size: 0.9rem;
    }

    .cart-image {
        width: 70px;
        height: 70px;
    }

    .quantity-btn {
        padding: 5px 8px;
        font-size: 0.9rem;
    }

    .quantity-input {
        width: 40px;
        font-size: 0.9rem;
    }

    .cart-summary {
        font-size: 1rem;
    }

    .grand-total {
        font-size: 1.3rem;
    }

    .checkout-btn {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .testimonials-section {
        padding: 2rem 4rem;
    }

    .testimonials-container {
        gap: 1.5rem;
    }

    .testimonial-card {
        max-width: 250px;
    }
    
    .gift-overlay h2 {
        font-size: 1.5rem; 
    }

    .gift-overlay p {
        font-size: 1.2rem; 
        width: 90%; 
    }

    .gift-container img {
        border-radius: 5px; 
    }

    .gift-overlay {
        padding: 0.8rem; 
        background-color: rgba(0, 0, 0, 0.6);
    }
    
    .product-card {
        max-height: 100%;
    }
    
    .quiz-container {
        padding: 2rem; 
    }

    .question {
        font-size: 1.6rem; 
        margin: 2rem 0; 
    }

    .quiz-options {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; 
        gap: 10px; 
        -webkit-box-align: center; 
        -ms-flex-align: center; 
        align-items: center; 
        -webkit-box-pack: center; 
        -ms-flex-pack: center; 
        justify-content: center; 
        height: 100%; 
    }

    .quiz-card {
        width: 100%; 
        max-width: 400px; 
        margin-bottom: 15px; 
        display: -webkit-box; 
        display: -ms-flexbox; 
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; 
        -webkit-box-align: center; 
        -ms-flex-align: center; 
        align-items: center;
    }

    .quiz-card img {
        height: 250px; 
    }

    .quiz-card p {
        font-size: 1.1rem; 
        padding: 1rem; 
    }

    .quiz-navigation button {
        width: 100%; 
        padding: 12px 0; 
        font-size: 1.2rem; 
    }

    .quiz-progress p {
        font-size: 1.1rem;
        padding: 0.8rem; 
    }
    
}


/*Stying for mobile screens*/
@media screen and (max-width: 600px) {

   .logo {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; 
        -webkit-box-pack: center; 
        -ms-flex-pack: center; 
        justify-content: center; 
        -webkit-box-align: center; 
        -ms-flex-align: center; 
        align-items: center; 
    }

    .logo img {
        height: 60px; 
        width: auto;
        margin-bottom: 8px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem; 
        margin: 1rem;
    }
    
i.fas.fa-shopping-cart {
    font-size: 2.5rem; 
    cursor: pointer;
}
    
    .hero-video {
        display: none;
    }

    .video-overlay {
        background: url(../images/hero-mobile.jpg) no-repeat center center/cover;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        width: 95%;
    }
    
    .hero-btn { 
        font-size: 1rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr; 
    }
    
    
    .image-container .overlay {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        opacity: 1; 
        visibility: visible; 
        -webkit-transition: none;
        transition: none; 
    }
    
    .image-container img {
        -webkit-filter: none;
        filter: none; 
        height: auto;
        width: 100%;
    }

    .image-container:hover .overlay {
        opacity: 1;
    }

    .left-image, .top-image, .right-image {
        grid-column: 1; 
        grid-row: auto; 
    }

    .product-title-1 {
        font-size: 1rem; 
        margin-top: 0.2rem;
    }
    
    .product-card {
        max-height: 800px;
    }

    .buy-now-btn {
        font-size: 1rem; 
        padding: 0.3rem 0.5rem;
        margin-top: 0.4rem;
    }
    
    .home-description {
        font-size: 0.8rem;
        margin-bottom: 0.2rem; 
        margin-top: 0.2rem;
    }
    
    .image-wrapper{
        margin-top: 4.8rem;
    }
    
    .info-title {
        font-size: 0.8rem;
        width: 85%;
    }
    
    .info-description {
        font-size: 0.8rem;
    }
    
    .product-description {
    font-size: 1rem;
    width: 80%;
    }

    
    .products-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .product-filters {
    width: 100%;
    padding: 1rem;
    background-color: white;
}
    
    .product-price {
    font-size: 1rem;
    margin-bottom: 0.4rem; 
}
    
    .origin-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        overflow-x: auto; 
        -webkit-scroll-snap-type: x mandatory; 
        -ms-scroll-snap-type: x mandatory; 
        scroll-snap-type: x mandatory;
    }

    .origin-image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; 
        scroll-snap-align: start; 
    }
    
    
    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-description {
        font-size: 1rem;
    }

    .newsletter-box {
        padding: 1.5rem 1rem;
    }

    .newsletter-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .newsletter-input, .newsletter-btn {
        width: 100%;
    }
    
    
    .footer-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }
    
    .footer-logo img {
        max-width: 100%;
    }
    
    .products-section {
        padding: 2rem;
    }

    .product-filters {
        width: 100%;
        margin-bottom: 2rem;
    }

    .product-filters h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .product-filters label {
        font-size: 0.9rem;
    }

    .product-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product-card {
        width: 100%;
        margin: 0.5rem 0;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card p {
        font-size: 0.9rem;
    }

    .buy-now-btn {
        font-size: 1rem;
        padding: 1rem 1rem;
    }

    .load-more-btn {
        font-size: 1.2rem;
    }
    
    
    .page-title {
        font-size: 1.8rem;
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    
    .footer-content {
       margin-left: 1rem;
       width: 80%;
    } 
    
    .subscription-page {
        padding: 2rem 1rem; 
    }

    .subscription-content {
        gap: 1rem; 
    }

    .subscription-card {
        padding: 1rem; 
        background-color: white;
    }

    .subscription-title {
        font-size: 1.5rem; 
    }

    .subscription-description, .subscription-price {
        font-size: 1rem; 
    }

    .step-title {
        font-size: 1.5rem; 
    }

    .step-description {
        font-size: 1rem; 
    }
    
    .product-description {
    font-size: 1rem;
    width: 100%;
}
    
    .subscription-price{
        font-size: 1rem;
    }
    
    .shopping-cart {
        padding: 5px;
        max-width: 100%;
    }

    .cart-heading {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cart-table {
        display: block; 
    }
    
    .info-title {
        font-size: 1.5rem;
    }

    .cart-table th,
    .cart-table td {
        display: block;
        width: 100%;
        padding: 8px;
        text-align: left;
        font-size: 0.8rem;
    }

    .cart-table th {
        font-weight: bold;
    }

    .cart-item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }

    .cart-image {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .cart-item-details {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .quantity-control {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .quantity-btn {
        padding: 5px;
        font-size: 0.8rem;
        margin: 0 2px;
    }

    .quantity-input {
        width: 40px;
        font-size: 0.8rem;
    }

    .cart-summary {
        font-size: 0.9rem;
        text-align: center; 
        line-height: 1.5;
    }

    .grand-total {
        font-size: 1.2rem;
    }

    .checkout-btn {
        font-size: 1rem;
        padding: 8px 12px;
        width: 100%; 
        margin: 10px 0;
    }

    .continue-shopping-btn {
        font-size: 1rem;
        padding: 8px 12px;
        width: 100%; 
        margin: 10px 0;
    }
    
    .testimonials-section {
        padding: 1rem 2rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .pull-quote {
        font-size: 1rem;
    }

    .customer-name {
        font-size: 0.9rem;
    }
    
    .gift-overlay h2 {
        font-size: 1.2rem; 
    }

    .gift-overlay p {
        font-size: 0.8rem; 
        width: 100%; 
    }

    .gift-container img {
        border-radius: 5px; 
    }

    .gift-overlay {
        padding: 0.8rem; 
        background-color: rgba(0, 0, 0, 0.6);
    }
    
    .video-container {
        padding: 0; 
        width: 95%;
    }

    .responsive-video {
        border-radius: 5px; 
    }
    
    .quiz-container {
        padding: 1rem; 
    }

    .question {
        font-size: 1.5rem; 
        margin: 1.5rem 0; 
    }

    .quiz-options {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; 
        gap: 5px; 
    }

    .quiz-card {
        width: 100%; 
        max-width: 350px; 
        margin-bottom: 1rem; 
    }

    .quiz-card img {
        height: 200px; 
    }

    .quiz-card p {
        font-size: 1rem; 
        padding: 0.8rem; 
    }
    
    .quiz-navigation{
        gap: 1rem;
    }

    .quiz-navigation button {
        width: 100%; 
        padding: 1rem 0; 
        font-size: 1rem; 
    }

    .quiz-progress p {
        font-size: 1rem; 
        padding: 0.5rem; 
    }
    
    .wrapper {
    max-width: 90%; 
    right: 15px; 
    bottom: 75px; 
  }

  .wrapper .head-text {
    font-size: 1rem; 
  }

  .wrapper .chat-box {
    padding: 15px; 
  }

  .chat-box form .field {
    height: 45px; 
  }

  form .field input,
  form .field button,
  form .textarea textarea {
    font-size: 14px; 
  }

  form .textarea {
    height: 60px; 
  }

  .chat-box form .field button {
    font-size: 1rem ; 
  }
}




