@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');

:root {
   --main-color: #2980b9;
   --orange: #f39c12;
   --red: #e74c3c;
   --black: #333;
   --white: #fff;
   --light-color: #666;
   --light-bg: #eee;
   --border: .2rem solid var(--black);
   --box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

* {
   font-family: 'Nunito', sans-serif;
   margin: 0; padding: 0;
   box-sizing: border-box;
   outline: none; border: none;
   text-decoration: none;
}

*::selection {
   background-color: var(--main-color);
   color: var(--white);
}

::-webkit-scrollbar {
   height: .5rem;
   width: 1rem;
}

::-webkit-scrollbar-track {
   background-color: transparent;
}

::-webkit-scrollbar-thumb {
   background-color: var(--main-color);
}

html {
   font-size: 62.5%;
   overflow-x: hidden;
}

body {
   background-color: var(--light-bg);
}

section {
   padding: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

a {
   text-decoration: none;
}

.heading {
   font-size: 4rem;
   color: var(--black);
   margin-bottom: 2rem;
   text-align: center;
   text-transform: uppercase;
}

.btn,
.delete-btn,
.option-btn {
   display: block;
   width: 100%;
   margin-top: 2rem;
   border-radius: .5rem;
   padding: 1rem 3rem;
   font-size: 1.7rem;
   text-transform: capitalize;
   color: var(--white);
   cursor: pointer;
   text-align: center;
}

.btn:hover,
.delete-btn:hover,
.option-btn:hover {
   background-color: var(--black);
}

.btn {
   background-color: var(--main-color);
}

.option-btn {
   background-color: var(--orange);
}

.delete-btn {
   background-color: var(--red);
}

.flex-btn {
   display: flex;
   gap: 1rem;
}

.message {
   position: sticky;
   top: 0;
   max-width: 1200px;
   margin: 0 auto;
   background-color: var(--light-bg);
   padding: 2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1.5rem;
   z-index: 1100;
}

.message span {
   font-size: 2rem;
   color: var(--black);
}

.message i {
   cursor: pointer;
   color: var(--red);
   font-size: 2.5rem;
}

.message i:hover {
   color: var(--black);
}

.empty {
   padding: 1.5rem;
   background-color: var(--white);
   border: var(--border);
   box-shadow: var(--box-shadow);
   text-align: center;
   color: var(--red);
   border-radius: .5rem;
   font-size: 2rem;
   text-transform: capitalize;
}

.disabled {
   pointer-events: none;
   user-select: none;
   opacity: .5;
}

@keyframes fadeIn {
   0% {
      transform: translateY(1rem);
   }
}

.header {
   position: sticky;
   top: 0;
   left: 0;
   right: 0;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   z-index: 1000;
}

.header .flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
}

.header .flex .logo {
   font-size: 2.5rem;
   color: var(--black);
}

.header .flex .logo span {
   color: var(--main-color);
}

.header .flex .navbar a {
   margin: 0 1rem;
   font-size: 2rem;
   color: var(--black);
}

.header .flex .navbar a:hover {
   color: var(--main-color);
   text-decoration: underline;
}

.header .flex .icons > * {
   margin-left: 1rem;
   font-size: 2.5rem;
   cursor: pointer;
   color: var(--black);
}

.header .flex .icons > *:hover {
   color: var(--main-color);
}

.header .flex .icons a span {
   font-size: 2rem;
}

.header .flex .profile {
   position: absolute;
   top: 120%;
   right: 2rem;
   background-color: var(--white);
   border-radius: .5rem;
   box-shadow: var(--box-shadow);
   padding: 2rem;
   width: 30rem;
   padding-top: 1.2rem;
   display: none;
   animation: fadeIn .2s linear;
}

.header .flex .profile p {
   text-align: center;
   color: var(--black);
   font-size: 2rem;
   margin-bottom: 1rem;
}

#menu-btn {
   display: none;
}

/* Responsive design adjustments */
@media screen and (max-width: 1200px) {
   .heading {
      font-size: 3rem;
   }
   .header .flex .logo {
      font-size: 2rem;
   }
   .header .flex .navbar a {
      font-size: 1.8rem;
   }
   .message span {
      font-size: 1.6rem;
   }
   .message i {
      font-size: 2rem;
   }
}

@media screen and (max-width: 900px) {
   .heading {
      font-size: 2.5rem;
   }
   .header .flex .logo {
      font-size: 2rem;
   }
   .header .flex .navbar a {
      font-size: 1.6rem;
   }
   .header .flex .icons > * {
      font-size: 2rem;
   }
   .message {
      flex-direction: column;
   }
   .flex-btn {
      flex-direction: column;
      gap: 1rem;
   }
}

@media screen and (max-width: 600px) {
   html {
      font-size: 50%;
   }
   section {
      padding: 1rem;
   }
   .heading {
      font-size: 2rem;
      margin-bottom: 1rem;
   }
   .btn,
   .delete-btn,
   .option-btn {
      font-size: 1.5rem;
      padding: 1rem;
   }
   .message {
      padding: 1rem;
      gap: 1rem;
   }
   .message span {
      font-size: 1.4rem;
   }
   .message i {
      font-size: 2rem;
   }
   .header .flex .navbar a {
      font-size: 1.4rem;
   }
   .header .flex .profile {
      width: 100%;
      padding: 1.5rem;
   }
   .header .flex .icons > * {
      font-size: 2rem;
   }
}

@media screen and (max-width: 480px) {
   .header .flex .profile {
      width: 100%;
      position: relative;
   }
   .header .flex .navbar {
      display: inline-block;
   }
   #menu-btn {
      display: inline-block;
      font-size: 2rem;
      cursor: pointer;
   }
}
@media screen and (max-width: 425px) {
   .header .flex .profile {
      width: 100%;
      position: relative;
   }
   .header .flex .navbar {
      display: none;
   }
   #menu-btn {
      display: inline-block;
      font-size: 2rem;
      cursor: pointer;
   }
}
/*#menu-btn {*/
/*   display: inline-block;*/
/*}*/

.home-bg .home .slide {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 1.5rem;
   padding-bottom: 6rem;
   padding-top: 2rem;
   user-select: none;
}

.home-bg .home .slide .content {
   flex: 1 1 40rem;
}

.home-bg .home .slide .content span {
   font-size: 2rem;
   color: var(--white);
}

.home-bg .home .slide .content h3 {
   margin-top: 1rem;
   font-size: 4rem;
   color: var(--white);
   text-transform: uppercase;
}

.home-bg .home .slide .content .btn {
   display: inline-block;
   width: auto;
}

.swiper-pagination-bullet-active {
   background-color: var(--main-color);
}

.category .slide {
   margin-bottom: 5rem;
   box-shadow: var(--box-shadow);
   text-align: center;
   padding: 2rem;
   background: var(--white);
   border-radius: .5rem;
}

.home-bg {
   position: relative;
   overflow: hidden;
}

.home-slider {
   height: 450px;
}

.home-slider .slide {
   display: flex;
   justify-content: center;
   align-items: center;
}

.home-slider .slide .image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.home-bg .home .slide .content {
   flex: 1 1 40rem;
}

.home-bg .home .slide .content span {
   font-size: 2rem;
   color: var(--white);
}

.home-bg .home .slide .content h3 {
   margin-top: 1rem;
   font-size: 4rem;
   color: var(--white);
   text-transform: uppercase;
}

.home-bg .home .slide .content .btn {
   display: inline-block;
   width: auto;
}

.swiper-pagination-bullet-active {
   background-color: var(--main-color);
}

.out-of-stock {
   background-color: rgba(255, 0, 0, 0.1);
   color: #ff0000;
   font-weight: bold;
   text-align: center;
   padding: 0.5rem;
   border-radius: 0.5rem;
   margin-top: 0.5rem;
   font-size: 2.5rem;
}

.stock {
   font-size: 1.5rem;
   color: #555;
   font-style: italic;
   margin-top: 0.5rem;
}

.see-more-btn {
   background-color: transparent;
   border: 1px solid var(--main-color);
   color: var(--main-color);
   font-size: 1.2rem;
   border-radius: 0.5rem;
   cursor: pointer;
   transition: background-color 0.3s, color 0.3s;
   margin-top: 0.5rem;
   text-align: center;
}

.see-more-btn:hover {
   background-color: var(--main-color);
   color: white;
}

.category .slide:hover {
   background-color: var(--black);
}

.category .slide:hover img {
   filter: invert();
}

.category .slide:hover h3 {
   color: var(--white);
}

.category .slide img {
   height: 7rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
   user-select: none;
}

.category .slide h3 {
   font-size: 2rem;
   color: var(--black);
   user-select: none;
}

.home-products .slide {
   position: relative;
   padding: 2.5rem;
   border-radius: .5rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   margin-bottom: 5rem;
   overflow: hidden;
   user-select: none;
   height: 500px;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.home-products .slide img {
   width: 100%;
   height: 20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.home-products .slide .name {
   font-size: 1.5rem;
   color: var(--black);
}

.home-products .slide .flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
}

.home-products .slide .flex .qty {
   width: 7rem;
   padding: 1rem;
   border: var(--border);
   font-size: 1.8rem;
   color: var(--black);
   border-radius: .5rem;
   margin: 1rem 1rem;
}

.home-products .slide .btn {
   margin-top: auto;
   margin-bottom: 1rem;
}

.home-products .slide .flex .price {
   margin: 1rem 0;
   color: var(--red);
   margin: 1rem 0;
   font-size: 1.7rem;
}

.home-products .slide .fa-heart,
.home-products .slide .fa-eye {
   position: absolute;
   top: 1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border: var(--border);
   border-radius: .5rem;
   text-align: center;
   color: var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.home-products .slide .fa-heart {
   right: -6rem;
}

.home-products .slide .fa-eye {
   left: -6rem;
}

.home-products .slide .fa-heart:hover,
.home-products .slide .fa-eye:hover {
   background-color: var(--black);
   color: var(--white);
}

.home-products .slide:hover .fa-heart {
   right: 1rem;
}

.home-products .slide:hover .fa-eye {
   left: 1rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
   .home-slider {
      height: 400px;
   }

   .home-slider .slide .image img {
      object-fit: cover;
   }

   .home-bg .home .slide .content {
      flex: 1 1 35rem;
   }

   .home-bg .home .slide .content h3 {
      font-size: 3rem;
   }

   .home-products .slide {
      height: 450px;
      padding: 2rem;
   }

   .home-products .slide .name {
      font-size: 1.4rem;
   }

   .home-products .slide .flex .qty {
      width: 6rem;
      font-size: 1.6rem;
   }

   .home-products .slide .flex .price {
      font-size: 1.6rem;
   }
}

@media screen and (max-width: 900px) {
   .home-bg .home .slide {
      padding-top: 3rem;
      padding-bottom: 3rem;
   }

   .home-bg .home .slide .content {
      flex: 1 1 30rem;
   }

   .home-bg .home .slide .content h3 {
      font-size: 2.5rem;
   }

   .home-products .slide {
      height: 400px;
      padding: 1.5rem;
   }

   .home-products .slide img {
      height: 15rem;
   }

   .home-products .slide .name {
      font-size: 1.3rem;
   }

   .home-products .slide .flex .qty {
      width: 6rem;
      font-size: 1.5rem;
   }

   .home-products .slide .flex .price {
      font-size: 1.5rem;
   }

   .category .slide img {
      height: 5rem;
   }
}

@media screen and (max-width: 600px) {
   .home-slider {
      height: 300px;
   }

   .home-slider .slide .image img {
      object-fit: cover;
   }

   .home-bg .home .slide {
      padding-top: 2rem;
      padding-bottom: 2rem;
   }

   .home-bg .home .slide .content {
      flex: 1 1 100%;
   }

   .home-bg .home .slide .content h3 {
      font-size: 2rem;
   }

   .home-products .slide {
      height: 350px;
      padding: 1rem;
   }

   .home-products .slide img {
      height: 10rem;
   }

   .home-products .slide .name {
      font-size: 1.2rem;
   }

   .home-products .slide .flex .qty {
      width: 5rem;
      font-size: 1.4rem;
   }

   .home-products .slide .flex .price {
      font-size: 1.4rem;
   }

   .category .slide img {
      height: 4rem;
   }

   .category .slide h3 {
      font-size: 1.5rem;
   }
}

@media screen and (max-width: 480px) {
   .home-bg .home .slide .content {
      flex: 1 1 100%;
   }

   .home-bg .home .slide .content h3 {
      font-size: 1.8rem;
   }

   .home-products .slide {
      height: 300px;
      padding: 0.8rem;
   }

   .home-products .slide img {
      height: 8rem;
   }

   .home-products .slide .name {
      font-size: 1.1rem;
   }

   .home-products .slide .flex .qty {
      width: 5rem;
      font-size: 1.3rem;
   }

   .home-products .slide .flex .price {
      font-size: 1.3rem;
   }

   .category .slide img {
      height: 3.5rem;
   }
}
.quick-view form {
   padding: 2rem;
   border-radius: .5rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   margin-top: 1rem;
}

.quick-view form .row {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   flex-wrap: wrap;
}

.quick-view form .row .image-container {
   margin-bottom: 2rem;
   flex: 1 1 40rem;
}

.quick-view form .row .image-container .main-image img {
   height: 30rem;
   width: 100%;
   object-fit: contain;
}

.quick-view form .row .image-container .sub-image {
   display: flex;
   gap: 1.5rem;
   justify-content: center;
   margin-top: 2rem;
}

.quick-view form .row .image-container .sub-image img {
   height: 7rem;
   width: 10rem;
   object-fit: contain;
   padding: .5rem;
   border: var(--border);
   cursor: pointer;
   transition: .2s linear;
}

.quick-view form .flex .image-container .sub-image img:hover {
   transform: scale(1.1);
}

.quick-view form img {
   width: 100%;
   height: 20rem;
   object-fit: contain;
   margin-bottom: 2rem;
}

.quick-view form .row .content {
   flex: 1 1 40rem;
}

.quick-view form .row .content .name {
   font-size: 2rem;
   color: var(--black);
}

.quick-view form .row .flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 1rem;
   margin: 1rem 0;
}

.quick-view form .row .flex .qty {
   width: 7rem;
   padding: 1rem;
   border: var(--border);
   font-size: 1.8rem;
   color: var(--black);
   border-radius: .5rem;
}

.quick-view form .row .flex .price {
   font-size: 2rem;
   color: var(--red);
}

.quick-view form .row .content .details {
   font-size: 1.6rem;
   color: var(--light-color);
   line-height: 2;
}

.quick-view form .row .content .stock {
   font-size: 1.6rem;
   color: var(--light-color);
   line-height: 2;
}

.products .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, 33rem);
   gap: 1.5rem;
   justify-content: center;
   align-items: flex-start;
}

.products .box-container .box {
   position: relative;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   padding: 2rem;
   overflow: hidden;
}

.products .box-container .box img {
   height: 20rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
}

.products .box-container .box .fa-heart,
.products .box-container .box .fa-eye {
   position: absolute;
   top: 1rem;
   height: 4.5rem;
   width: 4.5rem;
   line-height: 4.2rem;
   font-size: 2rem;
   background-color: var(--white);
   border: var(--border);
   border-radius: .5rem;
   text-align: center;
   color: var(--black);
   cursor: pointer;
   transition: .2s linear;
}

.products .box-container .box .fa-heart {
   right: -6rem;
}

.products .box-container .box .fa-eye {
   left: -6rem;
}

.products .box-container .box .fa-heart:hover,
.products .box-container .box .fa-eye:hover {
   background-color: var(--black);
   color: var(--white);
}

.products .box-container .box:hover .fa-heart {
   right: 1rem;
}

.products .box-container .box:hover .fa-eye {
   left: 1rem;
}

.products .box-container .box .name .stock .details {
   font-size: 2rem;
   color: var(--black);
}

.products .box-container .box .flex {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.products .box-container .box .flex .qty {
   width: 7rem;
   padding: 1rem;
   border: var(--border);
   font-size: 1.8rem;
   color: var(--black);
   border-radius: .5rem;
}

.products .box-container .box .flex .price {
   font-size: 2rem;
   color: var(--red);
   margin-right: auto;
}

.form-container form {
   background-color: var(--white);
   padding: 2rem;
   border-radius: .5rem;
   box-shadow: var(--box-shadow);
   text-align: center;
   margin: 0 auto;
   max-width: 75rem;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
   .quick-view form .row {
      flex-direction: column;
      gap: 1rem;
   }

   .quick-view form .row .image-container {
      flex: 1 1 100%;
      margin-bottom: 1.5rem;
   }

   .quick-view form .row .content {
      flex: 1 1 100%;
   }

   .products .box-container {
      grid-template-columns: repeat(auto-fit, 25rem);
   }

   .products .box-container .box img {
      height: 18rem;
   }

   .products .box-container .box .fa-heart,
   .products .box-container .box .fa-eye {
      font-size: 1.8rem;
      height: 3.5rem;
      width: 3.5rem;
   }

   .products .box-container .box .flex .qty {
      width: 6rem;
      font-size: 1.6rem;
   }

   .products .box-container .box .flex .price {
      font-size: 1.8rem;
   }
}

@media screen and (max-width: 900px) {
   .quick-view form .row {
      flex-direction: column;
   }

   .quick-view form .row .image-container {
      flex: 1 1 100%;
   }

   .quick-view form .row .content {
      flex: 1 1 100%;
   }

   .quick-view form .row .content .name {
      font-size: 1.8rem;
   }

   .quick-view form .row .flex .qty {
      width: 6rem;
      font-size: 1.6rem;
   }

   .quick-view form .row .flex .price {
      font-size: 1.8rem;
   }

   .products .box-container {
      grid-template-columns: repeat(auto-fit, 20rem);
   }

   .products .box-container .box img {
      height: 15rem;
   }

   .products .box-container .box .fa-heart,
   .products .box-container .box .fa-eye {
      font-size: 1.5rem;
      height: 3rem;
      width: 3rem;
   }

   .products .box-container .box .flex .qty {
      width: 5rem;
      font-size: 1.4rem;
   }

   .products .box-container .box .flex .price {
      font-size: 1.6rem;
   }
}

@media screen and (max-width: 600px) {
   .quick-view form .row .image-container .main-image img {
      height: 25rem;
   }

   .quick-view form .row .content .name {
      font-size: 1.6rem;
   }

   .quick-view form .row .flex .qty {
      width: 5rem;
      font-size: 1.4rem;
   }

   .quick-view form .row .flex .price {
      font-size: 1.6rem;
   }

   .products .box-container {
      grid-template-columns: repeat(auto-fit, 15rem);
   }

   .products .box-container .box img {
      height: 12rem;
   }

   .products .box-container .box .fa-heart,
   .products .box-container .box .fa-eye {
      font-size: 1.4rem;
      height: 2.8rem;
      width: 2.8rem;
   }

   .products .box-container .box .flex .qty {
      width: 4rem;
      font-size: 1.3rem;
   }

   .products .box-container .box .flex .price {
      font-size: 1.5rem;
   }
}

@media screen and (max-width: 480px) {
   .quick-view form .row .content .name {
      font-size: 1.4rem;
   }

   .quick-view form .row .flex .qty {
      width: 4rem;
      font-size: 1.2rem;
   }

   .quick-view form .row .flex .price {
      font-size: 1.4rem;
   }

   .products .box-container {
      grid-template-columns: repeat(auto-fit, 12rem);
   }

   .products .box-container .box img {
      height: 10rem;
   }

   .products .box-container .box .fa-heart,
   .products .box-container .box .fa-eye {
      font-size: 1.2rem;
      height: 2.5rem;
      width: 2.5rem;
   }

   .products .box-container .box .flex .qty {
      width: 3.5rem;
      font-size: 1.1rem;
   }

   .products .box-container .box .flex .price {
      font-size: 1.3rem;
   }
}
/* Form Container Styles */
.form-container form h3 {
   font-size: 2.5rem;
   text-transform: uppercase;
   color: var(--black);
}

.form-container form p {
   font-size: 2rem;
   color: var(--light-color);
   margin: 1.5rem 0;
}

.form-container form .box {
   margin: 1rem 0;
   background-color: var(--light-bg);
   padding: 1.4rem;
   font-size: 1.8rem;
   color: var(--black);  
   width: 100%;
   border-radius: .5rem;
}

/* About Section */
.about .row {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 1.5rem;
}

.about .row .image {
   flex: 1 1 40rem;
}

.about .row .image img {
   width: 100%;
}

.about .row .content {
   flex: 1 1 40rem;
}

.about .row .content h3 {
   font-size: 3rem;
   color: var(--black);
}

.about .row .content p {
   line-height: 2;
   font-size: 1.5rem;
   color: var(--light-color);
   padding: 1rem 0;
}

.about .row .content .btn {
   display: inline-block;
   width: auto;
}

/* Reviews Section */
.reviews .slide {
   padding: 2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   margin-bottom: 5rem;
   user-select: none;
}

.reviews .slide img {
   height: 10rem;
   width: 10rem;
   border-radius: 50%;
   margin-bottom: .5rem;
}

.reviews .slide p {
   padding: 1rem 0;
   line-height: 2;
   font-size: 1.5rem;
   color: var(--light-color);
}

.reviews .slide .stars {
   display: inline-block;
   margin-bottom: 1rem;
   background-color: var(--light-bg);
   padding: 1rem 1.5rem;
   border-radius: .5rem;
}

.reviews .slide .stars i {
   margin: 0 .3rem;
   font-size: 1.7rem;
   color: var(--orange);
}

.reviews .slide h3 {
   font-size: 2rem;
   color: var(--black);
}

/* Contact Form Styles */
.contact form {
   padding: 2rem;
   text-align: center;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
   max-width: 50rem;
   margin: 0 auto;
}

.contact form h3 {
   margin-bottom: 1rem;
   text-transform: capitalize;
   font-size: 2.5rem;
   color: var(--black);
}

.contact form .box {
   margin: 1rem 0;
   width: 100%;
   background-color: var(--light-bg);
   padding: 1.4rem;
   font-size: 1.8rem;
   color: var(--black);
   border-radius: .5rem;
}

.contact form textarea {
   height: 15rem;
   resize: none;
}

/* Search Form */
.search-form form {
   display: flex;
   gap: 1rem;
}

.search-form form input {
   width: 100%;
   border-radius: .5rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   padding: 1.4rem;
   font-size: 1.8rem;
   color: var(--black);
}

.search-form form button {
   font-size: 2.5rem;
   height: 5.5rem;
   line-height: 5.5rem;
   background-color: var(--main-color);
   cursor: pointer;
   color: var(--white);
   border-radius: .5rem;
   width: 6rem;
   text-align: center;
}

.search-form form button:hover {
   background-color: var(--black);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
   .about .row {
      flex-direction: column;
   }

   .about .row .image,
   .about .row .content {
      flex: 1 1 100%;
   }

   .about .row .content h3 {
      font-size: 2.5rem;
   }

   .about .row .content p {
      font-size: 1.4rem;
   }

   .reviews .slide {
      margin-bottom: 3rem;
   }

   .contact form {
      max-width: 40rem;
   }

   .contact form h3 {
      font-size: 2rem;
   }

   .contact form .box {
      font-size: 1.6rem;
   }

   .search-form form input {
      font-size: 1.6rem;
   }

   .search-form form button {
      font-size: 2rem;
      height: 5rem;
   }
}

@media screen and (max-width: 900px) {
   .form-container form h3 {
      font-size: 2rem;
   }

   .form-container form p {
      font-size: 1.6rem;
   }

   .about .row {
      flex-direction: column;
   }

   .about .row .image,
   .about .row .content {
      flex: 1 1 100%;
   }

   .about .row .content h3 {
      font-size: 2.2rem;
   }

   .about .row .content p {
      font-size: 1.3rem;
   }

   .reviews .slide img {
      height: 8rem;
      width: 8rem;
   }

   .contact form {
      max-width: 35rem;
   }

   .contact form h3 {
      font-size: 1.8rem;
   }

   .contact form .box {
      font-size: 1.5rem;
   }

   .search-form form input {
      font-size: 1.5rem;
   }

   .search-form form button {
      font-size: 1.8rem;
      height: 4.5rem;
   }
}

@media screen and (max-width: 600px) {
   .form-container form h3 {
      font-size: 1.8rem;
   }

   .form-container form p {
      font-size: 1.4rem;
   }

   .about .row {
      flex-direction: column;
   }

   .about .row .image,
   .about .row .content {
      flex: 1 1 100%;
   }

   .about .row .content h3 {
      font-size: 2rem;
   }

   .about .row .content p {
      font-size: 1.2rem;
   }

   .reviews .slide img {
      height: 7rem;
      width: 7rem;
   }

   .contact form {
      max-width: 100%;
      padding: 1.5rem;
   }

   .contact form h3 {
      font-size: 1.6rem;
   }

   .contact form .box {
      font-size: 1.4rem;
   }

   .search-form form input {
      font-size: 1.4rem;
   }

   .search-form form button {
      font-size: 1.6rem;
      height: 4rem;
   }
}

@media screen and (max-width: 480px) {
   .form-container form h3 {
      font-size: 1.6rem;
   }

   .form-container form p {
      font-size: 1.3rem;
   }

   .about .row .image,
   .about .row .content {
      flex: 1 1 100%;
   }

   .about .row .content h3 {
      font-size: 1.8rem;
   }

   .about .row .content p {
      font-size: 1.1rem;
   }

   .reviews .slide img {
      height: 6rem;
      width: 6rem;
   }

   .contact form {
      max-width: 100%;
      padding: 1rem;
   }

   .contact form h3 {
      font-size: 1.4rem;
   }

   .contact form .box {
      font-size: 1.3rem;
   }

   .search-form form input {
      font-size: 1.3rem;
   }

   .search-form form button {
      font-size: 1.5rem;
      height: 3.5rem;
   }
}
/* Notification Total */
.notification-total {
   max-width: 50rem;
   margin: 0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border-radius: .5rem;
   padding: 2rem;
   text-align: center;
}

.notification-total p {
   font-size: 2.5rem;
   color: var(--black);
   margin-bottom: 2rem;
}

.notification-total p span {
   color: var(--red);
}

/* Shopping Cart */
.shopping-cart .fa-edit {
   height: 4.5rem;
   border-radius: .5rem;
   background-color: var(--orange);
   width: 5rem;
   font-size: 2rem;
   color: var(--white);
   cursor: pointer;
}

.shopping-cart .fa-edit:hover {
   background-color: var(--black);
}

.shopping-cart .sub-total {
   margin: 2rem 0;
   font-size: 2rem;
   color: var(--light-color);
}

.shopping-cart .sub-total span {
   color: var(--red);
}

/* Cart Total */
.cart-total {
   max-width: 50rem;
   margin: 0 auto;
   margin-top: 3rem;
   background-color: var(--white);
   border-radius: .5rem;
   padding: 2rem;
   text-align: center;
}

.cart-total p {
   font-size: 2.5rem;
   color: var(--black);
   margin-bottom: 2rem;
}

.cart-total p span {
   color: var(--red);
}

/* Display Orders */
.display-orders {
   text-align: center;
   padding-bottom: 0;
}

.display-orders p {
   display: inline-block;
   padding: 1rem 2rem;
   margin: 1rem .5rem;
   font-size: 2rem;
   text-align: center;
   background-color: #d2e0f5;
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.display-orders p span {
   color: var(--red);
}

.display-orders .grand-total {
   margin-top: 1.5rem;
   margin-bottom: 2.5rem;
   font-size: 2.5rem;
   color: var(--light-color);
}

.display-orders .grand-total span {
   color: var(--red);
}

/* Checkout Orders */
.checkout-orders form {
   padding: 2rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.checkout-orders form h3 {
   border-radius: .5rem;
   background-color: var(--black);
   color: var(--white);
   padding: 1.5rem 1rem;
   text-align: center;
   text-transform: uppercase;
   margin-bottom: 2rem;
   font-size: 2.5rem;
}

.checkout-orders form .flex {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   justify-content: space-between;
}

.checkout-orders form .flex .inputBox {
   width: 49%;
}

.checkout-orders form .flex .inputBox .box {
   width: 100%;
   border-radius: .5rem;
   font-size: 1.8rem;
   color: var(--black);
   padding: 1.2rem 1.4rem;
   margin: 1rem 0;
   background-color: var(--light-bg);
}

.checkout-orders form .flex .inputBox span {
   font-size: 1.8rem;
   color: var(--light-color);
}

/* Orders */
.orders .box-container {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   align-items: flex-start;
}

.orders .box-container .box {
   padding: 1rem 2rem;
   flex: 1 1 40rem;
   background-color: var(--white);
   box-shadow: var(--box-shadow);
   border-radius: .5rem;
}

.orders .box-container .box p {
   margin: .5rem 0;
   line-height: 1.8;
   font-size: 2rem;
   color: var(--light-color);
}

.orders .box-container .box p span {
   color: var(--main-color);
}

/* Footer */
.footer {
   background-color: var(--white);
}

.footer .grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
   gap: 1.5rem;
   align-items: flex-start;
}

.footer .grid .box h3 {
   font-size: 2rem;
   color: var(--black);
   margin-bottom: 2rem;
   text-transform: capitalize;
}

.footer .grid .box a {
   display: block;
   margin: 1.5rem 0;
   font-size: 1.7rem;
   color: var(--light-color);
}

.footer .grid .box a i {
   padding-right: 1rem;
   color: var(--main-color);
   transition: .2s linear;
}

.footer .grid .box a:hover {
   color: var(--main-color);
}

.footer .grid .box a:hover i {
   padding-right: 2rem;
}

.footer .credit {
   text-align: center;
   padding: 2.5rem 2rem;
   border-top: var(--border);
   font-size: 2rem;
   color: var(--black);
}

.footer .credit span {
   color: var(--main-color);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
   .notification-total,
   .cart-total,
   .checkout-orders form,
   .orders .box-container .box {
      max-width: 40rem;
   }

   .display-orders p {
      font-size: 1.8rem;
   }

   .display-orders .grand-total {
      font-size: 2rem;
   }

   .footer .grid {
      grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
   }

   .footer .grid .box h3 {
      font-size: 1.8rem;
   }

   .footer .grid .box a {
      font-size: 1.6rem;
   }
}

@media screen and (max-width: 900px) {
   .notification-total p {
      font-size: 2rem;
   }

   .shopping-cart .sub-total {
      font-size: 1.8rem;
   }

   .cart-total p {
      font-size: 2rem;
   }

   .display-orders p {
      font-size: 1.6rem;
   }

   .checkout-orders form {
      padding: 1.5rem;
   }

   .checkout-orders form h3 {
      font-size: 2.2rem;
   }

   .checkout-orders form .flex .inputBox {
      width: 100%;
   }

   .footer .grid {
      grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
   }

   .footer .grid .box h3 {
      font-size: 1.7rem;
   }

   .footer .grid .box a {
      font-size: 1.5rem;
   }
}

@media screen and (max-width: 600px) {
   .notification-total,
   .cart-total,
   .checkout-orders form,
   .orders .box-container .box {
      max-width: 100%;
      padding: 1rem;
   }

   .notification-total p,
   .cart-total p {
      font-size: 1.8rem;
   }

   .shopping-cart .sub-total {
      font-size: 1.6rem;
   }

   .display-orders p {
      font-size: 1.5rem;
   }

   .footer .grid {
      grid-template-columns: 1fr;
   }

   .footer .grid .box h3 {
      font-size: 1.6rem;
   }

   .footer .grid .box a {
      font-size: 1.4rem;
   }
}

@media screen and (max-width: 480px) {
   .notification-total p {
      font-size: 1.6rem;
   }

   .shopping-cart .sub-total {
      font-size: 1.4rem;
   }

   .cart-total p {
      font-size: 1.6rem;
   }

   .display-orders p {
      font-size: 1.4rem;
   }

   .checkout-orders form h3 {
      font-size: 2rem;
   }

   .footer .grid .box h3 {
      font-size: 1.5rem;
   }

   .footer .grid .box a {
      font-size: 1.3rem;
   }
}






@media (max-width:991px){

   html{
      font-size: 55%;
   }

}

@media (max-width: 768px) {
    #menu-btn {
        display: inline-block;
    }

    .header .flex .navbar {
        position: absolute;
        top: 99%;
        left: 0;
        right: 0;
        border-top: var(--border);
        border-bottom: var(--border);
        background-color: var(--white);
        transition: clip-path .2s linear; /* Ensure only clip-path transitions */
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .header .flex .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .flex .navbar a {
        display: inline-block;
        margin: 2rem;
    }

    .home-bg .home .slide .content {
        text-align: center;
    }

    .home-bg .home .slide .content h3 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .header .flex .navbar a {
        margin: 1.5rem; /* Reduce spacing for smaller screens */
    }

    .home-bg .home .slide .content h3 {
        font-size: 2.5rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 320px) {
    .header .flex .navbar a {
        margin: 1rem;
    }

    .home-bg .home .slide .content h3 {
        font-size: 2rem;
    }
}


@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .heading{
      font-size: 3rem;
   }

   .flex-btn{
      flex-flow: column;
      gap:0;
   }

   .quick-view form .row .image-container .sub-image img{
      width: 8rem;
   }

   .checkout-orders form .flex .inputBox{
      width: 100%;
   }

}


.terms-label {
   font-size: 20px;
   color: #333;
}

.terms-label a {
   color: #007bff;
   text-decoration: none;
}

.terms-label a:hover {
   text-decoration: underline;
}

/* additional style */

/* .terms-checkbox {
   margin-bottom: 1rem;
 }
 
 .terms-checkbox input[type="checkbox"] {
   margin-right: 0.5rem;
 }
 
 .inputBox {
   margin-bottom: 1rem;
 }
 
 .inputBox span {
   display: block;
   margin-bottom: 0.5rem;
 }


 .orders {
   padding: 20px;
   background-color: #f9f9f9;
   border-radius: 5px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   margin: 20px auto;
   max-width: 800px;
}

.orders .heading {
   font-size: 24px;
   color: #333;
   margin-bottom: 20px;
}

.orders .back-button {
   display: inline-block;
   background-color: #ddd;
   color: #333;
   padding: 10px 20px;
   text-decoration: none;
   border-radius: 5px;
   margin-bottom: 20px;
}

.orders .box-container {
   margin-top: 20px;
} */

.back-button {
   display: inline-block;
   background-color: #ddd;
   /* color: #333; */
   padding: 10px 20px;
   text-decoration: none;
   border-radius: 5px;
   margin-bottom: 20px;
   font-size: 15px;
}

.orders .order-details {
   border: 1px solid #ddd;
   padding: 20px;
   margin-bottom: 20px;
   border-radius: 5px;
   background-color: #fff;
}

.orders .order-details p {
   margin: 5px 0;
   font-size: 16px;
}

.orders .order-details .button-group {
   margin-top: 10px;
}

.orders .order-details .button-group button {
   margin-right: 10px;
   padding: 8px 16px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.orders .order-details .button-group button.edit-btn {
   background-color: #007bff;
   color: #fff;
}

.orders .order-details .button-group button.cancel-btn {
   background-color: #dc3545;
   color: #fff;
}/* Back Button */
.back-button {
   display: inline-block;
   background-color: #ddd;
   padding: 10px 20px;
   text-decoration: none;
   border-radius: 5px;
   margin-bottom: 20px;
   font-size: 15px;
}

@media screen and (max-width: 600px) {
   .back-button {
      font-size: 14px;
      padding: 8px 16px;
   }
}

/* Order Details */
.orders .order-details {
   border: 1px solid #ddd;
   padding: 20px;
   margin-bottom: 20px;
   border-radius: 5px;
   background-color: #fff;
}

.orders .order-details p {
   margin: 5px 0;
   font-size: 16px;
}

@media screen and (max-width: 600px) {
   .orders .order-details {
      padding: 15px;
      margin-bottom: 15px;
   }

   .orders .order-details p {
      font-size: 14px;
   }
}

/* Button Group */
.orders .order-details .button-group {
   margin-top: 10px;
}

.orders .order-details .button-group button {
   margin-right: 10px;
   padding: 8px 16px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

@media screen and (max-width: 600px) {
   .orders .order-details .button-group button {
      font-size: 14px;
      padding: 6px 12px;
   }
}

/* Edit Button */
.orders .order-details .button-group button.edit-btn {
   background-color: #007bff;
   color: #fff;
}

@media screen and (max-width: 600px) {
   .orders .order-details .button-group button.edit-btn {
      background-color: #007bff;
      color: #fff;
   }
}

/* Cancel Button */
.orders .order-details .button-group button.cancel-btn {
   background-color: #dc3545;
   color: #fff;
}

@media screen and (max-width: 600px) {
   .orders .order-details .button-group button.cancel-btn {
      background-color: #dc3545;
      color: #fff;
   }
}

/* Mobile Layout Adjustments */
@media screen and (max-width: 600px) {
   /* Stack button group vertically */
   .orders .order-details .button-group {
      display: flex;
      flex-direction: column;
      gap: 10px;
   }

   /* Adjust order details padding */
   .orders .order-details {
      padding: 15px;
   }
   
   /* Adjust font sizes */
   .orders .order-details p {
      font-size: 14px;
   }
}


/* .orders .empty {
   color: #888;
   margin-top: 20px;
}

.orders .cancelled-order {
   border: 1px solid #ddd;
   padding: 20px;
   margin-bottom: 20px;
   border-radius: 5px;
   background-color: #f2f2f2;
}

.orders .cancelled-order p {
   margin: 5px 0;
   font-size: 16px;
} */
 


@media print {
   .receipt-container {
       text-align: center;
       margin: 20px;
   }
   
   .receipt-container h2 {
       margin-bottom: 20px;
   }
   
   .receipt-container pre {
       white-space: pre-wrap;
       font-size: 14px;
   }
}



/*  */

/* Custom styles for notifications */
/* .notifications {
   padding: 2rem;
   background-color: #f9f9f9;
   border-radius: 0.5rem;
   box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
   margin: 2rem auto;
   max-width: 800px;
}

.notifications h2 {
   font-size: 2rem;
   color: #333;
   margin-bottom: 1rem;
}

.notification-box {
   background-color: #fff;
   border: 1px solid #ddd;
   padding: 1.5rem;
   margin-bottom: 1rem;
   border-radius: 0.5rem;
}

.notification-box p {
   font-size: 1.6rem;
   color: #666;
   margin-bottom: 0.5rem;
} */