  /*****************************************************/
  /*****************   Typography   ********************/
  /*****************************************************/

  :root {
    --brand-color: #FE7300;
    --secondary-color: #262626;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --mb-color: #2c3e50;
  }

  * {
    margin: 0;
    padding: 0;
  }

  body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black-color);
    background-color: var(--white-color);
    overflow-x: hidden;
  }

  body.active {
    position: relative;
  }

  body.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000065;
    z-index: 999;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  li {
    list-style: none;
  }

  a {
    text-decoration: none;
    display: inline-block;
  }

  a:focus {
    outline: none;
    text-decoration: none;
  }

  a:hover {
    text-decoration: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0;
  }

  img {
    border: none;
    max-width: 100%
  }

  button {
    border: none;
  }

  button:focus {
    border: none;
    outline: none;
    box-shadow: none;
  }

  .align_center {
    align-items: center;
  }

  .no_padding {
    padding: 0;
  }

  .section_padding {
    padding: 50px 0px;
  }

  .container {
    max-width: 1440px;
    width: 100%;
  }

  .container::before,
  .container::after {
    display: none;
  }

  .loader {
    width: 35px;
    height: 35px;
    border: 5px solid var(--brand-color);
    border-bottom-color: var(--white-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateY(-50%);
  }

  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /*****************************************************/
  /******************   Header Area   ******************/
  /*****************************************************/

  /* Top Bar */

  .header-top {
    background: var(--mb-color);
    color: var(--white-color);
    font-size: 14px;
    padding: 10px 20px;
  }

  .header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-top-right {
    display: flex;
    gap: 20px;
  }

  .header-top-right a {
    text-transform: capitalize;
    color: var(--white-color);
    transition: 0.3s;
  }

  .header-top-right a:hover {
    color: var(--brand-color);
  }

  .header-top-right i {
    margin-right: 5px;
  }

  .header-top-center strong {
    color: var(--white-color);
  }

  .header-top-right select {
    background: transparent;
    color: var(--white-color);
    border: none;
    margin-left: 14px;
  }

  /* Main Header */
  .header-main {
    background: var(--white-color);
    border-bottom: 1px solid #eee;
    padding: 20px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-logo a img {
    height: 50px;
  }

  /* Navigation */

  .header-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
  }

  .header-nav ul li ul {
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    padding: 10px;
    gap: 10px;
    position: absolute;
    z-index: 2;
    box-shadow: 0px 0px 2px #ddd;
    min-width: 160px;
    top: 40px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .header-nav ul li:hover ul {
    top: 30px;
    opacity: 1;
    visibility: visible;
  }

  .header-nav a {
    color: var(--black-color);
    text-transform: capitalize;
    transition: 0.3s;
    display: block;
  }

  .header-nav a:hover {
    color: var(--brand-color);
  }

  /* Right Side */
  .header-right {
    display: flex;
    align-items: center;
  }

  .header-google-reviews a img {
    height: 50px;
  }

  .header-reviews {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #181818;
  }

  .header-reviews img {
    height: 25px;
  }

  .header-trust {
    font-weight: 600;
  }

  .header-cart {
    position: relative;
  }

  .header-cart>button {
    background: transparent;
  }

  .header-cart-count {
    font-size: 12px;
    background: var(--brand-color);
    color: var(--brand-color);
    border-radius: 50%;
    /* padding: 0px 6px; */
    position: absolute;
    right: 0;
    top: -8px;
    width: 20px;
    height: 20px;
  }

  .header-cart i {
    margin-right: 10px;
  }

  .mobile-menu-header,
  .mobile-menu-trigger {
    display: none;
  }

  .mobile-nav-bottom {
    display: none;
  }

  /* Mini Cart */

  .sidebar-cart {
    width: 350px;
    position: fixed;
    background: var(--white-color);
    z-index: 999;
    top: 0px;
    right: -350px;
    border-top: 2px solid var(--brand-color);
    transition: 0.3s;
    box-shadow: 0px 0px 5px #00000025;
    min-height: 100vh;
  }

  .minicart.active .sidebar-cart {
    right: 0;
  }

  .minicart.just-count .sidebar-cart {
    display: none;
  }

  .sidebar-cart .cartInputBox {
    padding: 20px;
    height: 93vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .sidebar-cart-top h3 {
    font-size: 20px;
    color: var(--white-color);
  }

  .sidebar-cart-top {
    background-color: var(--brand-color);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sidebar-cart-top button {
    background-color: transparent;
    color: var(--white-color);
    font-size: 25px;
  }

  /* .header-cart:hover .sidebar-cart {
    right: 0px;
  } */

  .minicart-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
  }

  .cartInputBox li .minicart-item:nth-last-child(2) {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
  }

  .minicart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 5px;
  }

  .minicart-item-info a {
    font-size: 14px;
    line-height: 20px;
    margin: 0 30px 10px 0;
    color: var(--black-color);
    transition: 0.3s;
    font-weight: 500;
  }

  .minicart-item-info a:hover {
    color: var(--brand-color);
  }

  .minicart-quantity-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cartInfo .item {
    position: absolute;
    top: -7px;
    background: transparent;
    right: 7px;
    color: var(--white-color);
    font-size: 12px;
    opacity: 0;
  }

  .just-count .cartInfo .item {
    opacity: 1;
  }

  .minicart-quantity {
    display: flex;
    align-items: center;
    /* border: 1px solid #ccc; */
    border-radius: 35px;
    overflow: hidden;
    margin-right: 10px;
    padding: 0px 5px;
  }

  .minicart-quantity button {
    width: 24px;
    height: 24px;
    background: var(--white-color);
    cursor: pointer;
  }

  .minicart-quantity input {
    width: 20px;
    text-align: center;
    border: none;
    margin: 0 5px;
    height: 24px;
  }

  .minicart-price {
    font-weight: 600;
    color: var(--brand-color);
  }

  .minicart-remove {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    color: red;
  }

  .minicart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin: 15px 0;
  }

  .minicart-btn {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    border-radius: 35px;
    text-align: center;
  }

  .minicart-btn strong {
    font-weight: 600;
  }

  .minicart-btn:hover {
    color: var(--white-color);
  }

  .minicart-view-cart {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }

  .minicart-checkout {
    background-color: var(--brand-color);
    color: var(--white-color);
  }


  /* Search Section */


  .header-search-category {
    background: #f5f5f5;
    border: none;
    padding: 13px 25px;
    background-image: url(../images/down-chevron.png);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 94%;
    appearance: none;
  }

  .header-search-category:focus {
    outline: none;
    border: none;
  }

  /* Selected option color */
  .header-search-category option:checked,
  .header-search-category option:hover {
    color: var(--white-color);
    background-color: var(--brand-color);
  }

  .header-search {
    background: var(--brand-color);
  }

  .header-search-inner {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-categories {
    background: var(--black-color);
    color: var(--white-color);
    font-weight: bold;
    position: relative;
    min-width: 300px;
  }

  .header-categories button {
    background: var(--secondary-color);
    color: var(--white-color);
    display: block;
    width: 100%;
    font-weight: 500;
    transition: 0.3s;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header-categories button i {
    font-size: 20px;
  }

  .header-categories button p {
    font-size: 16px;
  }

  .header-categories button:hover {
    color: var(--brand-color);
  }

  .category-list {
    position: absolute;
    z-index: 99;
    background: var(--white-color);
    left: 0;
    top: 90px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    width: 100%;
  }

  .category-list.active {
    top: 66px;
    opacity: 1;
    visibility: visible;
  }

  .category-list li {
    position: relative;
  }

  .category-list li .cat-submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background: var(--white-color);
    width: 100rem;
    left: 30rem;
    top: 20px;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    transition: 0.3s;
  }

  .category-list li:hover .cat-submenu {
    opacity: 1;
    visibility: visible;
    top: 0;
  }

  .category-list li:last-child {
    margin-bottom: 0;
  }

  .category-list li:last-child a {
    border-bottom: none;
  }

  .category-list li a {
    color: var(--black-color);
    font-weight: 400;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-bottom: 1px solid #ccc;
  }

  .category-list li a img {
    height: 25px;
    width: 25px;
    object-fit: cover;
    border-radius: 3px;
  }

  .category-list li a:hover {
    color: var(--brand-color);
  }

  .category-list>li>a {
    justify-content: space-between;
  }

  .category-list>li>a span {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .cat-submenu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
  }

  .mobile-category {
    display: none;
  }

  .header-search-box {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--white-color);
    border-radius: 35px;
    overflow: hidden;
  }

  .header-search-box input {
    flex: 1;
    border: none;
    padding: 10px 20px;
    outline: none;
  }

  .header-search-box input:focus {
    box-shadow: none;
  }

  .header-search-box button {
    background: var(--brand-color);
    border: none;
    padding: 9px 14px;
    cursor: pointer;
    color: var(--white-color);
    margin-right: 4.2px;
    border-radius: 35px;
    transition: 0.3s;
  }

  .header-search-box button:hover {
    background-color: var(--black-color);
  }

  .header-phone a {
    color: var(--white-color);
    transition: 0.3s;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-phone a:hover {
    color: var(--black-color);
  }

  .header-phone a i {
    font-size: 40px;
  }

  .header-phone a p {
    font-size: 14px;
  }

  .header-phone a p span {
    font-size: 18px;
    font-weight: 600;
  }

  /*****************************************************/
  /******************   Item Area   ********************/
  /*****************************************************/

  /* Hero Section */

  .hero-slide {
    height: 600px;    
    color: var(--white-color);   
    overflow: hidden;
  }

  .hero-slide span {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .hero-slide h1 {
    font-size: 75px;
    margin: 10px 0;
    font-weight: 600;
  }

  .hero-slide p {
    font-size: 16px;
    margin-bottom: 20px;
    max-width: 500px;
  }

  .hero-button {
    background: var(--white-color);
    color: var(--black-color);
    padding: 12px 40px;
    font-weight: 500;
    border-radius: 35px;
    transition: 0.3s;
  }

  .hero-button:hover {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    color: var(--white-color);
    font-size: 30px;
    transition: 0.3s;
  }

  .swiper-button-next:hover::after,
  .swiper-button-prev:hover::after {
    color: var(--brand-color);
  }

  .hero-slider .swiper-pagination-bullet {
    background: var(--white-color);
    opacity: 1;
  }

  .hero-slider .swiper-pagination-bullet-active {
    background: var(--brand-color);
  }


  /* Features Section */
  .section-features {
    background: #F1F1F1;
    color: var(--white-color);
    padding: 40px 0;
  }

  .features-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .feature-icon {
    font-size: 50px;
  }

  .feature-icon img {
    max-height: unset !important;
    height: 45px;
    width: 45px !important;
    object-fit: contain;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .feature-content {
    color: var(--black-color);
  }

  .feature-item h4 {
    margin: 10px 0 5px;
  }

  /* Product Categories Grid */

  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 5px;
  }

  .category-item {
    height: 35rem;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .category-item:hover {
    background-size: 110%;
  }

  .category-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000057;
    transition: background 0.3s ease;
    z-index: -1;
  }

  .category-item:hover::after {
    background: #00000088;
  }


  .category-content {
    color: var(--white-color);
  }

  .category-content h4 {
    font-size: 16px;
    text-transform: uppercase;
  }

  .category-content h2 {
    font-size: 35px;
    margin: 5px 0;
    font-weight: 700;
  }

  .category-content p {
    font-size: 16px;
  }

  .category-content span {
    margin-top: 20px;
    color: var(--brand-color);
    display: inline-block;
    font-weight: 500;
  }

  .category-content span:hover {
    text-decoration: underline;
  }

  /* Best Seller */

  .best-seller-area {
    background: #F1F1F1;
    padding: 70px 0;
  }

  .best-seller-title {
    text-align: center;
  }

  .best-seller-title h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
  }

  .best-seller-title ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
  }

  .best-seller-title ul li button {
    padding: 6px 30px;
    border-radius: 35px;
    background: transparent;
    transition: 0.3s;
    text-transform: capitalize;
    font-weight: 500;
  }

  .best-seller-title ul li button.active,
  .best-seller-title ul li button:hover {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .best-seller-product-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }

  .single-product-item {
    background-color: var(--white-color);
    text-align: center;
    box-shadow: 0px 0px 10px #cccccc6b;
  }

  .single-product-item a {
    overflow: hidden;
    width: 100%;
  }

  .single-product-item a img {
    transition: 0.3s;
    width: 100%;
  }

  .single-product-item:hover a img {
    transform: scale(1.1);
  }

.single-product-item-info {
    padding: 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.single-product-item-info h2 a {
    color: var(--black-color);
    font-size: 20px;
    transition: 0.3s;
    line-height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

  .single-product-item-info h2 a:hover {
    color: var(--brand-color);
  }

  .single-product-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .single-product-reviews p {
    text-transform: capitalize;
    font-weight: 600;
  }

  .single-product-item-info ul {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
  }

  .single-product-item-info ul li i {
    color: var(--brand-color);
  }

  .best-sellers-item-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .save-price {
    background: #2ecc71;
    padding: 5px 15px;
    text-transform: capitalize;
    color: var(--white-color);
    border-radius: 30px;
  }

  .save-price p {
    font-size: 14px;
  }

  .best-sellers-item-price span {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-color);
    margin-right: 5px;
  }

  .best-sellers-item-price del {
    color: #555;
  }

  .single-product-btn-group {
    display: flex;
    gap: 10px;
  }

  .single-product-item-info button {
    padding: 10px 30px;
    background: var(--brand-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .single-product-item-info button:hover {
    background: var(--secondary-color);
  }

  .single-product-item-info button:first-child {
    width: 80%;
  }

  .single-product-item-info button:last-child {
    width: 20%;
    background: var(--mb-color);
  }

  /* Featured Categories */

  .featured-categories {
    padding: 60px 0;
  }

  .category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .category-card {
    border-radius: 10px;
    background: var(--white-color);
    display: grid;
    align-items: center;
    padding: 20px;
    gap: 30px;
    grid-template-columns: 1fr 2fr;
    box-shadow: 0px 0px 10px #e1e1e196;
  }

  .category-card img {
    width: 186px;
    display: block;
    border-bottom: 1px solid #eee;
    border-radius: 5px;
  }

  .single-buy-get-free h2 {
    text-align: center;
  }

  .single-buy-get-free h2 a {
    color: var(--black-color);
    font-size: 20px;
    transition: 0.3s;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
  }

  .single-buy-get-free h2 a:hover {
    color: var(--brand-color);
  }

  .single-buy-get-free .best-sellers-item-price {
    margin: 0;
  }

  .single-buy-get-free .best-sellers-item-price span {
    font-size: 28px;
  }

  .single-buy-get-free .best-sellers-item-price del {
    font-size: 22px;
  }

  .category-content {
    padding: 20px;
    text-align: center;
  }

  .category-card-content h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 600;
  }

  .category-card-content p {
    font-size: 14px;
    margin: 15px 0;
    color: #555;
  }

  .category-card-content a {
    display: inline-block;
    background-color: var(--brand-color);
    color: var(--white-color);
    padding: 8px 30px;
    border-radius: 35px;
    transition: 0.3s;
    font-weight: 500;
    text-transform: capitalize;
  }

  .category-card-content a:hover {
    background-color: var(--brand-color);
  }

  .category-card-content span {
    font-size: 25px;
    padding-bottom: 10px;
    display: inline-block;
    font-weight: 500;
  }

  .category-card-content span del {
    font-size: 20px;
  }

  .category-card-content span strong {
    color: var(--brand-color);
  }

  .buy-get-free-images {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .plus-sybol p {
    font-size: 40px;
    color: var(--brand-color);
  }

  .buy-one-get-on-free {
    padding: 70px 0;
  }

  .buy-one-get-on-free>.container>h2 {
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
    text-transform: capitalize;
    font-weight: 700;
  }

  /* Highlights Area */

  .hightlights-content-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }

  .single-highlights-item {
    height: 50rem;
    padding: 20px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    background-size: 103% 100%;
    transition: 0.3s;
  }

  .single-highlights-item:hover {
    background-size: 110% 110%;
  }

  .single-highlights-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000057;
    transition: background 0.3s ease;
    z-index: -1;
  }

  .highlights-item-info {
    color: var(--white-color);
    margin: 15rem 0;
  }

  .highlights-item-info h2 {
    font-size: 35px;
    font-weight: 600;
    margin-top: 5px;
  }

  .single-highlights-item a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .single-highlights-item a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
  }

  /* Category Based Product */

  .single-category-based {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
  }

  .single-category-based-left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    text-align: center;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    width: 25%;
  }

  .single-category-based-left a {
    padding: 10px 20px;
    background-color: var(--white-color);
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
  }

  .single-category-based-right {
    width: 75%;
  }

  .single-category-based-right .best-seller-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Brand Logo Slider */

  .brand-logo-slider h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
  }

  .brand-logo-slider {
    padding: 50px 0;
  }

  .brand-slider .swiper-slide {
    text-align: center;
  }

  /*****************************************************/
  /*****************   Footer Area   *******************/
  /*****************************************************/

  /* Newsletter */
  .footer-newsletter {
    background: var(--brand-color);
    padding: 50px 0;
  }

  .newsletter-text {
    color: var(--white-color);
  }

  .footer-newsletter .newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-newsletter h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
  }

  .footer-newsletter p {
    margin: 5px 0 0;
  }

  .newsletter-form-area {
    width: 40%;
  }

  .newsletter-form {
    display: flex;
  }

  .footer-newsletter .newsletter-form input {
    padding: 10px 15px;
    border: 1px solid var(--black-color);
    border-radius: 50px 0 0 50px;
    outline: none;
    width: 90%;
  }

  .footer-newsletter .newsletter-form button {
    padding: 12px 25px;
    border: none;
    background: var(--black-color);
    color: var(--white-color);
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid var(--black-color);
    border-left: none;
  }

  .footer-newsletter .newsletter-form button:hover,
  .footer-newsletter .newsletter-form button:focus {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    border-left: none;
    outline: none;
  }

  #subscribe_msg {
    padding: 5px 0 0 10px;
    display: block;
    color: #fff;
  }

  /* Footer Main */
  .footer-main {
    background: var(--black-color);
    color: var(--white-color);
    padding: 60px 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 100px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-about p {
    margin: 15px 0;
  }

  .footer-social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
  }

  .footer-social a i {
    color: var(--white-color);
    font-size: 25px;
    transition: 0.3s;
  }

  .footer-contact p i {
    color: var(--brand-color);
    font-size: 20px;
  }

  .footer-social a i:hover {
    color: var(--brand-color);
  }

  .footer-about .footer-social ul {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-about .footer-social a {
    margin-right: 10px;
    font-size: 16px;
  }

  .footer-about h2,
  .footer-links h2,
  .footer-contact h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* Footer Links */
  .footer-links ul {
    list-style: none;
    padding: 0;
  }

  .footer-links ul li {
    margin: 10px 0;
  }

  .footer-links ul li a {
    color: var(--white-color);
    transition: 0.3s;
  }

  .footer-links ul li a:hover {
    color: var(--brand-color);
  }

  /* Footer Contact */
  .footer-contact .contact-item {
    margin-bottom: 15px;
    color: var(--white-color);
  }

  .footer-contact .contact-item i {
    font-size: 24px;
    margin-right: 10px;
  }

  .footer-contact h3 {
    margin: 0;
    color: var(--brand-color);
  }

  .footer-contact p {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-contact p a {
    color: var(--white-color);
  }

  .footer-contact p:last-child {
    margin: 0;
  }

  /* Footer Bottom */

  .footer-bottom {
    background: var(--black-color);
    color: var(--white-color);
    border-top: 1px solid #222;
    padding: 15px 0;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-payments img {
    height: 35px;
  }


  /*****************************************************/
  /*****************   Category Page  ******************/
  /*****************************************************/


  .category-product-area {
    padding: 80px 0;
    background-color: #F8F8F8;
  }

  .category-title {
    text-align: center;
    margin-bottom: 50px;
  }

  .category-title h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
  }

  .category-title p {
    width: 75%;
    margin: 10px auto 0;
  }

  .category-filter-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .category-filter-area ul li button {
    padding: 5px 20px;
    border-radius: 35px;
    background: #ccc;
    transition: 0.3s;
  }

  .category-filter-area ul li button:hover,
  .category-filter-area ul li button.active {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .category-product-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }

  .category-info-area {
    padding: 50px 0;
  }

  .category-info-area .container>h2 {
    font-size: 35px;
    text-transform: capitalize;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .category-content-area h1 {
    margin-bottom: 20px;
  }

  .category-content-area h2 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 5px;
  }

  .category-content-area p {
    margin-bottom: 20px;
  }

  .pagination {
    display: block;
    text-align: center;
  }

  .category-product-pagination {
    display: none;
  }

  /* Video Section */

  .video-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 250px 0;
  }

  .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
  }

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

  .video-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 0px 20px;
  }

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

  .video-content p {
    font-size: 1.2rem;
  }

  .video-content a {
    padding: 10px 30px;
    display: block;
    width: fit-content;
    margin-top: 20px;
    background: var(--brand-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
    margin: 20px auto 0;
  }

  .video-content a:hover {
    background: var(--white-color);
    color: var(--black-color);
  }

  /*****************************************************/
  /*****************   Product Page   ******************/
  /*****************************************************/

  .product-gallery-info {
    padding: 50px 0;
  }

  .product-main-content {
    display: flex;
    gap: 50px;
  }

  .product__carousel {
    overflow: hidden;
    width: 500px;
  }

  .product__carousel a {
    display: block;
    margin-bottom: 15px;
  }

  .product__carousel .gallery-top {
    border: 1px solid #ebebeb;
    border-radius: 3px;
    margin-bottom: 5px;
  }

  .product__carousel .gallery-top .swiper-slide {
    position: relative;
  }

  .product__carousel .gallery-top .swiper-slide a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .product__carousel .gallery-top .swiper-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
    min-width: 100%;
    min-height: 100%;
  }

  .product__carousel .swiper-button-next.swiper-button-white,
  .product__carousel .swiper-button-prev.swiper-button-white {
    color: #ff3720;
  }

  .product__carousel .gallery-thumbs .swiper-slide {
    position: relative;
    transition: border .15s linear;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    height: calc(100% - 2px);
  }

  .product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--brand-color);
  }

  .product__carousel .gallery-thumbs .swiper-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
  }

  /* Product Gallery Info */

  .product-info {
    color: #111;
    line-height: 1.6;
    flex: 1;
  }

  .product-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 45px;
  }

  .product-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: #555;
  }

  .ratingsAndReviews {
    margin-bottom: 5px;
  }

  .ratingsAndReviews .ratingInfo {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .ratingsAndReviews .reviews {
    display: flex;
    gap: 10px;
  }

  .ratingsAndReviews .reviews p {
    font-size: 18px;
    font-weight: 500;
  }

  .ratingsAndReviews .reviews a {
    color: var(--black-color);
    transition: 0.3s;
    font-size: 18px;
    font-weight: 500;
  }

  .ratingsAndReviews .reviews a:hover {
    color: var(--brand-color);
  }

  .product-variation {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }

  .pro-var-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .product-variation label {
    font-weight: 600;
    display: flex;
    align-items: center;
  }

  .pro-var-group input[type="radio"] {
    accent-color: red;
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }

  /* product-option-box */

  .product-options-area {
    width: 60%;
  }

  .product-option-box {
    margin-bottom: 10px;
  }

  .product-option-box label {
    font-weight: 500;
  }

  .product-option-box:last-child {
    margin: 0;
  }

  .product-option-box select, .product-option-box input {
    height: auto;
    border-radius: 35px;
    border-width: 1px;
    padding: 9px 20px;
    font-size: 15px;
  }
  .product-option-box select:focus, .product-option-box input:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--brand-color);
  }

 .product-option-box select {
    background-image: url(../images/down-chevron.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 96%;
    appearance: none;
 }

  .product-option-box select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #555;
  }

  .product-current-price {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
    color: var(--brand-color);
  }

  .product-current-price del {
    color: var(--secondary-color);
    font-size: 25px;
    margin-left: 10px;
  }

  .more-quantity-area ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .more-quantity-area ul li button {
    background: transparent;
    color: var(--black-color);
    padding: 5px 10px;
    border-radius: 10px;
    border: 1px solid var(--brand-color);
    transition: 0.3s;
  }

  .more-quantity-area ul li button:hover {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .product-cart {
    display: flex;
    margin: 10px 0;
  }

  .quantity {
    display: flex;
    align-items: center;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 35px;
  }

  .quantity button {
    padding: 0px 15px;
    background: transparent;
    cursor: pointer;
    font-size: 25px;
  }

  .quantity input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
  }

  .add-to-cart {
    background: var(--brand-color);
    color: var(--white-color);
    border: none;
    padding: 12px 30px;
    margin-right: 10px;
    border-radius: 25px;
    font-weight: 700;
    width: 43.5%;
    transition: 0.3s;
  }

  .add-to-cart:hover {
    background: var(--black-color);
  }

  .extra-actions {
    display: flex;
    gap: 10px 20px;
    font-size: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .extra-actions a {
    color: #555;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
  }

  .extra-actions a:hover {
    color: var(--brand-color);
  }

  .extra-actions a i {
    color: var(--brand-color);
    margin-right: 5px;
  }

  .secure-checkout {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
  }

  .secure-checkout p {
    font-weight: bold;
    margin-bottom: 10px;
  }

  .secure-checkout .cards img {
    height: 50px;
    margin: 0 5px;
  }

  .delivery-info {
    margin-bottom: 20px;
  }

  .delivery-info p {
    margin-bottom: 5px;
  }

  .delivery-info p i {
    color: var(--brand-color);
    margin-right: 5px;
  }

  .delivery-info p span {
    font-weight: 500;
  }

  .meta p {
    color: #555;
    margin-bottom: 4px;
    font-size: 14px;
  }

  .meta p span {
    font-weight: 500;
    color: var(--black-color);
  }


  /* Product Tabs */

  .product-tab-nav {
    display: flex;
    border-bottom: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .product-tab-nav li {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    margin-right: 5px;
    background: #f7f7f7;
    border-radius: 5px 5px 0 0;
    font-weight: 500;
  }

  .product-tab-nav li.active {
    background: var(--brand-color);
    color: var(--white-color);
    border-color: var(--brand-color);
  }

  .product-tab-content {
    display: none;
    border: 1px solid #ccc;
    padding: 20px;
    background: #fff;
  }

  .product-tab-content.active {
    display: block;
  }

  #description h2 {
    font-size: 22px;
    line-height: 32px;
    margin-top: 20px;
  }

  #description h2:first-child {
    margin-top: 0;
  }

  #description p {
    margin-top: 15px;
  }

  #description ul li {
    list-style: disc;
    margin-left: 15px;
    margin-top: 10px;
  }

  #description ul li::marker {
    color: var(--brand-color);
  }

  .reviews-list .review-item {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
  }

  .review-avatar {
    width: 5%;
    text-align: center;
  }

  .review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
  }

  .review-content {
    width: 95%;
  }

  .review-content .review-rating {
    color: var(--brand-color);
    margin-bottom: 5px;
    font-size: 25px;
  }

  .review-content .review-author {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .add-review label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 600;
  }

  .add-review input,
  .add-review textarea {
    width: 100%;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  .add-review input[type="checkbox"] {
    width: auto;
  }

  .rating-stars {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: left;
  }

  .rating-stars input {
    width: auto;
  }

  .rating-stars label {
    margin-right: 10px;
    margin-left: 4px;
  }

  .add-review button {
    margin-top: 15px;
    background: var(--brand-color);
    color: var(--white-color);
    padding: 10px 30px;
    border: none;
    cursor: pointer;
  }

  .rating-stars span {
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
    margin-right: 2px;
  }

  .rating-stars span:hover,
  .rating-stars span.active {
    color: #ff9900;
  }


  .rating-stars input[type="radio"] {
    display: none;
  }

  .rating-stars label {
    color: #e4e4e4;
    font-size: 22px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: auto;
    margin: 0 4px;
  }

  .rating-stars input[type="radio"]:checked~label,
  .rating-stars label:hover,
  .rating-stars label:hover~label {
    color: var(--brand-color);
  }

  .product-reviews-content .pagination {
    float: right;
    display: flex;
    align-items: center;
  }

  .product-reviews-content .pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    float: unset !important;
    line-height: 0;
  }

  .pro-policy {
    padding-left: 0;
    margin-bottom: 20px;
  }

  .add-review .captcha>div {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    margin-top: 10px;
  }

  /* Product Featured Image Section */

  .product-featured-section {
    padding-top: 100px;
  }

  .single-product-featured {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 15rem 0;
    position: relative;
    z-index: 1;
  }

  .single-product-featured::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #00000070;
    z-index: -1;
  }

  .single-product-featured .container {
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }

  .single-product-featured:nth-child(even) .container {
    align-items: end;
  }

  .single-product-featured-content {
    width: 50%;
  }

  .single-product-featured-content h2 {
    font-size: 50px;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 10px;
  }

  .single-product-featured-content p {
    font-size: 16px;
    color: var(--white-color);
    font-size: 16px;
    line-height: 26px;
  }

  /* Related Products */

  .related-products-area {
    padding: 70px 0;
  }

  .related-products-slider>h2 {
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .related-products-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
  }

  .related-products-slider .swiper-button-next::after,
  .related-products-slider .swiper-button-prev::after {
    color: var(--brand-color);
  }

  .related-products-slider .swiper-pagination-bullet-active {
    background: var(--brand-color);
  }


  /* Pro Gallery */


  .product-page-gallery {
    display: grid;
    grid-template-columns: 2fr 2fr;
  }

  .pro-right-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .pro-left-image a {
    width: 100%;
    height: 100%;
  }

  .product-page-gallery img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: 0.3s;
  }

  .product-page-gallery img:hover {
    height: 115%;
    width: 115%;
  }

  .pro-right-images img {
    border: 1px solid var(--white-color);
  }


  /* dimensions-area */

  .dimensions-area img {
    width: 100%;
  }

  /* product-info-container */

  .product-tech-info-area {
    background: var(--black-color);
    color: var(--white-color);
    padding: 80px 0;
  }

  .feature-description h1 {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 10px;
  }

  .feature-description h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .feature-description h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .feature-description ul {
    margin-bottom: 10px;
  }

  .feature-description ul li {
    margin-bottom: 10px;
  }

  .feature-description {
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
  }

  .feature-description.expanded {
    max-height: unset !important;
  }

  .read-more-btn {
    color: var(--brand-color);
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    background: transparent;
  }

  .product-info-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 40px;
  }

  .product-features {
    flex: 2;
  }

  .tech-specs {
    flex: 1;
  }

  .tech-specs h2 {
	  text-transform: capitalize;
  }

  .section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
  }

  .feature-description p {
    margin-bottom: 20px;
  }

  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .feature-list li {
    margin-bottom: 10px;
  }

  strong {
    font-weight: bold;
  }

  .tech-specs ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
    gap: 15px;
    text-align: right;
  }

  .tech-specs ul li span {
    text-align: left;
  }

  .tech-specs ul li b {
    text-align: left;
  }

  /* Product Reviews */

  .product-reviews-content {
    padding: 70px 0 0;
  }

  .product-reviews-content .container>h2 {
    text-align: center;
    font-size: 35px;
    color: #000;
    margin-bottom: 50px;
    font-weight: 700;
  }

  /*****************************************************/
  /******************   About Page   *******************/
  /*****************************************************/


  /* New About Start */

  .about-page-content {
    padding: 70px 0 0;
  }

  .about-page-content .sthumb img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 20px 0;
  }

  .about-page-content .whiteShadowBox {
    padding: 20px 0;
  }

  .about-page-content p {
    margin: 10px 0;
  }

  .about-page-content .smallThumb img {
    width: 100%;
  }

  .about-page-content button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 5px;
    padding: 8px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .about-page-content .borderbox {
    margin: 15px 0;
  }

  /* New About End */

  .about-us-banner {
    text-align: center;
    padding: 50px 0;
  }

  .about-us-banner h1 {
    font-size: 40px;
    font-weight: 600;
    margin: 20px 0;
  }

  .about-us-banner img {
    margin-top: 30px;
    border-radius: 10px;
  }

  /* Stats Section */

  .our-stats-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 75%;
    margin: 0 auto;
    gap: 30px;
  }

  .single-stats {
    text-align: center;
  }

  .single-stats span {
    font-size: 35px;
    font-weight: 700;
  }

  /* Mission Section */

  .mission-content-image {
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0px 2px 5px #ccc;
  }

  .mission-content-image .row {
    align-items: center;
  }

  .mission-content-image img {
    border-radius: 10px;
  }

  .mission-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
  }


  /* Features */
  .features-area {
    text-align: center;
    padding: 40px 20px;
  }

  .features-area h2 {
    font-size: 25px;
    margin-bottom: 30px;
    line-height: 35px;
    font-weight: 600;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
  }

  .single-feature i {
    color: var(--brand-color);
    font-size: 25px;
  }

  .single-feature p {
    font-weight: 600;
    margin-top: 10px;
  }

  /* World Content */

  .world-content {
    text-align: center;
    padding: 60px 20px;
  }

  .world-content h1 {
    font-size: 150px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 2px var(--brand-color);
  }

  .world-content h2 {
    font-size: 22px;
    margin-top: 20px;
  }

  .world-content p {
    max-width: 700px;
    margin: 10px auto;
    color: #555;
  }


  /* Stores */
  .stores-area {
    padding: 40px 20px;
    text-align: center;
  }

  .stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .stores-area h2 {
    margin-bottom: 30px;
  }

  /* .stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  } */

  .single-store a {
    font-size: 22px;
    color: var(--black-color);
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 5px;
  }

  .single-store a:hover {
    color: var(--brand-color);
  }

  .single-store img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    height: 300px;
    object-fit: cover;
  }


  /* Contact Page */

  .contact-us-area {
    padding: 70px 10px;
  }

  .contact-header {
    text-align: center;
  }

  .contact-header h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
  }

  .contact-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 40px 0;
    gap: 20px;
  }

  .single-contact-info>i {
    color: var(--brand-color);
    font-size: 25px;
  }

  .single-contact-info h2 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 5px 0;
  }

  .single-contact-info {
    box-shadow: 1px 2px 5px #ccc;
    padding: 20px;
    border-radius: 10px;
  }

  .single-contact-info a {
    color: var(--black-color);
    text-decoration: underline;
    margin-bottom: 5px;
    transition: 0.3s;
  }

  .single-contact-info a:hover {
    color: var(--brand-color);
  }

  .contact-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
  }

  .contact-social a:hover i {
    color: var(--brand-color);
  }

  .contact-form {
    margin-top: 70px;
  }

  .contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
    padding: 10px 15px;
    border-radius: 3px;
    margin-bottom: 20px;
    background: #f1f1f1;
    border-color: transparent;
  }

  .contact-form form input:hover,
  .contact-form form textarea:hover,
  .contact-form form input:focus,
  .contact-form form textarea:focus {
    outline: 1px solid var(--brand-color);
  }

  .contact-captcha {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .single-input-item.contact-captcha>div {
    margin-left: 0;
    padding: 0;
  }

  .single-input-item {
    width: 100%;
  }

  .contact-form form textarea {
    min-height: 200px;
    max-height: 200px;
  }

  .contact-form .form-group {
    display: flex;
    gap: 20px;
  }

  .contact-form form button {
    background: var(--brand-color);
    color: var(--white-color);
    padding: 12px 35px;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    border-radius: 5px;
    width: 100%;
    transition: 0.3s;
  }

  .contact-form form button:hover {
    background: var(--black-color);
  }

  .home-hightlights-area {
    padding: 3px;
  }

  .home-category-based-products {
    padding-top: 70px;
  }

  /*****************************************************/
  /******************   Login Page   *******************/
  /*****************************************************/

  .account-sidebar {
    box-shadow: 0px 0px 10px #cccccc52;
    border-radius: 5px;
    overflow: hidden;
  }

  .catListing.accountList a {
    width: 100%;
    padding: 10px 20px;
    transition: 0.3s;
    color: var(--black-color);
    box-shadow: 0 8px 10px #cccccc36;
  }

  .account-sidebar h2 {
    padding: 15px 20px;
    box-shadow: 0px 0px 3px #ccc;
  }

  .catListing.accountList a:hover,
  .catListing.accountList li.active a {
    background-color: var(--brand-color);
    color: var(--white-color);
  }

  .account-login-box {
    padding: 19px;
    margin-bottom: 20px;
    background-color: var(--white-color);
    border-radius: 4px;
    box-shadow: 0px 0px 10px #cccccc52;
  }

  .accountInformation {
    margin-top: 15px;
  }

  #input-country,
  #input-zone {
    padding: 0 15px !important;
    height: 50px;
  }

  .informationBox ul li {
    margin: 5px 0;
  }

  .login-title {
    padding-bottom: 15px;
  }

  .account-login-box h2 {
    font-size: 25px;
    font-weight: 600;
  }

  .account-login-box p {
    padding: 8px 0;
    font-weight: 500;
  }

  .form-control {
    border-radius: 0;
    padding: 22px 15px;
    border: 2px solid #cccccc61;
    box-shadow: unset;
  }

  .account-login-box input[type="submit"],
  .pull-right input[type="submit"] {
    padding: 10px 45px;
    background: var(--brand-color);
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
    border: none;
  }

  .account-login-box input[type="submit"]:hover,
  .pull-right input[type="submit"]:hover {
    background: var(--black-color);
    color: var(--white-color);
  }

  .register-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .register-form-area {
    box-shadow: 0px 0px 10px #cccccc52;
    border-radius: 5px;
    overflow: hidden;
    padding: 20px;
  }

  .already_account_text {
    padding: 10px 0;
  }

  .already_account_text p {
    padding-bottom: 5px;
  }

  .acccount-section {
    padding: 60px 0 20px;
  }

  .breadcrumb {
    margin: 20px 0;
  }


  .best-seller-title button.active {
    background-color: var(--brand-color);
    color: #fff;
  }


  /* Cart Page */

  .cart-title {
    padding-top: 70px;
  }

  #preCheckout table {
    width: 100%;
  }

  #preCheckout table tr.tableHead td {
    color: #000;
    text-transform: uppercase;
    padding: 0;
    text-align: left;
    padding-left: 22px;
    font-size: 14px;
    font-style: normal;
    height: 50px;
    vertical-align: middle;
    border-bottom: none;
    font-weight: 500;
  }

  #preCheckout table tr {
    border: 1px solid #ccc;
  }

  #preCheckout table tr td {
    padding: 15px;
    font-size: 14px;
    color: #676766;
  }

  #preCheckout table tr td p {
    display: none;
  }

  #preCheckout .text-left button {
    background: transparent;
    margin-left: 10px;
  }

  .cart-coupon-info {
    margin-top: 30px;
  }

  .cart-coupon-info p {
    margin: 10px 0;
  }

  .cartCouponAccordion .panel-heading {
    padding: 15px;
  }

  .qtyValue,
  .qtyValue:focus {
    padding: 2px 10px;
    border-radius: 34px;
    border: 1px solid #ccc;
    width: 70px;
    text-align: center;
    outline: none;
  }

  .cartTotal {
    margin-bottom: 20px;
  }

  .cartAmount {
    display: flex;
    justify-content: right;
    margin-bottom: 5px;
    gap: 6px;
  }

  .cartbtnArea {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cartbtnArea a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-color);
    color: var(--white-color);
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
    width: 100%;
    text-align: center;
  }

  /* .cartbtnArea a:nth-child(1) {
    background-color: var(--secondary-color);
    color: var(--white-color);
  } */

  .cartbtnArea a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }

  /* Checkout */

  div#shipping_method form.hidden {
    display: block !important;
    visibility: visible !important;
  }

  #payment_address label {
    font-size: 15px !important;
  }

  #d_quickcheckout .text-danger {
    font-size: 13px;
    padding-top: 5px;
    line-height: 18px;
  }

  #d_quickcheckout .btn-primary.active {
    background: var(--brand-color) !important;
  }

  .qc-name a {
    color: var(--brand-color) !important;
    text-align: left;
  }

  #d_quickcheckout .btn-danger {
    background-color: var(--brand-color);
    background-image: none;
    border-color: var(--brand-color);
  }

  #d_quickcheckout b,
  #d_quickcheckout strong {
    font-weight: 700;
    color: var(--brand-color);
  }

  #qc_confirm_order {
    background-image: none !important;
    background-color: var(--brand-color) !important;
    border-color: var(--brand-color) !important;
    outline: none;
  }

  .btn.increase,
  .btn.decrease,
  #button_login {
    background-image: none !important;
    background-color: var(--mb-color) !important;
    border-color: var(--mb-color) !important;
  }

  #d_quickcheckout .btn-danger {
    background: red !important;
    border-color: red !important;
  }

  #d_quickcheckout a {
    color: var(--brand-color) !important;
  }

  #remeber_password {
    margin-top: 10px;
  }

  #d_quickcheckout .modal-body {
    padding: 25px;
  }

  #d_quickcheckout #login_view .modal .modal-header .close {
    margin-top: -4px !important;
    opacity: 1 !important;
    color: red;
    font-size: 25px;
  }

  #d_quickcheckout .qc-col-2.col-md-6 {
    display: none;
  }

  #d_quickcheckout .qc-col-3.col-md-6 {
    max-width: 100%;
    width: 100%;
  }

  .mobile-account-menu-toggle {
    display: none;
  }

  #d_quickcheckout #login_view .modal .modal-dialog {
    max-width: 350px !important;
    margin-left: auto;
    margin-right: auto;
    margin-top: 61px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  #d_quickcheckout form#login_form label {
    font-size: 14px;
  }

  .modal-content form#login_form input {
    padding: 10px 15px !important;
    border-radius: 3px !important;
    background: #f1f1f1 !important;
    border-color: transparent !important;
    box-shadow: none !important;
    font-size: 14px !important;
  }

  .modal-content form#login_form button {
    background: var(--brand-color) !important;
    border: none !important;
    font-size: 16px;
    outline: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .modal-content a#remeber_password i {
    display: none;
  }

  #d_quickcheckout form#login_form label.control-label.hidden-lg {
    display: none !important;
  }

  .success-btn a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--brand-color) !important;
    color: var(--white-color) !important;
    font-weight: 600;
    border-radius: 5px;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 30px;
  }

  .place-order-content {
    text-align: center;
    padding: 30px 0 0;
  }

  .place-order-content i {
    font-size: 100px;
    color: var(--brand-color);
  }


  .place-order-content p:nth-child(2) {
    font-size: 28px;
    margin: 10px 0;
    font-weight: 500;
  }

  /* cart design */

  .cits-shopping-cart-layout .container {
    display: flex;
    gap: 30px;
    max-width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }

  .cits-shopping-tab-area {
    text-align: center;
    margin-bottom: 30px;
  }

  .cits-cart-left {
    flex-grow: 1;
  }

  .cits-cart-right {
    width: 380px;
    min-width: 380px;
    padding: 22px 25px 30px;
    background: #f9f9f9;
    border-radius: 8px;
  }

  .order-summary-top {
    padding-bottom: 18px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 18px;
  }

  .cits-cart-right .cartAmount {
    justify-content: space-between;
  }

  .cits-shopping-tab-area ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .cits-shopping-tab-area ul li a,
  .cits-shopping-tab-area ul li p {
    color: var(--black-color);
    background: var(--white-color);
    border: 1px solid #ebebeb;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    height: 60px;
    width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    transition: 0.3s;
  }

  .cits-shopping-tab-area ul li span {
    position: relative;
  }

  .cits-shopping-tab-area ul li span span {
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    width: 50px;
    color: #191919;
    opacity: .15;
    transform: translateY(-50%) translateX(-15px);
  }

  .cits-shopping-tab-area ul li a:hover,
  .cits-shopping-tab-area ul li a.active {
    background: var(--brand-color);
    color: var(--white-color);
  }

  .cits-shopping-tab-area ul li:last-child a {
    pointer-events: none;
  }

  .cits-cart-right-payment-image {
    border: 1px solid var(--brand-color);
    border-radius: 7px;
    margin-top: 30px;
  }

  .cits-cart-right-payment-image img {
    border-radius: 7px;
  }

  .cartCouponArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
  }

  .single-coupon-item .input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .single-coupon-item input {
    min-width: 350px;
  }

  .single-coupon-item .input-group-btn input {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 35px;
    text-transform: uppercase;
    transition: 0.3s;
    text-align: center;
    font-size: 16px;
    border: none;
  }

  .single-coupon-item .input-group-btn input:hover {
    background-color: var(--brand-color);
  }

  .add-review p {
    display: none;
  }