:root {
  --bg-color: #d4a373;
  --bg2-color: #c99f71;
  --a-color: #d4a373;
  --back-color: #f5f5dc;
  --secondar: #a17c55;
  --text-color: #333333;
  --h-color: #2c5f2d;
  --t-font: "Merriweather", serif;
  --h-font: "Lato", sans-serif;
  --ht-size: 54px;
  --text-size: 44px;
  --small-size: 12px;
  --header-height: ;
--gradient:linear-gradient(to right, #ffecd2 0%, #fcb69f 100%, #fff 20%);
  /*========== Colors ==========*/
  /* Color mode HSL(hue, saturation, lightness) */
  --first-color: hsl(0, 0%, 5%); /* Soft Sunset peach */
  --first-color-alt: hsl(34, 100%, 80%); /* Slightly darker peach */
  --second-color: hsl(34, 94%, 70%); /* Soft coral */
  --title-color: hsl(34, 90%, 30%); /* Darker coral for titles */
  --text-color: hsl(34, 90%, 20%); /* Darker coral for text */
  --text-color-light: hsl(34, 90%, 40%); /* Lighter coral for secondary text */
  --body-color: hsl(34, 94%, 87%); /* Same as --first-color for a consistent soft background */
  --container-color: #ffe0d1; /* Light peach for containers */
  --border-color: hsl(34, 94%, 87%); /* Border color same as first color for consistency */
  --border-color-alt:  hsl(35, 18%, 66%); /* Slightly darker border for emphasis */

  /*========== Font and typography ==========*/
  /* .5rem = 8px | 1rem = 16px ... */
  --body-font: ;
  --second-font: ;
  --big-font-size: 3.5rem;
  --h1-font-size: 2.75rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.375rem;
  --large-font-size: 1.125rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --tiny-font-size: 0.6875rem;

  /*========== Font weight ==========*/
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;

  /*========== Transition ==========*/
  --transition: cubic-bezier(0, 0, 0.05, 1);
}

/* Responsive typography */
@media screen and (max-width: 1200px) {
  :root {
    --big-font-size: ;
    --h1-font-size: ;
    --h2-font-size: ;
    --h3-font-size: ;
    --h4-font-size: ;
    --large-font-size: ;
    --normal-font-size: ;
    --small-font-size: ;
    --smaller-font-size: ;
    --tiny-font-size: ;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.col-lg-3 {
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.form {
  row-gap: 1rem;
}
.section{
  margin-top: 2rem;
  padding-bottom: 2rem;
}
.latest__container{
  margin-top: 2rem;
}
.textarea {
  height: 200px;
  padding-block: 2rem;
  resize: none;
  border: 1px solid #000;
}
input {
  border: 1px solid #000;
}
.header{
  background: linear-gradient( 135deg,#fcb69f  0%,  #ffecd2  100% );
}
body {
  background:var(--gradient);
  /* background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); */
  color: var(--text-color);
  font-family: var(--t-font);
  background-size: 400% 400%;
  animation: gradientAnimation 1.5s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  column-rule: #000;
  font-weight: 700;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
p {
  line-height: 1.5rem;
}
img {
  max-height: 100%;
}
input,
button,
textarea {
  background-color: transparent;
  border: none;
  outline: none;
}
.grid {
  display: grid;
  gap: 1.5rem;
}

.section--lg {
  padding-block: 2rem;
}
.flex {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.new__price {
  color: #2c5f2d;
  font-weight: var(--weight-600);
}
.old__price {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  text-decoration: line-through;
}

/* header start */
.nav__logo .nav__logo-img {
  width: 100px;
  height: 30px;
}
.nav,
.nav__menu,
.nav__list,
.header__user-actions {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-between;
}
.nav__menu {
  margin-left: 0.5rem;
  /* width: 100%; */
  flex-grow: 1;
}
.nav__list {
  column-gap: 2.5rem;
  margin-right: auto;
}
.nav__link {
  color: var(--text-color);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s var(--transition);
}
.header__user-actions {
  column-gap: 2.25rem;
}
.header__user-actions .header__action-btn a {
  text-decoration: none;
  color: #000;
}
.header__action-btn {
  position: relative;
  color: #000;
  text-decoration: none;
  font-size: var(--h-font);
}

.header__action-btn img {
  /* position: absolute; */
  width: 25px;
}
.header__action-btn .count {
  position: absolute;

  background-color: #2c5f2d;
  color: #fff;
  height: 18px;
  width: 18px;
  line-height: 18px;
  border-radius: 50%;
  font-size: 18px;
  text-align: center;
}
.nav__menu-top,.nav__toggle{
  display: none;
}
/* header end */

/* active links */

.active-link,
.nav-link,
.nav__item a:hover {
  color: #fff;
}
/* active-links end */

/* Home start */
.carousel-item {
  position: relative;
}
.home__content {
  position: absolute;
  top: 20%;
  width: 400px;
  left: 15%;
  animation: fadeIn 2.4s ease-in-out 0.3s;
  animation-iteration-count: 1;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.home__title {
  line-height: 1.4;
}
.home__title span {
  color: #2c5f2d;
  font-weight: 700;
}
.home__description {
  margin-block: 0.5rem 2rem;
}
.home__content .hero-btn {
  display: inline-block;
  background-color: #2c5f2d;
  color: #fff;
  border: 2px solid #2c5f2d;
  padding-inline: 1.75rem;
  text-decoration: none;
  height: 49px;
  line-height: 45px;
  border-radius: 0.25rem;
  font-size: var(--small-font-size);
  font-weight: var(--weight-700);
  transition: all 0.4s var(--transition);
}
.hero-btn:hover {
  background-color: #d4a373;
  border: transparent;
  color: #000;
}
/* home-end */

/* categories start */
.categories {
  overflow: hidden;
}
.secton__title {
  font-size: var(--h4-font-size);
  margin-bottom: 1.5rem;
}
.category__item {
  text-align: center;
  border: 1px solid var(--bg-color);
  padding: 0.625rem 0.625rem 1.25rem;
  border-radius: 1.25rem;
  text-decoration: none;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
}
.category__img {
  width: 100%;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
  transform: transform 0.3s ease;
}
.category__item:hover .category__img {
  transform: scale(1.1);
}
.category__title {
  font-size: var(--small-font-size);
  color: #2c5f2d;
}
/* swiper-btn */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  padding: 15px;
  color: #edf3ed;
  border-radius: 50%;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #2c5f2d !important;
  color: #fff !important;
  border-radius: 50%;
}

/* categories end */

/* products start */
.products {
  padding-block: 2rem !important;
}
.tab__btns {
  display: flex;
  column-gap: 0.75rem;
  margin-bottom: 2rem;
}
.tab__btn {
  background-color: var(--container-color);
  color: var(--title-color);
  padding: 1rem 1.25rem 0.875rem;
  border-radius: 0.25rem;
  font-size: var(--small-font-size);
  font-weight: var(--weight-600);
  cursor: pointer;
}
/* active btn */
.tab__btn.active-btn {
  color: var(--first-color);
  background-color: var(--second-color);
}
.products__container {
  grid-template-columns: repeat(4, 1fr);
}
.product__item {
  border: 1px solid #2c5f2d;
  border-radius: 1.5rem;
  background: linear-gradient(45deg, #e9ecef, #fff);
}
.product__images {
  position: relative;
  display: block;
  overflow: hidden;
}
.product__banner {
  padding: 0.625rem 0.75rem 0.75rem;
  position: relative;
}

.product__images .product__img {
  width: 100%;
}
.tab__item:not(.active-tab) {
  display: none;
}
.tab-pills .nav {
  justify-content: center !important;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  border-bottom: none;
}
.tab-pills .nav-link {
  color: #2c5f2d;
  margin: 0 10px 0 10px;
  background-color: none;
}
.tab-pills .nav-link:hover {
  background-color: #d4a373;
  color: #fff;
}
.product__banner .product__actions a {
  color: #000;
  text-decoration: none;
}
.product__banner .product__actions {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  column-gap: 0.5rem;
  transition: all 1.5s var(--transition);
}
.action__btn {
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--first-color-alt);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: var(--small-font-size);
  position: relative;
}
.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(--first-color);
}
.action__btn::after {
  content: attr(aria-label);
  bottom: 100%;
  background-color: var(--back-color);
  color: #a17c55;
  font-size: var(--tiny-font-size);
  font-weight: var(--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: #2c5f2d;
  color: #edf3ed;
  padding: 0.25rem 0.625rem;
  border-radius: 2.5rem;
  font-size: var(--tiny-font-size);
}
.product__badge:nth-child(even) {
  background-color: #c99f71;
}
.product__images img:last-child {
  display: none;
}
.product__images:hover img:first-child {
  display: none;
  transition: all 1.5s ease-in-out;
}
.product__images:hover img:last-child {
  display: block;
  transition: all 1.5s ease-in-out;
}

.product__content a {
  color: #000;
  text-decoration: none;
}

.product__content {
  padding: 0px 1.25rem 1.125rem;
}
.product__category {
  color: #333;
  margin-top: 20px;
  font-size: var(--tiny-font-size);
}
.product__img {
  vertical-align: middle;
  transition: all 1.5s ease-in-out;
}
.product__title {
  font-size: var(--normal-font-size);
  margin-block: 0.75rem 0.5rem;
}
.product__rating {
  font-size: var(--small-font-size);
  color: hsl(24, 100%, 73%);
  margin-bottom: 0.75rem;
}
.product__price .new__price {
  font-size: var(--large-font-size);
}
.action__btn::after,
.action__btn::before,
.product__actions,
.product__item:hover .prduct__img.default {
  opacity: 0;
}
.product__item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.product__item:hover .product__img {
  transform: scale(1.1);
}
/* action hover */
.product__item:hover .product__img.hover,
.product__item:hover .product__actions,
.action__btn:hover::after,
.action__btn:hover::before {
  opacity: 1;
}
.action__btn:hover::after,
.action__btn:hover::before {
  transform: translateX(-50%) translateY(-0.05rem);
}
.action__btn:hover {
  background-color: #2c5f2d;
  border-color: #2c5f2d;
  color: #fff !important;
}

/* products end */

/* deals */
.deals__banner {
  background-size: 100% 100%;
  height: 50vh;
}
.deals__banner .hero-btn {
  display: inline-block;
  background-color: #2c5f2d;
  color: #fff;
  border: 2px solid #2c5f2d;
  padding-inline: 1.75rem;
  text-decoration: none;
  height: 49px;
  line-height: 45px;
  border-radius: 0.25rem;
  font-size: var(--small-font-size);
  font-weight: var(--weight-700);
  transition: all 0.4s var(--transition);
}
.deals__banner .hero-btn:hover {
  background-color: #edf3ed;
  color: #000;
  border-color: #edf3ed;
}
.deals__content {
  padding: 5rem;
  animation: fadeIn 2.4s ease-in-out 0.3s;
  animation-iteration-count: 1;
}

/* deals end */

/* footer start */
.footer {
  margin: 2rem 0 0 0;
  border-top: 1px solid black;
  padding: 50px 0 0 0;
}
.footer__logo img {
  width: 120px;
  height: 50px;
}
.footer__social-links {
  display: flex;
}
.footer__social-links a img {
  width: 40px;
  height: 30px;
}
.footer__links a {
  text-decoration: none;
  color: #000;
}
.copyright {
  border-top: 1px solid black;
  padding: 10px 0 0 0;
}
.footer__links {
  text-align: start;
  padding-left: 0;
}
.footer__links a:hover {
  color: #fff;
}
.footer__description span {
  color: #080807;
  font-weight: 500;
}
/* footer end */

/* Shop Section Start */

/* Breadcumb Start */
.breadcumb {
  background-image: url("../images/slider/divider.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 50vh;
  position: relative;
}
.breadcumb__list {
  color: #fff;
}
.breadcumb__list a {
  align-items: center;
  text-decoration: none;
  color: #fff;
}
.b-title {
  text-align: center;
  align-items: center;
  color: #fff;
  font-size: 84px;
  top: 20%;
  left: 40%;
  position: absolute;
}
/* Breadcumb end */

/* Shop Section End */

/* shop-details start */
/* breadcumb */
.b-details {
  text-align: center;
  align-items: center;
  color: #fff;
  font-size: 84px;
  top: 20%;
  left: 27%;
  position: absolute;
}
/* details start */

.details__small-images {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0.625rem;
  margin-top: 1rem;
}
.details__img {
  width: 100%;
}
.details__small-img {
  width: 100%;
  cursor: pointer;
}
.detaails__title {
  font-size: var(--h2-font-size);
}
.details__brand {
  font-size: var(--small-font-size);
  margin-block: 1rem;
}
.details__brand span {
  color: var(--first-color);
}
.details__price {
  border-top: 1px solid var(--border-color-alt);
  border-bottom: 1px solid var(--border-color-alt);
  padding-block: 1rem;
  column-gap: 1rem;
}
.details__price .new__price {
  font-size: var(--h2-font-size);
}
.details__price .old__price {
  font-size: var(--normal-font-size);
  font-weight: var(--weight-500);
}
.short__description {
  margin-block: 1rem 2rem;
}
.list__item,
.meta__list {
  font-size: var(--small-font-size);
  margin-bottom: 0.75rem;
}
.details__color-title,
.details__size-title {
  font-size: var(--small-font-size);
  font-weight: var(--weight-600);
}
.color__list,
.size__list a {
  text-decoration: none;
  color: #000;
}
.color__list,
.size__list {
  display: flex;
  column-gap: 0.25rem;
  justify-content: center;
}
.color__link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
}
.size__link {
  border: 1px solid var(--border-color-alt);
  padding: 0.375rem 0.75rem 0.5rem;
  font-size: var(--small-font-size);
}
.details__color-title,
.details__size-title {
  bottom: 7px;
  position: relative;
}
.details__color,
.details__size {
  column-gap: 0.75rem;
}
.details__color {
  margin: 2rem 1.5rem 0px 0px;
}
.size-active {
  background-color: var(--first-color);
  color: #fff;
}
.details__action {
  display: flex;
  column-gap: 0.375rem;
  margin-bottom: 3.25rem;
}
.quantity,
.details__action-btn {
  border: 1px solid var(--border-color);
  font-size: var(--small-font-size);
}
.btn.btn--sm {
  background-color: #2c5f2d;
  color: #fff;
}
.quantity {
  max-width: 80px;
  padding-block: 0.5rem;
  padding-inline: 1rem 0.5rem;
  border-radius: 0.25rem;
  background-color: #edf3ed;
}
.details__action a {
  color: #000;
}
.details__action-btn {
  line-height: 40px;
  padding-inline: 0.75rem;
  background-color: #edf3ed;
}
.btn--sm {
  height: 40px;
  line-height: 36px;
}
.product__list {
  padding-left: 0px;
}
.details__meta {
  border-top: 1px solid #000;
  padding-top: 1rem;
}
/* details end */
/* details-tab  start */
.details__tabs {
  display: flex;
  column-gap: 1.75rem;
  margin-bottom: 3rem;
}
.detail__tab {
  font-size: var(--second-font);
  font-weight: var(--weight-500);
  cursor: pointer;
}
.detail__tab.active-tab {
  color: var(--first-color);
}

.info__table tr th,
.info__table tr td {
  border: 1px solid var(--border-color-alt);
  padding: 0.625rem 1.25rem;
}

.reviews__container {
  padding-bottom: 3rem;
  row-gap: 1.25rem;
}
.review__single {
  border-bottom: 1px solid var(--border-color-alt);
  padding-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  column-gap: 1.5rem;
}
.review__img {
  width: 70px;
}
.review__single:last-child {
  padding-bottom: 3rem;
  margin-bottom: 0.5rem;
}
.review__title {
  font-size: var(--tiny-font-size);
}
.review__data {
  width: calc(100% - 94px);
}
.review__description {
  margin-bottom: 0.5rem;
}
.review__rating {
  color: hsl(42, 100%, 50%);
  margin-bottom: 0.25rem;
}
.review__rating,
.review__date {
  font-size: var(--tiny-font-size);
}
.review__form-title {
  font-size: var(--large-font-size);
  margin-bottom: 1rem;
}
.rate__product {
  margin-bottom: 2rem;
}
.form__input {
  border: 1px solid #000;
  background-color: #fff;
  padding-inline: 0.5rem 1.5rem;
}
.form__btn .btn {
  background-color: #2c5f2d;
  color: #fff;
}
.nav-link.detail__tab {
  color: #000;
}
.detail__tab .nav.nav-tabs {
  margin-top: 2rem;
  place-content: baseline;
}
.detail__tab .detail__tab:hover {
  color: #2c5f2d;
}
/* details-tab end */
/* shop-details end */

/* Cart Page */
.table__container {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.table thead th {
  border-bottom: 2px solid var(--border-color-alt);
  text-align: center;
  padding: 0.75rem;
  vertical-align: middle;
}

.table tbody tr {
  border-top: 1px solid var(--border-color-alt);
}

.table tbody tr:last-child {
  border-bottom: 1px solid var(--border-color-alt);
}

.table th:nth-child(1),
.table td:nth-child(1) {
  width: 216px;
}

.table th:nth-child(2),
.table td:nth-child(2) {
  width: 400px;
}

.table th:nth-child(3),
.table td:nth-child(3) {
  width: 108px;
}

.table th:nth-child(4),
.table td:nth-child(4) {
  width: 220px;
}

.table th:nth-child(5),
.table td:nth-child(5) {
  width: 200px;
}

.table th:nth-child(6),
.table td:nth-child(6) {
  width: 152px;
}

.table__img {
  width: 80px;
  height: auto;
}

.table th,
.table td {
  padding: 0.75rem;
  text-align: center;
  vertical-align: middle;
}

.table__title {
  color: var(--first-color);
  font-size: var(--small-font-size);
}

.table__price,
.table__subtotal,
.table__trash {
  font-size: var(--small-font-size);
}

.quantity {
  width: 60px;
  text-align: center;
}
.cart__actions .btn--md {
  background-color: #2c5f2d;
  color: #fff;
  padding: 10px;
}
.cart__actions .btn--md:hover {
  background-color: var(--first-color);
  color: #fff;
  padding: 10px 20px;
}
.cart__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.flex {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

/* divider */
.divider {
  position: relative;
  text-align: center;
  margin-block: 3rem;
}
.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border: 2px solid var(--border-color-alt);
}
.divider i {
  color: #000;
  font-size: 1.25rem;
  padding-inline: 1.25rem;
  position: relative;
  z-index: 10;
}
.cart__group {
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}
.cart__shipping .section__title,
.cart__coupon .section__title,
.cart__total .section__title {
  font-size: var(--large-font-size);
  margin-bottom: 1rem;
}
.cart__coupon {
  margin-top: 3rem;
}
.coupon__form .form__group {
  align-items: center;
}
.cart__total {
  border: 1px solid var(--border-color-alt);
  border-radius: 0.25rem;
  padding: 1.75rem;
}
.cart__total-table {
  margin-bottom: 1rem;
}
.cart__total-table tr td {
  border: 1px solid var(--border-color-alt);
  padding: 0.75rem 0.5rem;
  width: 50%;
}
.btn.flex.btn--md {
  background-color: #2c5f2d;
  color: #fff;
  padding: 10px 10px;
}
.btn.flex.btn--md:hover {
  background-color: var(--first-color);
  color: #fff;
  padding: 10px 10px;
}
.btn.flex.btn--md i {
  padding-right: 5px;
}
.cart__total-title {
  font-size: var(--small-font-size);
}
.cart__total-price {
  color: var(--first-color);
  font-weight: var(--weight-700);
}
.cart__total .btn {
  display: inline-flex;
}
.form__input {
  padding: 0.5rem;
}
/* Cart Page End */

/* Login-register Start */
.login-register__container {
  text-align: start;
  margin-top: 2rem;
}
.login,
.register {
  border: 1px solid var(--border-color-alt);
  padding: 2rem;
  border-radius: 0.5rem;
}
/* Login-register End */

/* checkout start */
.checkout__group:nth-child(2) {
  border: 1px solid var(--border-color-alt);
  padding: 2rem;
  border-radius: 0.5rem;
}
.checkout__group .section__title {
  font-size: var(--large-font-size);
}
.checkout__title {
  font-size: var(--small-font-size);
}
.order__table tr th,
.order__table tr td {
  border: 1px solid var(--border-color-alt);
  padding: 0.5rem;
  text-align: center;
}
.order__table tr th {
  color: var(--title-color);
  font-size: var(--small-font-size);
}
.order__img {
  width: 80px;
}
.table__quantity,
.order__subtitle {
  font-size: var(--small-font-size);
}
.order__grand-total {
  color: var(--first-color);
  font-size: var(--large-font-size);
  font-weight: var(--weight-700);
}
.payment__methods {
  margin-block: 2.5rem 2.75rem;
}
.payment__title {
  margin-bottom: 1.5rem;
}
.payment__option {
  margin-bottom: 1rem;
}
.payment__input {
  accent-color: var(--first-color);
}
.payment__label {
  font-size: var(--small-font-size);
}
.br-group {
  border: 1px solid #000;
  padding: 1.5rem;
}
.btn.btn--md.btn-place {
  background-color: #2c5f2d;
  color: #fff;
  padding: 8px;
}
.btn.btn--md.btn-place:hover {
  background-color: var(--first-color);
}

/* checkout end */

/* accounts start */
/* Accounts start */
.account .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff !important;
  background-color: #2c5f2d !important;
  text-align: center;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.account .nav-link {
  color: #000;
  text-align: center;
  margin-bottom: 0.5rem;
}

.account .nav-link:hover {
  color: var(--first-color);
}

.account .nav-pills {
  text-align: center;
}

.account__tabs {
  border: 1px solid var(--border-color-alt);
  border-radius: 0.25rem;
}

.account__tab {
  padding: 1rem 2rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.tab__content {
  border: 1px solid var(--border-color-alt);
  margin-top: 1rem;
}

.tab__header {
  background-color: var(--container-color);
  border-bottom: 1px solid var(--border-color-alt);
  padding: 1rem;
  font-size: var(--small-font-size);
}

.tab__body {
  padding: 1rem;
}

.place__order-table {
  width: 100%;
  border-collapse: collapse;
}

.place__order-table th,
.place__order-table td {
  padding: 0.75rem;
  border: 1px solid var(--border-color-alt);
  text-align: left;
}

.place__order-table th {
  background-color: var(--container-color);
  color: var(--title-color);
}

.view__order {
  color: var(--first-color);
}

.address {
  font-style: normal;
  line-height: 1.5;
}

.edit {
  color: var(--first-color);
  text-decoration: underline;
}

.form__input {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--border-color-alt);
  width: 100%;
}

.form__btn .btn--md {
  padding: 0.5rem 1rem;
  background-color: var(--first-color);
  color: #fff;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-pills .nav-link {
    width: 100%;
  }
}
/* Accounts end */

/* accounts end */


/* contact */

.contact-section {
  padding: 60px 0;
}
.contact-info {
  padding: 30px;
}
.contact-info h3 {
  margin-bottom: 20px;
}
.contact-info .info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.contact-info .info-item i {
  margin-right: 10px;
  font-size: 24px;
}
.contact-info .info-item a {
  margin-left: 10px;
  text-decoration: none;
  color: #000;
}
.contact-info .info-item a:hover {
  color: #2c5f2d;
}
.contact-form h3 {
  margin-bottom: 30px;
}
.contact-form .form-control {
  margin-bottom: 20px;
}
.contact-form .btn-primary {
  background-color: #2c5f2d;
  border-color: #2c5f2d;
}
.contact-form .btn-primary:hover {
  background-color: #1b3c1d;
  border-color: #1b3c1d;
}
.follow-us {
  margin-bottom: 30px;
}
.follow-us h4 {
  margin-bottom: 10px;
}
.follow-us .social-links {
  display: flex;
  gap: 15px;
}
.follow-us .social-links a {
  color: #000;
  font-size: 24px;
  transition: color 0.3s ease;
}
.follow-us .social-links a:hover {
  color: #2c5f2d;
}
.map-container {
  margin-top: 50px;
}
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
/* contact end */

/* shop page start*/
.shop-page {
  padding: 30px;
}

.sidebar {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
}

.sidebar h4 {
  margin-bottom: 20px;
}

.sidebar .form-check {
  margin-bottom: 10px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card:hover {
  transform: scale(1.05);
}

.product-card .card-body {
  padding: 15px;
}

.product-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.product-card .card-text {
  font-size: 1rem;
  color: #333;
}

.pagination {
  display: flex;
  justify-content: center;
}

.pagination .page-link {
  background-color: #fff;
  border-color: #ddd;
  color: #333;
}

.pagination .page-item.active .page-link {
  background-color: #2c5f2d;
  border-color: #2c5f2d;
  color: #fff;
}

.btn-primary {
  background-color: #2c5f2d;
  border-color: #2c5f2d;
}

.btn-primary:hover {
  background-color: #1b3c1d;
  border-color: #1b3c1d;
}
.sidebar h4 {
  margin-top: 1rem;
  color: var(--title-color);
}

.form-check-label {
  color: var(--text-color-light);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.brand-item {
  background-color: var(--container-color);
  padding: 0.5rem;
  text-align: center;
  border-radius: 0.25rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.top-rated-product {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.top-rated-product-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
}

.top-rated-product-name {
  color: var(--text-color);
}

.btn-primary {
  background-color: var(--title-color);
  border: none;
}

.btn-primary:hover {
  background-color: var(--text-color);
}
.btn.btn-primary.mt-3{
  background-color: #2c5f2d;
  border: none;
}
.btn.btn-primary.mt-3:hover{
  background-color: #ffe0d1;
}
.form-check-input:checked {
  background-color: #ffe0d1!important;
  border-color: #ffe0d1!important;
}
.form-check-input:focus {
  border-color:#ffe0d1!important;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(255, 224, 209, 1)!important;
}
/* shop end */
.nav__list{
  margin-bottom: 0px;
  margin: 0 26%;
}
.breadcumb__list{
  display: none;
}
.details,.checkout,.cart {
  margin-top: 2rem;
}
.header{
  padding-bottom: 1.5rem;
}
.header__action-btn .fa-user{
  font-size: 26px;
}
.login-title{
left: 33%;
}

/* video */

.video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.video-content {
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 3;
  animation: fadeIn 1s ease-in-out;
}

.video-heading {
  font-size: var(--heading-font-size);
  margin-bottom: 1rem;
  animation: slideInFromLeft 1s ease-in-out;
}

.video-paragraph {
  font-size: var(--paragraph-font-size);
  margin-bottom: 1.5rem;
  animation: slideInFromRight 1s ease-in-out;
}

.play-btn {
  padding: 0.75rem 1.5rem;
  background: var(--back-color);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.play-btn:hover {
  background: var(--button-bg-hover);
}

/* Keyframes for animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}