: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: ;

  /*========== Colors ==========*/
  /* Color mode HSL(hue, saturation, lightness) */
  --first-color: hsl(0, 0%, 2%); /* 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%
  ); 
  --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);
}

@media screen and (min-width: 992px) {
}

@media screen and (max-width: 1200px) {
  :root {
    --header-height: 60px;
    --body-color: #fff;
    --large-fo: 1.25rem;
    --h2-font-size: 1.5rem;
  }

  .header .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__logo-img {
    width: 116px;
  }

  .header .nav__menu {
    position: fixed;
    right: -100%;
    top: 0;
    max-width: 400px;
    width: 100%;
    height: 100%;
    padding: 1.25rem 2rem;
    background-color: var(--body-color);
    z-index: 100;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out; /* Add transition for smooth effect */
  }

  .show-menu {
    right: 0 !important;
  }

  .header .nav__list {
    order: 1;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.5rem;
  }

  .header .nav__link {
    font-size: var(--large-fo);
  }

  .nav__menu-top,
  .nav__toggle {
    display: flex;
  }

  .nav__menu-top {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .header .nav__menu-logo img {
    width: 100px;
  }

  .nav__close {
    font-size: var(--h2-font-size);
    line-height: 1rem;
    cursor: pointer; /* Ensure the close button has a pointer cursor */
  }

  .header__action-btn img {
    width: 21px;
  }

  .home__content {
    top: 5%;
  }
  .deals__content {
    padding: 3rem 2.5rem 2rem 1rem;
  }
  .shop-page .col-md-9 {
    margin-top: 1rem;
  }
  .nav__list {
    margin-bottom: 0px;
    margin: 0;
  }
}

@media screen and (max-width: 600px) {
  .home__content .home__subtitle {
    font-size: 16px;
  }
  .home__content .home__title {
    font-size: 22px;
  }
  .home__content {
    width: 250px;
  }
  .h1,
  h1 {
    font-size: calc(1rem + 1vw);
  }
  .carousel-item.active img {
    height: 50vh;
  }
  .home__content .hero-btn {
    height: 39px;
    line-height: 35px;
  }
  .deals__banner {
    margin-bottom: 10px;
  }
  .header .nav {
    height: calc(var(--header-height) + 0rem);
  }
  .b-title {
    left: 20%;
  }
  .b-details {
    font-size: 44px;
    left: 10%;
  }
  .b-title {
    font-size: 54px;
    top: 28%;
  }
  .nav__list {
    margin-bottom: 0px;
    margin: 0;
  }
  .header__action-btn .fa-user{
    font-size: 22px;
    padding-top: 4px;
  }
  .header__user-actions {
    column-gap:1.55rem;
}
.cart__group {
    grid-template-columns: repeat(1, 1fr);
    align-items: flex-start;
}
.cart-title{
    left: 30%;
}
.cart .btn.flex.btn--md{
    font-size: 14px;
}
.place__order-table th, .place__order-table td {
    padding: 0.05rem;
    border: 1px solid var(--border-color-alt);
    text-align: left;
}
.login-title{
    font-size: 34px;
}
}
