@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");

:root {
  /* Font Size */
  --h1: 2.5rem; /* Larger for emphasis */
  --h2: 2.2rem;
  --h3: 1.5rem;
  --h4: 1.25rem;
  --h5: 1rem;
  --small: 0.875rem;
  --normal: 0.875rem; /* Body text */
  --small: 0.75rem; /* Fine print */
  --font: "Poppins", sans-serif;
  --primary-color: #2c5f2d;
  --secondary-color: #f4f4f4;
  --text-color: #333;
  --border-color: #ddd;
  --input-padding: 12px;
  --form-margin-bottom: 20px;
  --input-border-radius: 5px;
  --section-padding: 30px;
  /* Font Weight */
  --w-400: 400; /* Normal weight */
  --w-500: 500; /* Medium weight */
  --w-600: 600; /* Semi-bold weight */
  --w-700: 700; /* Bold weight */
/* Color Variables */
--primary-color: #007bff;
--secondary-color: #f8f9fa;
--accent-color: #28a745;
--text-color: #343a40;
--border-color: #dee2e6;
--btn-background: #17a2b8;
--btn-remove-background: #dc3545;
--btn-hover-background: #138496;
--btn-remove-hover-background: #c82333;
--hover-background: #e9ecef;
--in-stock-color: #28a745;
--out-stock-color: #dc3545;
  --primary-color: #2c5f2d;
  --secondary-color: #f7f7f7;
  --font-family: "Arial", sans-serif;
  --text-color: #333;
  --btn-color: #2c5f2d;
  --btn-hover-color: #3c7f4d;
  --border-color: #ddd;
  /* Borders */
  --border: 0.1rem solid rgba(0, 0, 0, 0.2); /* Subtle border */
  --border-hover: 0.1rem solid var(--color-accent-primary); /* Accent border on hover */

  /* Box Shadow */
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); /* Soft shadow */

  /* Primary Colors */
  --color-primary-dark: #1a237e; /* Deep Indigo for a modern feel */
  --color-primary-light: #e8eaf6; /* Light Lavender for a soothing background */

  /* Accent Colors */
  --color-accent-primary: #ffca28; /* Bright Golden for highlights */
  --color-accent-secondary: #388e3c; /* Rich Green for calls to action */

  /* Text Colors */
  --color-text-dark: #212121; /* Rich Black for readability */
  --color-text-light: #f5f5f5; /* Very Light Gray for lighter text */

  /* Background Colors */
  --color-background-primary: #f1f8e9; /* Pale Green for main background */
  --color-background-secondary: #ffffff; /* Pure White for clean sections */

  /* Additional Elements */
  --color-muted-accent: #f57c00; /* Vibrant Orange for attention-grabbing elements */
  --color-heading: #303f9f; /* Dark Blue for headings */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
  transition: width none;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0 !important;
}
@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 0.5rem !important;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
a {
  text-decoration: none !important;
}
section {
  padding: 2rem 9%;
}
.heading-center {
  width: 100%;
  text-align: center;
}
.heading {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding: 0.5rem;
  display: inline-block;
}
.heading span {
  font-size: 3rem;
  padding: 0.5rem 2rem;
  color: var(--color-accent-primary);
  background: #fff;
  position: relative;
  display: inline-block;
  border-radius: 5px;
  overflow: hidden;
}

.heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  border: 4px solid transparent;
  background: linear-gradient(
    45deg,
    var(--color-accent-primary),
    var(--color-accent-secondary),
    #9b36f0,
    #00d4ff
  );
  background-size: 400% 400%;
  z-index: -1;
  animation: moveGradient 5s linear infinite;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

.btn-txt {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.9rem 3rem;
  border-radius: 0.5rem;
  background-color: var(--color-accent-primary);
  color: var(--color-text-light);
  font-size: 1.75rem;
  cursor: pointer;
  font-weight: 500;
}

.btn-txt:hover {
  background-color: var(--color-accent-secondary);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 5rem;
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-thumb {
  background: var(--color-primary-dark);
  border-radius: 10px;
}

html::-webkit-scrollbar-track {
  background: var(--color-background-secondary);
  border-radius: 10px;
}
/* Header */
.header .header-1 {
  background: var(--color-background-primary);
  padding: 1.5rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header-1 .logo {
  font-size: 2.5rem;
  font-weight: bolder;
  color: var(--color-primary-dark);
}

.header .header-1 .logo i {
  color: var(--color-accent-primary);
}

.header .header-1 .search-form {
  width: 50rem;
  height: 5rem;
  border: var(--border);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
}

.header .header-1 .search-form input {
  font-size: 1.6rem;
  padding: 0 1.2rem;
  height: 100%;
  text-transform: none;
  color: var(--color-primary-dark);
}

.header .header-1 .search-form label {
  font-size: 2.5rem;
  padding-right: 1.5rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  width: 100%;
  float: right;
  text-align: end;
  justify-content: end;
  display: flex;
  align-items: end;
}

.header .header-1 .search-form label:hover {
  color: var(--color-accent-secondary);
}

.header .header-1 .icons div,
.header .header-1 .icons a {
  font-size: 2.5rem;
  margin-left: 1.5rem;
  color: var(--color-primary-dark);
  cursor: pointer;
}

.header .header-1 .icons div:hover,
.header .header-1 .icons a:hover {
  color: var(--color-accent-secondary);
}

#search-btn {
  display: none;
}

.header .header-2 {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
}

.header .header-2 .navbar {
  text-align: center;
  display: block;
}

.header .header-2 .navbar a {
  color: var(--color-text-light);
  display: inline-block;
  text-decoration: none;
  padding: 1.2rem;
  font-size: 1.7rem;
}

.header .header-2 .active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
}

.header .header-2 .navbar a:hover {
  background: var(--color-accent-primary);
}

/* Bottom Navbar */
.bottom-navbar {
  text-align: center;
  background-color: var(--color-accent-primary);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}

.bottom-navbar a {
  font-size: 2.5rem;
  padding: 2rem;
  color: var(--color-text-light);
}

.bottom-navbar a:hover {
  background: var(--color-primary-dark);
}

/* Login */
.login-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  right: -105%;
  z-index: 100000;
  height: 100%;
  box-shadow: 0 50px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  transition: all 1.5s;
}

.login-form-container.active {
  right: 0 !important;
}

.login-form-container form {
  background: var(--color-background-primary);
  border: var(--border);
  border-radius: 0.5rem;
  width: 40rem;
  padding: 2rem;
  margin: 2rem;
}

.login-form-container form h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--color-text-dark);
  text-align: center;
}

.login-form-container form span {
  display: block;
  font-size: 1.5rem;
}

.login-form-container form .box {
  margin: 0.7rem 0;
  font-size: 1.6rem;
  border: var(--border);
  border-radius: 0.5rem;
  color: var(--color-primary-dark);
  padding: 1rem 1.2rem;
  text-transform: none;
  width: 100%;
}

.login-form-container form .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.login-form-container form .checkbox label {
  font-size: 1.5rem;
  color: var(--color-muted-accent);
  cursor: pointer;
}

.login-form-container form .btn-txt {
  text-align: center;
  width: 100%;
  margin: 1.5rem 0;
  background-color: var(--color-accent-primary);
  color: var(--color-text-light);
  padding: 0.9rem 3rem;
  border-radius: 0.5rem;
  font-size: 1.75rem;
  cursor: pointer;
  font-weight: 500;
}

.login-form-container form .btn-txt:hover {
  background-color: var(--color-accent-secondary);
}

.login-form-container form p {
  padding-top: 0.8rem;
  color: var(--color-heading);
  font-size: 1.5rem;
}

.login-form-container form p a {
  color: var(--color-accent-primary);
  text-decoration: underline;
}

.login-form-container #close-login-btn {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  font-size: 5rem;
  color: var(--color-primary-dark);
  cursor: pointer;
}

/* /header */

/* Home Start */
.home {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home .row-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.home .row-line .content {
  flex: 1 1 42rem;
}
.home .row-line .content a {
  text-decoration: none;
}
.home .row-line .book-slider {
  flex: 1 1 42rem;
  text-align: center;
  margin-top: 2rem;
}
.home .row-line .book-slider a img {
  height: 25rem;
  width: 200px;
}
.home .row-line .book-slider a:hover img {
  transform: scale(1.1);
  transition: 1.2s;
}
.home .row-line .book-slider .stand {
  width: 100%;
  margin-top: -2rem;
}
.home .row-line .content h3 {
  color: var(--color-primary-dark);
  font-size: 4.5rem;
}

.home .row-line .content p {
  color: var(--color-primary-dark);
  font-size: 1.5rem;
  line-height: 2;
  padding: 1rem 0;
}

/* /Home */

/* Grid Gallery */
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 10px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 4px solid transparent;
  background-origin: border-box;
  background-clip: content-box, border-box;
  transition: transform 0.5s ease, border 0.5s ease;
}
.grid-item::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  background-size: 200% 200%;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
  border-radius: 10px;
}

.grid-item:hover img {
  transform: scale(1.2);
}
.grid-item:hover::before {
  background-position: 100% 0;
}
.category-name {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px 10px;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}

.grid-item:hover .category-name {
  opacity: 1;
}

.item1 {
  grid-column: span 2;
  grid-row: span 2;
}

.item2 {
  grid-column: span 2;
}

.item3,
.item4 {
  grid-column: span 1;
}

/* Grid Gallery */

/* Featured  */
.featured .featured-slider .box {
  margin: 2rem 0;
  overflow: hidden;
  position: relative;
  border: var(--border);
  text-align: center;
}
.featured .featured-slider .box:hover {
  border: var(--border-hover);
}
.featured .featured-slider .box:hover .image {
  transform: translateY(5rem);
}
.featured .featured-slider .box .image {
  padding: 1rem;
  background: linear-gradient(15deg, #eee 30%, #fff 30.1%);
}
.featured .featured-slider .box .image img {
  height: 25rem;
}
/* Featured Slider */
.featured .featured-slider .box .icons {
  border-bottom: var(--border-hover);
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1;
  transform: translateY(-105%);
  transition: transform 0.3s ease;
}

.featured .featured-slider .box:hover .icons {
  transform: translateY(0%);
}

.featured .featured-slider .box .icons a {
  color: var(--color-primary-dark);
  font-size: 2.2rem;
  padding: 1.3rem 1.5rem;
}

.featured .featured-slider .box .icons a:hover {
  background-color: var(--color-accent-secondary);
  color: #fff;
}

.featured .featured-slider .box .content {
  background: #eee;
  padding: 1.5rem;
}

.featured .featured-slider .box .content h3 {
  font-size: 2rem;
  color: var(--color-heading);
}

.featured .featured-slider .box .content .price {
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  padding-top: 1rem;
}

.featured .featured-slider .box .content .price span {
  font-size: 1.5rem;
  color: var(--color-accent-primary);
  text-decoration: line-through;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  border: var(--border-hover);
  height: 4rem;
  width: 4rem;
  color: var(--color-primary-dark);
  background-color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
  background-color: var(--color-primary-dark);
}

/* /Featured */
/* Newsletter */
.newsletter {
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.newsletter form {
  max-width: 45rem;
  padding: 5rem 0;
  margin-left: auto;
  text-align: center;
}
/* Newsletter Form */
.newsletter form h3 {
  font-size: 2.2rem;
  color: #fff; /* White text */
  padding-bottom: 0.7rem;
  font-weight: normal; /* Normal font weight */
}

.newsletter form .box {
  width: 100%;
  margin: 0.7rem 0;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
  color: var(--color-heading);
  border-radius: 0.5rem;
  border: var(--border);
  background: var(--color-background-primary);
}

/* /Newsletter */
/* Icon */
.icons-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}
.icons-container .icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
} /* Icons Container */
.icons-container .icons i {
  font-size: 3.5rem;
  padding: 0 0 1rem 0;
  color: var(--color-accent-secondary);
}

.icons-container .icons h3 {
  font-size: 2.2rem;
  font-weight: 500; /* Medium font weight */
  color: var(--color-primary-dark);
  padding-bottom: 0.5rem;
}

.icons-container .icons p {
  font-size: 1.4rem;
  color: var(--color-accent-primary);
  padding-bottom: 0.5rem;
}

/* /Icon */

/* Tabs  */
.tab__btns {
  display: flex;
  column-gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
} /* Tab Button */
.tab__btn {
  /* background-color: var(--color-background-primary);  */
  color: var(--color-primary-dark);
  padding: 1rem 1.25rem 0.875rem;
  border-radius: 0.25rem;
  font-size: var(--h2);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
}
.tab__btn::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 4px;
  border-radius: 40px;
  background-color: #f57c00;
  transition: all 0.8s ease;
}
.tab__btn:hover::after {
  width: 100%;
}
.tab__btn:hover {
  color: var(--color-heading);
}

/* Products Container */
.products__container.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}


.product__item {
  border: 1px solid var(--color-primary-dark);
  border-radius: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product__banner {
  padding: 0.625rem 0.75rem 0.75rem;
}
.product__img {
  width: 100%;
}
.product__banner,
.product__images {
  position: relative;
  width: 100%;
}
.product__images {
  display: block;
  overflow: hidden;
  border-radius: 1.25rem;
}
.product__img {
  vertical-align: middle;
  transition: all 1.5s ease;
}
.product__item:hover .product__img {
  transform: scale(1.09);
}
.product__img.hover {
  position: absolute;
  top: 0;
  left: 0;
}
.product__banner .product__actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  column-gap: 0.5rem;
  transition: all 1.5s ease;
}
.action__btn {
  width: 40px;
  height: 40px;
  position: relative;
  left: 1rem;
  background-color: var(--color-accent-secondary);
  border: 1px solid var(--color-accent-secondary);
  color: var(--color-background-secondary);
  font-size: var(--h6);
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.product__actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  text-align: center;
  column-gap: 0.5rem;
  position: relative;
  justify-content: center;
}

.action__btn::before,
.action__btn::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}
.action__btn::before {
  content: "";
  top: -2px;
  border: 0.5rem solid transparent;
  border-top-color: var(--color-primary-dark);
}
.action__btn::after {
  content: attr(aria-label);
  bottom: 100%;
  background-color: var(--color-accent-primary);
  color: var(--color-background-secondary);
  font-size: var(--h6);
  font-weight: 500;
  white-space: nowrap;
  padding-inline: 0.625rem;
  border-radius: 0.25rem;
  line-height: 2.58;
}
.product__badge {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  background-color: var(--color-background-primary);
  color: var(--color-heading);
  padding: 0.25rem 0.625rem;
  border-radius: 2.5rem;
  font-size: var(--h6);
  font-weight: 500;
}
.product__content {
  padding: 0 1.25rem 1.125rem;
  text-align: center;
}
.product__category {
  color: var(--color-accent-primary) !important;
  font-size: var(--h4);
  font-weight: 500;
}

.product__title {
  font-size: var(--h1-);
  color: var(--color-heading);
  margin-block: 0.75rem 0.5rem;
}

.product__rating {
  font-size: var(--h3); 
  color: var(--color-accent-primary);
  margin-bottom: 0.75rem;
}

.product__price {
  text-align: center;
  display: flex;
  justify-content: center;
}

.new__price {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.product__price .new__price {
  font-size: var(--h2);
}
.old__price {
  color: var(--color-heading);
  text-decoration: line-through;
  font-size: var(--h4);
}
/* Tabbbb */
.tab__btn.active-tab::after {
  width: 100%;
}
.tab__item:not(.active-tab) {
  display: none;
}

/* hover */
.product__img.hover,
.product__actions,
.action__btn::after,
.action__btn::before,
.product__item:hover .product__img.default {
  opacity: 0;
}
.product__item:hover .product__img.hover,
.product__item:hover .product__actions,
.action__btn:hover::before,
.action__btn:hover::after {
  opacity: 1;
}
.action__btn:hover::before,
.action__btn:hover::after {
  transform: translateX(-50%) translateY(-0.05rem);
}
.product__item:hover {
  box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.1);
}
.action__btn:hover {
  background-color: var(--color-accent-primary);
  color: var(--color-background-secondary);
  border: 1px solid var(--color-accent-primary);
}
/* /Tabs */

/* Deals Section */
.deal {
  background: #f3f3f3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.deal .content {
  flex: 1 1 42rem;
}
.deal .image {
  flex: 1 1 42rem;
}
.deal .content h1 {
  color: var(--color-primary-dark);
  font-size: 4rem;
  padding-bottom: 0.5rem;
}
.deal .content h3 {
  color: var(--color-accent-primary);
  font-size: 2.5rem;
  padding-bottom: 0.5rem;
}
.deal .content p {
  color: var(--color-accent-secondary);
  font-size: 1.4rem;
  padding: 1rem;
  line-height: 2;
}
/* /Deals */

/* Reviews */
.reviews .reviews-slider .box {
  width: 30rem;
  border: var(--border);
  padding: 2rem;
  text-align: center;
}
.reviews .reviews-slider .box:hover {
  border: var(--border-hover);
}
.reviews .reviews-slider .box img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  object-fit: cover;
}
.reviews .reviews-slider .box h3 {
  color: var(--color-primary-dark);
  font-size: 2.2rem;
  padding: 0.5rem 0;
}
.reviews .reviews-slider .box p {
  color: var(--color-light-dark);
  font-size: 1.4rem;
  padding: 1rem 0;
  line-height: 2;
}
.reviews .reviews-slider .box .stars i {
  color: var(--color-accent-secondary);
  font-size: 1.7rem;
}
/* /Reviews */

/* Foooter */
.footer .box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  padding: 1rem 0;
}
.footer .box-container .box a {
  font-size: 1.4rem;
  display: block;
  color: var(--color-primary-dark);
  padding: 1rem 0;
}
.footer .box-container .box a i {
  color: var(--color-accent-secondary);
  padding-right: 0.5rem;
}
.footer .box-container .box a:hover i {
  padding-right: 2rem;
}
.footer .share {
  padding: 1rem 0;
  text-align: center;
}
.footer .share a {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  background: var(--color-accent-secondary);
  margin: 0 0.3rem;
  border-radius: 50%;
}
.footer .share a:hover {
  background-color: var(--color-muted-accent);
}
.footer .credit {
  border-top: var(--border);
  margin-top: 2rem;
  font-size: 1.75rem;
  text-align: center;
  padding: 0 1rem;
  padding-top: 2rem;
  color: var(--color-accent-primary);
}
.footer .credit span {
  color: var(--color-accent-secondary);
}
/* /Footer */

/* Loader  */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10000;
  background: #f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader-container img {
  height: 10rem;
}
.loader-container.active {
  display: none;
}
/* /Loader */

/*  SHOP */

/* Breadcrumb */
.shop__container {
  padding: 5rem 4%;
}
.breadcrumb__banner {
  background-image: url("../images/banner.png");
  background-repeat: no-repeat;
  background-position: fixed;
  background-size: cover;
}
.breadcrumb__container .breadcrumb__title h1 {
  font-size: 44px !important;
  font-size: 700;
}
.breadcrumb__container {
  text-align: center;
}
.breadcrumb__subtitle {
  font-size: 14px;
}
.breadcrumb__subtitle a {
  color: var(--color-primary-dark);
}
.breadcrumb__subtitle a:hover {
  color: var(--color-accent-primary);
}
/* /Breadcrumb */

/* Sidebar */

.sidebar {
  padding: 1.5rem;
  background: #fff;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.page-link {
  background:#fff;
  color: #000;
}
.active>.page-link, .page-link.active {
  z-index: 3;
  color: #fff!important;
  background-color: var(--accent-color)!important;
  border-color: #28a745 !important;
}
.shop__title {
  margin-bottom: 1rem;
}

.shop__title h1 {
  font-size: 2rem !important;
  font-weight: 700;
  margin: 0;
  color: #333;
}

.category__container {
  margin-bottom: 1rem;
}

.category__item {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}
.category__container.active .category__item i {
  transform: rotate(180deg);
}
.category__item:hover {
  background: #e0e0e0;
}

.category__item h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.category__item i {
  font-size: 1.2rem;
  color: #777;
}

.category__value {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  transition: max-height 0.3s ease;
}

.category__value p {
  margin: 0;
  padding: 0.5rem 3rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: #555;
  position: relative;
  transition: transform 0.3s, padding-left 0.3s;
}

.category__value p .icon {
  position: absolute;
  left: 0;
  opacity: 0;
  font-size: 1rem;
  padding-top: 2px;
  transition: opacity 0.3s;
}

.category__value p:hover .icon {
  opacity: 1;
}

.category__value p:hover {
  transform: translateX(2.2rem);
  padding-left: 2rem;
}

.category__container.active .category__value {
  max-height: 500px;
}
.color__chart .colors {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 0.5rem;
  margin-bottom: 1rem;
}
.color__chart .colors p {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.color__chart .colors p:hover {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid #fff;
}
.tags__item {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  -moz-column-gap: 1.2rem;
  column-gap: 1.2rem;
  padding-top: 1rem;
  padding-bottom: 4rem;
}
.tags__item a {
  display: block;
  font-size: 1.75rem;
  font-weight: 500;
  padding: 0.9rem 1.5rem;
  border: 1px solid black;
  color: #000;
  border-radius: 0.5rem;
  transition: 0.3s;
}
.tags__item a:hover {
  background-color: #000;
  color: #fff;
}
/* Price bar */

.price-filter {
  max-width: 400px;
  margin: 20px auto;
  padding: 15px;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Slider Track Styling */
.price-range-container {
  position: relative;
  height: 8px;
  margin-bottom: 20px;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 4px;
}

.slider-range {
  position: absolute;
  height: 100%;
  background: #28a745;
  border-radius: 4px;
  z-index: 1;
}

/* Range Slider Styling */
input[type="range"] {
  -webkit-appearance: none;
  position: absolute;
  width: 100%;
  height: 8px;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #28a745;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #28a745;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
}

input[type="range"]::-ms-thumb {
  width: 20px;
  height: 20px;
  background: #28a745;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
}

/* Price Values Styling */
.price-values {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #333;
}

/* Details */

.details__container {
  display: grid;
  grid-template-columns: 5.5fr 6.5fr;
  gap: 2rem;
}

.details__img {
  margin-bottom: 0.5rem;
  width: 100%;
}

.details__small-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0.625rem;
}

.details__small-img {
  cursor: pointer;
}

.details__title {
  font-size: 28px;
  color: var(--color-heading);
}

.details__brand {
  font-size: 14px;
  margin-block: 1rem;
  color: var(--color-muted-accent);
}

.details__brand span {
  color: var(--color-accent-primary);
}

.details__price {
  border-top: 1px solid var(--color-primary-dark);
  border-bottom: 1px solid var(--color-primary-dark);
  padding-block: 1rem;
  display: flex;
  column-gap: 1rem;
  align-items: center;
}

.details__price .new__price {
  font-size: 24px;
  color: var(--color-accent-primary);
  font-weight: bold;
}

.details__price .old__price {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--color-muted-accent);
  font-weight: 500;
}

.details__price .save__price {
  font-size: 18px;
  color: green;
}

.short__description {
  margin-block: 1rem 2rem;
  font-size: 16px;
  color: var(--color-heading);
}

.list__item,
.meta__list {
  font-size: 16px;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.details__color-title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  color: var(--color-heading);
}

.color__list {
  display: flex;
  column-gap: 0.25rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

.color__link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
  border: 1px solid var(--color-primary-dark);
}

.details__action {
  display: flex;
  column-gap: 0.375rem;
  margin-bottom: 3.25rem;
}

.quantity,
.details__action-btn {
  border: 1px solid var(--color-heading);
  font-size: 16px;
}

.quantity {
  max-width: 80px;
  padding: 0.5rem;
  border-radius: 0.25rem;
  color: var(--color-heading);
}

.details__action-btn {
  line-height: 20px;
  color: var(--color-muted-accent);
  padding-inline: 0.75rem;
  background-color: transparent;
  border-radius: 0.25rem;
}

.btn--sm {
  height: 40px;
  line-height: 36px;
}
.btn.btn--sm {
  background-color: var(--color-accent-primary);
  color: #fff;
}
.btn-txt.btn--sm:hover {
  background-color: var(--color-primary-dark);
}

.details__meta {
  margin-top: 1rem;
}

.meta__list {
  font-size: 16px;
  color: var(--color-muted-accent);
}

.meta__list span {
  color: var(--color-heading);
  font-weight: 600;
}

.details__tabs {
  display: flex;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.detail__tab {
  padding: 10px 20px;
  cursor: pointer;
  font-size: var(--h2);
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.detail__tab:hover,
.detail__tab.active-tab {
  color: var(--color-accent-primary);
  border-bottom: 2px solid var(--color-accent-primary);
}

.details__tabs-content {
  display: flex;
  flex-direction: column;
}

.details__tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.details__tab-content.active-tab {
  display: block;
}

.info__table {
  width: 100%;
  border-collapse: collapse;
}

.info__table th,
.info__table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 1.5rem;
}

.reviews__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;

}

.reviews__single {
  display: flex;
  font-size: 1.5rem;
  flex-direction: column;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  background: #f9f9f9;
}

.review__img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.review__title {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: bold;
}

.review__rating i {
  color: #ffd700;
}

.review__description {
  margin: 10px 0;
  font-size: 0.9rem;
  color: #666;
}

.review__date {
  font-size: 0.8rem;
  color: #999;
}

.review__form-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.form__input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form__btn {
  display: flex;
  justify-content: flex-end;
}

.btn-txt {
  background-color: var(--color-accent-primary);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-txt:hover {
  background-color: var(--color-accent-secondary);
}

@media (max-width: 768px) {
  .form__group {
    grid-template-columns: 1fr;
  }

  .reviews__container {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* /Details */

/* Contact */

.contact-section {
  padding: 4rem 2rem;
  background-color: var(--color-background-secondary);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  max-width: 1200px;
  margin: auto;
}

.contact-section h3 {
  color: var(--color-primary-dark);
  font-size: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  animation: fadeIn 1s ease-in-out;
  font-weight: 700;
}

.contact-info,
.contact-form {
  padding: 3rem!important;
  background-color: var(--color-background-secondary);
  border: 1px solid var(--color-primary-dark);
  border-radius: 0.75rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-info:hover,
.contact-form:hover {
  transform: scale(1.02);
  box-shadow: 0 0.8rem 1.6rem rgba(0, 0, 0, 0.15);
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.2rem;
  font-size: 1.2rem;
  animation: slideInLeft 0.8s ease-in-out;
}

.contact-info .info-item i {
  color: var(--color-accent-primary);
  margin-right: 0.8rem;
  font-size: 1.6rem;
}

.follow-us h4 {
  margin-top: 2rem;
  color: var(--color-primary-dark);
  font-size: 1.6rem;
  animation: fadeInUp 1s ease-in-out;
  font-weight: 600;
}

.follow-us .social-links {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.follow-us .social-links a {
  margin-right: 1.2rem;
  color: var(--color-text-dark);
  font-size: 1.8rem;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.follow-us .social-links a:hover {
  color: var(--color-accent-primary);
  transform: scale(1.3);
}

.contact-form .form-label {
  color: var(--color-text-dark);
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-form .form-control {
  border: 1px solid var(--color-primary-dark);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-form .form-control:focus {
  border-color: var(--color-accent-secondary);
  box-shadow: 0 0 5px var(--color-accent-secondary);
}

.contact-form .btn-primary {
  background-color: var(--color-accent-secondary);
  color: var(--color-text-light);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.contact-form .btn-primary:hover {
  background-color: var(--color-accent-primary);
  transform: scale(1.05);
}

.map-container {
  margin-top: 3rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in-out;
}

.map-responsive {
  width: 100%;
  height: 300px;
  position: relative;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.75rem;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* /Contact */

/* Cart Page */

.main-content-wrap {
  padding: 50px 0;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 1rem;
  vertical-align: middle;
  font-size: 1.8rem;
  border-top: 1px solid var(--border-color);
}
.table td a {
  color: var(--color-heading);
  font-size: 1.5rem;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--border-color);
}

.table-content img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.cart-product-name a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.cart-product-name a:hover {
  text-decoration: underline;
}

.plantmore-product-remove a {
  color: red;
  font-size: 18px;
}

.coupon-all {
  margin-top: 20px;
}

.coupon2,
.coupon {
  margin-bottom: 20px;
}

.coupon h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.coupon p {
  margin-bottom: 15px;
}

.coupon input {
  width: calc(100% - 120px);
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.coupon .button,
.coupon2 .btn {
  background-color: var(--color-accent-primary);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.coupon .button:hover,
.coupon2 .btn:hover,
.proceed-checkout-btn:hover,
.continue-btn:hover {
  background-color: var(--btn-hover-color);
}

.continue-btn {
  background-color: var(--color-accent-primary);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

.cart-page-total {
  background-color: #fff;
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.cart-page-total h2 {
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.cart-page-total ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-page-total ul li {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 10px;
}

.proceed-checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--color-accent-primary);
  color: #fff;
  padding: 10px 0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 18px;
}

/* /Cart  */

/*Wishlist */
.main-content-wrap {
  padding: 30px 15px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.table thead th {
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px;
  text-align: center;
}

.table tbody td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.table tbody tr:hover {
  background-color: var(--hover-background);
  transition: background-color 0.3s ease;
}

.table img {
  max-width: 80px;
  height: auto;
}

.table a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.table a:hover {
  color: var(--accent-color);
}

.table .stock-status {
  font-weight: bold;
}

.table .in-stock {
  color: var(--in-stock-color);
}

.table .out-of-stock {
  color: var(--out-stock-color);
}

.table .plantmore-product-add-cart a {
  background-color: var(--btn-background);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.table .plantmore-product-add-cart a:hover {
  background-color: var(--btn-hover-background);
}

.table .plantmore-product-remove a {
  background-color: var(--btn-remove-background);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.table .plantmore-product-remove a:hover {
  background-color: var(--btn-remove-hover-background);
}

.table .fas {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .table {
    font-size: 0.9rem;
  }

  .table img {
    max-width: 60px;
  }

  .table thead th,
  .table tbody td {
    padding: 10px;
  }
}
/* Checkout */

.coupon-area {
  margin-top: 20px;
}

.coupon-accordion h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.coupon-accordion h3 .coupon {
  color: var(--color-accent-primary);
  cursor: pointer;
  text-decoration: underline;
}

.coupon-content {
  display: none;
  background-color: #f9f9f9;
  padding: 20px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}


.coupon-input input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.coupon-input {
  margin-bottom: 15px;
}

.button-login,
.button-apply-coupon {
  background-color: #2c5f2d;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.button-login:hover,
.button-apply-coupon:hover {
  background-color: #ff5e14;
}

.remember input {
  margin-right: 5px;
}

.lost-password a {
  color: #ff5e14;
  text-decoration: underline;
}

.clear {
  clear: both;
}


.checkout-details-wrapper {
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.single-form-row {
  margin-bottom: var(--form-margin-bottom);
}

.single-form-row input,
.single-form-row select,
.single-form-row textarea {
  width: 100%;
  padding: var(--input-padding);
  border: 1px solid var(--border-color);
  border-radius: var(--input-border-radius);
}

.checkout-box-wrap {
  margin-bottom: 15px;
}

.payment-method h5 {
  cursor: pointer;
  padding: 10px;
  border: 1px solid var(--border-color);
  margin-bottom: 5px;
  background-color: #f9f9f9;
}

.payment-content {
  display: none;
  padding: 10px;
  border: 1px solid var(--border-color);
  background-color: #fff;
}

.payment-content p {
  margin: 0;
}

.order-button-payment input {
  background-color: var(--color-accent-primary);
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: var(--input-border-radius);
  cursor: pointer;
  margin-top: 10px;
  font-size: 18px;
}

.order-button-payment input:hover {
  background-color: #1e3e1f;
}




/* Account */
.accounts {
  padding: 20px;
}

.accounts__container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.account__tabs {
  display: flex;
  flex-direction: column;
  background-color:#fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid var(--color-primary-light);
}

.account__tab {
  padding: 15px;
  font-size: 1.9rem;
  margin-bottom: 0px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.account__tab i {
  margin-right: 10px;
}

.account__tab.active-tab {
  background-color: var(--color-accent-primary);
  color: var(--color-background-secondary);
  font-weight: bold;
  margin-bottom: 0px;
  border: 1px solid var(--color-accent-primary);
  border-bottom: 1px solid var(--color-background-secondary); 
}

.account__tab:hover {
  background-color: var(--color-accent-secondary);
  color: var(--color-background-secondary);
  transform: scale(1.02);
}

.account__tab a {
  color: inherit;
  text-decoration: none;
}

.tabs__content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border: 1px solid var(--color-primary-light);
  transition: opacity 0.3s ease;
}

.tab__content {
  opacity: 0;
  display: none;
}

.tab__content.active-tab {
  opacity: 1;
  display: block;
}
.placed__oredr-table tr {
  font-size: 1.5rem;
}
.address{
  font-size: 1.2rem;
}
.tab__header {
  font-size: 1.75rem;
  color: var(--color-heading);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--color-accent-primary);
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.tab__header:hover {
  color: var(--color-accent-primary);
}

.tab__body {
  font-size: 1em;
  color: var(--color-text-dark);
}

.tab__description {
  margin: 0;
  font-size: 1.2rem;
}

.placed__order-table {
  width: 100%;
  border-collapse: collapse;
}

.placed__order-table th, .placed__order-table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
  transition: background-color 0.3s ease;
}

.placed__order-table th {
  background-color: var(--color-accent-primary);
  color: var(--color-background-secondary);
}

.placed__order-table tr:hover {
  background-color: var(--color-primary-light);
}

.view__order {
  color: var(--color-accent-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.view__order:hover {
  color: var(--color-muted-accent);
  text-decoration: underline;
}

.form {
  display: grid;
  gap: 10px;
}

.form__input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input:focus {
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 5px var(--color-accent-primary);
}

.form__btn {
  text-align: right;
}

.btn {
  background-color: var(--color-accent-secondary);
  color: var(--color-background-secondary);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--color-accent-primary);
  transform: scale(1.05);
}

.address {
  margin: 0;
  font-size: 1em;
}

.edit {
  color: var(--color-accent-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.edit:hover {
  color: var(--color-muted-accent);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accounts__container {
      grid-template-columns: 1fr;
  }
  .footer .box-container {
    grid-template-columns: repeat(2, 1fr);
  
}
.products__container.grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.details__container {
  grid-template-columns: repeat(1,1fr);
}
.details__color{
  margin: 20x 0;
}
.header .header-1 {
  flex-direction: none;
  padding: 1rem 5%;
}
}
@media (max-width: 400px){
  .products__container.grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .products__container .tab__btn{
    padding: 0px;
  }
.logo img{
  width: 100%;
  height: 100%;
}
}
.products.container{
  margin-top: 1rem;
}
.image img{
  width: 100%;
}
.deal {
  margin-top: 10px;
}
/* /Account */
.details__action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.details__action .quantity {
  width: 60px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 10px;
  text-align: center;
  font-size: 16px;
}

.details__action .btn--sm {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 15px;
  border: none;
  border-radius: 5px;
  background-color: var(--color-accent-primary);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.details__action .btn--sm:hover {
  background-color: var(--color-muted-accent);
  color: #fff;
}

.details__action .details__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f8f9fa;
  color: #dc3545;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.details__action .details__action-btn:hover {
  background-color: #e2e6ea;
  color: #c82333;
}

@media (max-width: 768px) {
  .details__action {
      flex-direction: column;
      align-items: stretch;
  }
  
  .details__action .quantity,
  .details__action .btn--sm,
  .details__action .details__action-btn {
      width: 100%;
      margin-bottom: 10px;
  }
  .table .plantmore-product-add-cart a{
    width: 110px;
  }
}
.content h1{
  font-size: var(--h1)!important;
}

.price-filter {
  margin: 20px 0;
}

.price-range-container {
  position: relative;
  width: 100%;
  margin: 10px 0;
}

.form-range {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ddd;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.form-range:hover {
  opacity: 1;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c5f2d;
  cursor: pointer;
}

.form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c5f2d;
  cursor: pointer;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-top: -28px;
}

.slider-range {
  position: absolute;
  height: 100%;
  background-color: #2c5f2d;
  left: 0;
  width: 50%;
}
.price-values {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.price-values span {
  color: #2c5f2d;
}
.form-range{
  width: 20%!important;
}
.price-range{
  margin-top: 15px!important;
  font-size: 1.75rem;
}
@media (max-width:500px) {
  .form-range{
    width: 90%!important;
  }
}
.user-btn{
  font-size: 2.5rem!important;
    padding: 2rem;
    color: var(--color-text-light);
}
.nav-display{
  display: none!important;
}
@media (max-width:768px){
  .header{
    display: none;
  }
  .nav-display{
    display: block!important;
  }
  .home{
    margin-top: 1rem;
  }
  main{
    margin-top: 7rem;
  }
}

.nav-display{
  background-color: #f8f9fa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  width: 120px;
  height: auto;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2870, 70, 70, 0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 30px;
  height: 30px;
}

.offcanvas {
  background-color: #fdfdfd;
  border-left: 3px solid #2c5f2d;
}

.offcanvas-header {
  border-bottom: 1px solid #ddd;
}

.offcanvas-logo {
  width: 100px;
  height: auto;
}

.nav-item .nav-link {
  color: #2c5f2d;
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 10px 15px;
  text-align: center;
  transition: color 0.3s, background-color 0.3s;
}

.nav-item .nav-link:hover, 
.nav-item .nav-link.active {
  color: #fff!important;
  background-color: #649665;
  border-radius: 5px;
}

@media (max-width: 992px) {
  .navbar {
      padding: 15px;
  }

  .nav-logo {
      width: 100px;
  }
}
.image {
  text-align: end;
}
.image img{
  width: 70%;
}

/* Login-register Start */
.main {
  padding: 60px 20px;
  /* background: #f7f9fc; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;
}

.login-register {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.section__title {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

.section__title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--color-accent-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.form__input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form__input:focus {
  border-color: #007bff;
  outline: none;
}

.form__btn {
  display: flex;
  justify-content: center;
}

.btn {
  background: var(--color-muted-accent)!important;
  color: #fff!important;
  border: none;
  width: 100%;
  font-size: 1.75rem!important;
  border-radius: 6px;
  padding: 20px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background: #0056b3;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}


@media (max-width: 992px) {
  .main {
      padding: 60px 15px;
  }

  .section__title {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .form {
      padding: 20px;
  }

  .btn {
      width: 100%;
  }
}
