
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}
html{
    overflow-x:hidden;
}
body{
    background: #EE3F00;
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
}
body a{
    text-decoration: none;
}
.container-head {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
}
.header{
    background:#fff;
}
.nav{
    display: flex;
    justify-content: space-between;
    flex-wrap:nowrap;
}
.nav-items{
    display: flex;
    align-items: center;
}
/* Reset list */
.nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Navbar container */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Navigation links */
.nav-items a,
.nav-btns a {
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}
.nav-items a img {
    width: 100%;
    height: 70px;
    object-fit: scale-down;
}

/* Demo Button */
.nav-btns .btn {
    background: #F6CF82;
    color: #EE3F00;
    padding: 19px 13px !important;
    border-radius: 5px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}


.lang {
    font-weight: 600;
}
/* Dropdown Container */
.nav-items  ul li.dropdown {
    position: relative;
}

/* Dropdown Menu */
.nav-items ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* right below parent */
    left: 0;
    background: #EE3F00;
    border-radius: 5px;
    min-width: 180px;
    z-index: 10;
    flex-direction: column;
}

/* Dropdown Menu Items */
.nav-items ul li.dropdown .dropdown-menu li {
    width: 100%;
}

.nav-items ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-items ul li.dropdown .dropdown-menu li a:hover {
    background: #F6CF82;
    color: #fff;
}


.nav-items ul li.dropdown:hover .dropdown-menu {
    display: flex;
    gap: 5px !important;
}
.nav-btns  ul li.dropdown {
    position: relative;
}

/* Dropdown Menu */
.nav-btns ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* right below parent */
    left: 0;
    background: #EE3F00;
    border-radius: 5px;
    min-width: 180px;
    z-index: 10;
    flex-direction: column;
}

/* Dropdown Menu Items */
.nav-btns ul li.dropdown .dropdown-menu li {
    width: 100%;
}

.nav-btns ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #fff;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-btns ul li.dropdown .dropdown-menu li a:hover {
    background: #F6CF82;
    color: #fff;
}


.nav-btns ul li.dropdown:hover .dropdown-menu {
    display: flex;
    gap: 5px !important;
}
.nav {
    gap: 15px;
}

.nav-btns ul {
    gap: 15px;
}

.nav-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 400px;
    min-width: 400px;
}

.nav-search-form input,
.nav-search-form select {
    height: 38px;
    font-size: 13px;
    padding: 6px 10px;
}

.nav-search-form .search-keyword {
    width: 170px;
}

.nav-search-form .search-zip {
    width: 80px;
}

.nav-search-form .search-radius {
    width: 105px;
}

.nav-search-form button {
    height: 38px;
    width: 38px;
    padding: 0 !important;
}
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: start;
    animation: heroSlider 18s infinite;
    z-index: 1;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Your gradient overlay */
    background: linear-gradient(
        280deg,
        rgba(241, 128, 68, 0.0) -2.56%,
        #F18044 100.81%
    );

    z-index: 2;
    pointer-events: none;
}
.hero > * {
    position: relative;
    z-index: 3;
}

@keyframes heroSlider {
    0% { background-image: url("../images/slider-1.png"); }
    12.5% { background-image: url("../images/slider-2.png"); }
    25% { background-image: url("../images/slider-3.png"); }
    37.5% { background-image: url("../images/slider-4.png"); }
    50% { background-image: url("../images/slider-5.png"); }
    62.5% { background-image: url("../images/slider-6.png"); }
    75% { background-image: url("../images/slider-7.png"); }
    87.5% { background-image: url("../images/slider-8.png"); }
    100% { background-image: url("../images/slider-1.png"); }
}
.hero span {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 20px;
}

.hero h1 {
    font-size: 84px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
}
.hero h1 span{
    position: relative;
    font-size: 84px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
    text-transform: capitalize;
}
.hero h1 span img{
   position: absolute;
    top: 72px;
    left: 167px;
}

.hero p {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-top: 50px;
}
.btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.demo-btn {
    background: #F6CF82;
    color: #000;
}

.demo-btn:hover {
    background: #e6ac00;
}

.trial-btn {
    background: #f1f1f1;
    color: #000;
}

.trial-btn:hover {
    background: #e2e2e2;
}

.play-icon {
    font-size: 14px;
    color: #EE3F00 !important; 
}


.about{
       background: linear-gradient(180deg, #EE4001 0%, #F3A56C 100%);
        display: flex;
        padding:80px 0px;
}
.about-con{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 150px;
    padding-right: 150px;
}
.about-con h2{
    color: #fff;
    font-size: 42.25px;
    font-style: normal;
    font-weight: 700;
    line-height: 39.67px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.about-con p{
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 0 0 20px;
}
.about-con .btn{
    color: #FFF;
    text-align: center;
    font-size: 16.126px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.576px;
    text-transform: capitalize;
    padding: 12.899px 46.031px 12.101px 45.969px;
    border-radius: 12.094px;
    background: #F6CF82;
    text-decoration: none;
    width: 180px;
}
.services{
    padding: 100px 0px;
    background: #fff;
}
.services span{
    color: #EE3F00;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}
.services h1{
        color: #EE3F00;
    font-size: 53.9px;
    font-style: normal;
    font-weight: 600;
    line-height: 63.82px;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    padding: 0 0 40px;
}

.service-card{
    border-radius: 10px;
    background: #fff;
    padding: 20px 20px 30px;
    transition: all 0.4s linear;
    cursor: pointer;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
   
}
.service-img{
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card:hover{
    border-radius: 10px;
    box-shadow: 0 6px 44px 0 rgba(0, 0, 0, 0.45);
}
/*.service-card img{*/
/*    width: 266px;*/
/*    height: 269px;*/
/*}*/
.service-card h2{
        color: #fff;
    font-size: 26.2px;
    font-style: normal;
    font-weight: 700;
    line-height: 34.01px;
    text-transform: capitalize;
    padding: 20px 0 0;
}
.service-card p{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
.service-card span{
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}
.categories{
    padding: 100px 0px;
    background: linear-gradient(180deg, #EE4001 0%, #F3A56C 100%);
}
.categories span{
       color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    padding: 0 0 10px;
}
.categories .inner{
    display: flex;
    justify-content: space-between;
}
.categories h1{
        color: #fff;
    font-size: 53.9px;
    font-style: normal;
    font-weight: 600;
    line-height: 63.82px;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    padding: 0 0 40px;
}
.categories h3{
    color: #fff;
    text-align: right;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28.662px;
    letter-spacing: -0.269px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: capitalize;
}
.categories .category{
    position: relative;
    margin: 0 0 30px;
    
}
.categories .category .main {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    height:560px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.categories .category .main .inner-main{
    padding: 0px 30px;
}
.categories .category .main .inner-main .inner-main-scroll{
        height: 170px;
    overflow-y: auto;
    margin-bottom: 10px;
}

 .categories .category .main .inner-main h4 {
    color: #010305;
    font-size: 26.2px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.01px;
    text-transform: capitalize;
}
 .categories .category .main .inner-main p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}
 .categories .category .main .inner-main ul.dual-btn {
    padding: 0;
    margin: 0;
}
.categories .category .main .inner-main ul.dual-btn a:first-child {
    color: #FFF;
    text-align: center;
    font-size: 16.126px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.576px;
    text-transform: capitalize;
    border-radius: 12.094px;
    background: #EE3F00;
    padding: 12.899px 87.031px 12.101px 87.969px;
    text-decoration: none;
    margin-right: 20px;
}
.categories .category .main i:nth-child(2) {
    color: #FFFFFF;
    background: #EE3F00;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
    width: 56.969px;
    height: 56.969px;
    border-radius: 50px;
    padding: 18px 16px;
    font-size: 24px;
    position: relative;
    left: 330px;
    top: -30px;
}
.categories  .category .main .inner-main ul.dual-btn a:last-child {
    border-radius: 12.094px;
    background: #EE3F00;
    padding: 12px 17px;
    color: #fff;
}
.categories .category .main .inner-main ul.dual-btn a:last-child i {
    transform: rotate(45deg);
}
.sale{
        padding-left: 300px;
   background: linear-gradient(180deg, #F3A56C 0%, #EE4001 100%);
}
.sale span{
 color: #000;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    padding: 0 0 10px;
}

.sale .sale-bx{
    display: flex;
    justify-content: space-between;
}
.sale h1{
        color: #000;
    font-size: 53.9px;
    font-style: normal;
    font-weight: 600;
    line-height: 63.82px;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    padding: 0 0 40px;
}
.sale .category{
    position: relative;
    margin: 0 0 30px;
}
.sale .category .main {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    height: 600px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.sale .category .main img{
    width: 380px;
    position: relative;
}
.sale .category .main .inner-main{
    padding: 0 20px 20px;
}

 .sale .category .main .inner-main h4 {
    color: #010305;
    font-size: 26.2px;
    font-style: normal;
    font-weight: 600;
    line-height: 34.01px;
    text-transform: capitalize;
}
 .sale .category .main .inner-main p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding: 0 0 40px;
}
 .sale .category .main .inner-main ul.dual-btn {
    padding: 0;
    margin: 0;
}
.sale .category .main .inner-main ul.dual-btn a:first-child {
    color: #FFF;
    text-align: center;
    font-size: 16.126px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.576px;
    text-transform: capitalize;
    border-radius: 12.094px;
    border: 1.008px solid #EE3F00;
    background: #EE3F00;
    padding: 13px 76px ;
    text-decoration: none;
    margin-right: 20px;
}
.sale .category .main i:nth-child(2) {
    color: #FFFFFF;
    background: #EE3F00;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.25));
    width: 56.969px;
    height: 56.969px;
    border-radius: 50px;
    padding: 18px 16px;
    font-size: 24px;
    position: absolute;
    right: 70px;
    top: 250px;
}
.sale  .category .main .inner-main ul.dual-btn a:last-child {
    border-radius: 12.094px;
    border: 1.008px solid #EE3F00;
    background: #EE3F00;
    padding: 12px 17px;
    color: #fff;
}
.sale .category .main .inner-main ul.dual-btn a:last-child i {
    transform: rotate(45deg);
}
.arrow-bx{
    padding-right: 250px;
}
.effort{
    padding: 150px 0;
   background: linear-gradient(180deg, #EE4001 0%, #F3A56C 100%);
}
.effort h1{
    color: #fff;
    text-align: center;
    font-size: 40.315px;
    font-style: normal;
    font-weight: 600;
    line-height: 48.378px;
    margin: 0 0 60px;
}
.effort-card{
    border-radius: 16.126px;
    border: 1.008px solid #FF6D05;
    background: linear-gradient(216deg, #FC0 -3.53%, rgba(255, 204, 0, 0.00) 89.56%), #FEFEFE;
    box-shadow: 0 12.094px 16.126px -4.031px rgba(0, 0, 0, 0.20);
    padding: 30px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: self-start;
}
.effort-card  img {
    margin: 0 0 20px;
}
.effort-card h2{
    color: #1E1E1E;
    font-size: 24.189px;
    font-style: normal;
    font-weight: 600;
    line-height: 33.865px;
}
.newsletter-row {
    padding: 100px 0;
    background: linear-gradient(180deg, #F3A56C 0%, #EE4001 100%);
}
.newsletter-sec {
    text-align: center;
    position:relative;
}

.newsletter-sec h2 {
    color: #1E1E1E;
    text-align: center;
    font-size: 39.62px;
    font-style: normal;
    font-weight: 700;
    line-height: 45.239px;
    text-transform: capitalize;
    width: 50%;
    margin: 0 auto 20px;
    position: relative;
}
.newsletter-sec p {
    color: #1E1E1E;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: -0.72px;
    text-transform: capitalize;
}
.newsletter-sec form {
    position: relative;
    max-width: 900px;
    margin: auto;
}
/*.newsletter-sec input[type="email"] {*/
/*    width: 80%;*/
/*    height: 70px;*/
/*    padding: 0 80px 0 25px;*/
/*    font-size: 18px;*/
/*    border-radius: 10px;*/
/*    border: 1px solid #000;*/
/*    background: #e9e9e9;*/
/*    outline: none;*/
/*    box-shadow: 0 6px 0 #000;*/
/*    margin: 0 auto;*/
/*}*/
/*.newsletter-sec button {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 110px;*/
/*    transform: translateY(-50%);*/
/*    height: 50px;*/
/*    width: 60px;*/
/*    border: none;*/
/*    border-radius: 4px;*/
/*    background: #EE3F00;*/
/*    color: #fff;*/
/*    font-size: 20px;*/
/*    cursor: pointer;*/
/*    transition: 0.3s ease;*/
/*    padding: 0 50px 0 30px;*/
/*}*/
.form-container {
  max-width: 650px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-family: Arial, sans-serif;
}

/* INLINE layout */
.form-group.inline {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-group.inline label {
     width: 106px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.form-group.inline input,
.form-group.inline textarea {
  flex: 1;
}

/* Row for Product + Category */
.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

/* Inputs */
input,
textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  
}

input:focus,
textarea:focus {
  border-color: #EE3F00;
  box-shadow: 0 0 0 2px rgba(22,163,74,0.2);
}

/* Button */
.btn-submit {
  width: 100%;
  padding: 12px;
  background: #EE3F00;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.btn-submit:hover {
  background: #15803d;
}
select {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  width: 100%;
  background: #fff;
  cursor: pointer;
}

select:focus {
  border-color: #EE3F00;
  box-shadow: 0 0 0 2px rgba(22,163,74,0.2);
}

/* Responsive */
@media (max-width: 600px) {
  .form-group.inline {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-group.inline label {
    width: 100%;
    margin-bottom: 5px;
  }

  .form-row {
    flex-direction: column;
  }
}
footer#footer-row {
    background: #EE3F00;
    padding: 50px 100px 60px;
}
footer#footer-row .footer-sec img {
    width: 100%;
}
footer#footer-row .footer-sec ul.link-flex {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: end;
}
footer#footer-row .footer-sec ul.link-flex li {
    list-style: none;
    margin-left: 50px;
}
footer#footer-row .footer-sec ul.link-flex li a {
    color: #FFF;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    letter-spacing: -0.19px;
    text-transform: capitalize;
    text-decoration: none;
}
footer#footer-row .social-icons {
    margin-top: 100px;
    border-top: 1px solid #ffffff3b;
    padding-top: 50px;
}
footer#footer-row .social-icons ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}
footer#footer-row .social-icons ul li {
    list-style: none;
    margin-left: 20px;
}
footer#footer-row .social-icons ul li i {
    color: #fff;
    font-size: 24px;
}
div#copyright-row {
    padding: 50px 100px 30px;
    background: #fff;
}
div#copyright-row .copy-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
div#copyright-row .copy-sec p {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 6.3px;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
}
section#contact-row {
    padding: 100px 0;
    background: #DEFFFC;
}
section#contact-row .contact-sec h2 {
    color: #1E1E1E;
    text-align: center;
    font-family: Outfit;
    font-size: 51.62px;
    font-style: normal;
    font-weight: 700;
    line-height: 65.239px;
    text-transform: capitalize;
    margin: 0 0 50px;
}
section#contact-row .contact-sec input {
    width: 70%;
    height: 70px;
    padding: 0 0 0 25px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #000;
    background: #e9e9e9;
    outline: none;
    box-shadow: 0 6px 0 #000;
    margin: 0 auto 40px;
    display: block;
}

section#contact-row .contact-sec textarea {
    width: 70%;
    height: 140px;
    padding: 0 0 0 25px;
    font-size: 18px;
    border-radius: 10px;
    border: 1px solid #000;
    background: #e9e9e9;
    outline: none;
    box-shadow: 0 6px 0 #000;
    margin: 0 auto 40px;
    display: block;
}

section#contact-row .contact-sec form button {
    border-radius: 12.094px;
    border: 1.008px solid #FF6D05;
    background: #FF6D05;
    padding: 12.899px 94.031px 12.101px 94.969px;
    color: #FFF;
    text-align: center;
    font-family: Outfit;
    font-size: 16.126px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.576px;
    text-transform: capitalize;
    display: table;
    margin: 0 auto;
}
.modal-content {
    border-radius: 1.5rem;
}

.modal-body {
    padding: 1.8rem;
    position: relative;
}

div#staticBackdrop .btn-close {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #EE3F00;
    border: none;
    right: -10px;
    top: -10px;
    font-size: 20px;
    opacity: 1;
    padding: 0;
    color: white;
}

div#staticBackdrop h3.title {
    margin-bottom: 15px;
    color: #1E1E1E;
    font-family: Outfit, sans-serif;
    font-size: 43px;
    font-weight: 600;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    text-align: center;
    padding-bottom: 10px;
}

div#staticBackdrop .form_field {
    margin-bottom: 12px;
}

div#staticBackdrop .c_field {
    background: transparent !important;
    width: 100%;
    min-height: 55px;
    border-radius: 30px;
    border: 1px solid #EE3F00;
    font-size: 14px;
    padding: 10px 20px;
    font-family: Outfit, sans-serif;
}

div#staticBackdrop button.clr-btn {
    display: block;
    padding: 14px 70px;
    border-radius: 30px;
    background: #EE3F00;
    border: none;
    width: 100%;
    color: #FFF;
    font-family: Outfit, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

/* Subscribe Button */
.subscribe-trigger {
    background: #EE3F00;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
}

.subscribe-trigger:hover {
    color: #fff;
}
.form-control:focus {
      box-shadow: none;
      border-color: #EE3F00;
    }
.sign-page{
    background:white;
    padding:50px 0px
}
.card{
    border-radius:20px;
    border:2px solid #EE3F00
}
.btn-lg{
    margin:0 auto;
    background:#EE3F00;
    padding:15px 30px;
}
.btn-lg:hover{
    background:transparent;
    border:1px solid #EE3F00;
    color:#EE3F00;
}
/*.loan-hero {*/
/*    background-image: url("../images/loan-banner.png");*/
/*    background-size: cover;          */
/*    background-position: center;    */
/*    background-repeat: no-repeat;    */
/*    padding: 170px 0;                */
/*    text-align: start;              */
/*}*/
.loan-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 0;
    text-align: start;
    animation: heroSlider 18s infinite;
    z-index: 1;
    overflow: hidden;
}
.loan-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Your gradient overlay */
    background: 
    linear-gradient(
        280deg,
        rgba(255, 255, 255, 0.00) -2.56%,
        #F4F41E 100.81%
    );

    z-index: 2;
    pointer-events: none;
}
.loan-hero > * {
    position: relative;
    z-index: 3;
}
.loan-hero h1{
    font-size: 84px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
        display: flex;
    align-items: center;
    gap: 20px;
}
.loan-sec-1{
    padding: 80px 0px;
    background: #fff;
    position: relative;
}
.loan-bx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.loan-sec-1 img{
    border-radius: 25px;
}
.loan-sec-1 h1{
    color: #F4F41E;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}
.loan-sec-1 p{
    font-size: 18px;
}
.loan-sec-1 img {
    border-radius: 25px;
    display: flex;
    margin: 0 auto;
}
.radial{
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 650px;
}
.radial-1{
    position: absolute;
    top: -20%;
    right: -20%;
    width: 650px;
}
.loan-sec-2{
    background: linear-gradient(180deg, #F4F41E 0%, #A7A700 100%);
    padding: 80px 0px;
}
.loan-sec-2 h1{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 70px;
}
.loan-box{
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 190px;
}
.loan-box .num{
    background: #fff;
    padding: 20px;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 40px;
    color: #000;
    border: 4px solid #000;
    display: flex;
    align-items: center;
}
.loan-box .bx-back{
    display: flex;
    flex-direction: column;
}
.loan-box .bx-back h3{
    font-size: 30px;
    color: #000;
}
.loan-box .bx-back p{
    font-size: 18px;
    color: #000;
}

/*.trade-hero {*/
/*    background-image: url("../images/banner-bg.jpg");*/
/*    background-size: cover;          */
/*    background-position: center;    */
/*    background-repeat: no-repeat;    */
/*    padding: 170px 0;                */
/*    text-align: start;              */
/*}*/
.trade-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 0;
    text-align: start;
    animation: heroSlider 18s infinite;
    z-index: 1;
    overflow: hidden;
}
.trade-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Your gradient overlay */
    background: 
    linear-gradient(
        280deg,
        rgba(255, 255, 255, 0.00) -2.56%,
        #129615 100.81%
    );

    z-index: 2;
    pointer-events: none;
}
.trade-hero > * {
    position: relative;
    z-index: 3;
}


.trade-hero h1{
    font-size: 84px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
        display: flex;
    align-items: center;
    gap: 20px;
}
.trade-sec-1{
    padding: 80px 0px;
    background: #fff;
    position: relative;
}
.trade-bx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.trade-sec-1 img{
    border-radius: 25px;
}
.trade-sec-1 h1{
    color: #015621;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}
.trade-sec-1 p{
    font-size: 18px;
}
.trade-sec-1 img {
    border-radius: 25px;
    display: flex;
    margin: 0 auto;
}
.radial{
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 650px;
}
.radial-1{
    position: absolute;
    top: -20%;
    right: -20%;
    width: 650px;
}
.trade-sec-2{
    background: linear-gradient(180deg, #9FDB14 0%, #129615 100%);
    padding: 80px 0px;
}
.trade-sec-2 h1{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 70px;
}
.trade-box{
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 190px;
}
.trade-box .num{
    background: #fff;
    padding: 20px;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 40px;
    color: #000;
    border: 4px solid #000;
    display: flex;
    align-items: center;
}
.trade-box .bx-back{
    display: flex;
    flex-direction: column;
}
.trade-box .bx-back h3{
    font-size: 30px;
    color: #000;
}
.trade-box .bx-back p{
    font-size: 18px;
    color: #000;
}


/*.wanted-hero {*/
/*    background-image: url("../images/wanted-banner.png");*/
/*    background-size: cover;          */
/*    background-position: center;    */
/*    background-repeat: no-repeat;    */
/*    padding: 170px 0;                */
/*    text-align: start;              */
/*}*/
.wanted-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 0;
    text-align: start;
    animation: heroSlider 18s infinite;
    z-index: 1;
    overflow: hidden;
}
.wanted-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Your gradient overlay */
    background: 
    linear-gradient(
        280deg,
        rgba(255, 255, 255, 0.00) -2.56%,
        #A80606 100.81%
    );

    z-index: 2;
    pointer-events: none;
}
.wanted-hero > * {
    position: relative;
    z-index: 3;
}
.wanted-hero h1{
    font-size: 84px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
        display: flex;
    align-items: center;
    gap: 20px;
}
.wanted-sec-1{
    padding: 80px 0px;
    background: #fff;
    position: relative;
}
.wanted-bx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wanted-sec-1 img{
    border-radius: 25px;
}
.wanted-sec-1 h1{
    color: #B10A0A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}
.wanted-sec-1 p{
    font-size: 18px;
}
.wanted-sec-1 img {
    border-radius: 25px;
    display: flex;
    margin: 0 auto;
}
.radial{
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 650px;
}
.radial-1{
    position: absolute;
    top: -20%;
    right: -20%;
    width: 650px;
}
.wanted-sec-2{
    background: linear-gradient(180deg, #D61010 0%, #680404 100%);
    padding: 80px 0px;
}
.wanted-sec-2 h1{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 70px;
    color: white;
}
.wanted-box{
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 190px;
}
.wanted-box .num{
    background: #fff;
    padding: 20px;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 40px;
    color: #000;
    border: 4px solid #000;
    display: flex;
    align-items: center;
}
.wanted-box .bx-back{
    display: flex;
    flex-direction: column;
}
.wanted-box .bx-back h3{
    font-size: 30px;
    color: #000;
}
.wanted-box .bx-back p{
    font-size: 18px;
    color: #000;
}


/*.sale-hero {*/
/*    background-image: url("../images/sale-banner.png");*/
/*    background-size: cover;          */
/*    background-position: center;    */
/*    background-repeat: no-repeat;    */
/*    padding: 170px 0;                */
/*    text-align: start;              */
/*}*/
.sale-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 0;
    text-align: start;
    animation: heroSlider 18s infinite;
    z-index: 1;
    overflow: hidden;
}
.sale-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Your gradient overlay */
    background: 
    linear-gradient(
        280deg,
        rgba(255, 255, 255, 0.00) -2.56%,
        #8AD5FF 100.81%
    );

    z-index: 2;
    pointer-events: none;
}
.sale-hero > * {
    position: relative;
    z-index: 3;
}

.sale-hero h1{
    font-size: 84px;
    font-weight: 700;
    margin: 20px 0;
    color: #fff;
        display: flex;
    align-items: center;
    gap: 20px;
}
.sale-sec-1{
    padding: 80px 0px;
    background: #fff;
    position: relative;
}
.sale-bx{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sale-sec-1 img{
    border-radius: 25px;
}
.sale-sec-1 h1{
    color: #2A8BC1;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}
.sale-sec-1 p{
    font-size: 18px;
}
.sale-sec-1 img {
    border-radius: 25px;
    display: flex;
    margin: 0 auto;
}
.radial{
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 650px;
}
.radial-1{
    position: absolute;
    top: -20%;
    right: -20%;
    width: 650px;
}
.sale-sec-2{
    background: linear-gradient(180deg, #8AD5FF 0%, #2A8BC1 100%);
    padding: 80px 0px;
}
.sale-sec-2 h1{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 70px;
}
.sale-box{
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    height: 190px;
}
.sale-box .num{
    background: #fff;
    padding: 20px;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    font-size: 40px;
    color: #000;
    border: 4px solid #000;
    display: flex;
    align-items: center;
}
.sale-box .bx-back{
    display: flex;
    flex-direction: column;
}
.sale-box .bx-back h3{
    font-size: 30px;
    color: #000;
}
.sale-box .bx-back p{
    font-size: 18px;
    color: #000;
}
.video-modal{
  display:none;
  position:fixed;
  z-index:9999;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
}

.video-content{
  position:relative;
  width:70%;
  max-width:800px;
}

.video-content iframe{
  width:100%;
  height:450px;
}

.close-video{
  position:absolute;
  top:-30px;
  right:0;
  font-size:30px;
  color:#fff;
  cursor:pointer;
}
.product-btns{
    display:flex;
    padding-left:0px;
    gap:20px
}
.product-btns a{
        display: flex;
        color:#fff;
    width: 50%;
    align-items: center;
    justify-content: center;
    
    border: none;
    font-size: 16.126px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.576px;
    text-transform: capitalize;
    border-radius: 12.094px;
    padding: 12px;
}
.single-loan{
    padding:60px 0px;
    background:#fff;
}
.single-loan-con{
    display:flex;
    gap:50px;
    align-items:center;
    justify-content:space-between;
}
.single-loan img{
    width:600px;
    height:455px;
    object-fit:cover;
}
.single-con{
    display: flex;
    flex-direction: column;
    width: 800px;
}
.slider-card {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: slideFade 8s infinite;
}

/* 4 images ÃƒÂ¢Ã¢â‚¬Â Ã¢â‚¬â„¢ 2s delay each */
.slide-img:nth-child(1) { animation-delay: 0s; }
.slide-img:nth-child(2) { animation-delay: 2s; }
.slide-img:nth-child(3) { animation-delay: 4s; }
.slide-img:nth-child(4) { animation-delay: 6s; }

@keyframes slideFade {
    0% { opacity: 0; }
    10% { opacity: 1; }   /* fade in */
    35% { opacity: 1; }   /* visible */
    50% { opacity: 0; }   /* fade out */
    100% { opacity: 0; }
}
* Button style */
  .trade-link {
    display: inline-block;
    background: #015621;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    cursor: pointer;
    width: 200px;
    text-align: center;
    border-radius: 4px;
  }

  /* Modal styles */
  .modal {
    display: none; /* hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.6);
  }

.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;

    max-height: 85vh;   /* Limits modal height */
    overflow-y: auto;   /* Enables vertical scroll */
}

  .close {
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }

  .image-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
  }

  .image-item {
    text-align: center;
    flex: 1;
    margin: 0 10px;
  }

  .image-item img {
    width: 100%;
    max-width: 150px;
    border-radius: 6px;
  }

  .submit-btn {
    display: block;
    background: #015621;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 auto;
  }
  .loan-slider {
    width: 100%;
}

.main-img img {
    width: 600px;
    height: 455px;
    object-fit: cover;
    border-radius: 10px;
}
.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
}

.thumbs img:hover {
    border-color: #c5c509;
}
/*seller inbox */
.inbox-page {
    background: linear-gradient(180deg, #8AD5FF 0%, #2A8BC1 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.inbox-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 20px;
}

/* LEFT */
.inbox-left {
    width: 30%;
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    height: 650px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.user-card {
    background: #f4fbff;
    border: 1px solid #e1f0ff;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.user-card:hover {
    background: #eaf6ff;
    transform: scale(1.02);
}

/* RIGHT */
.inbox-right {
    width: 70%;
    background: #fff;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 650px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.chat-header {
    background: #2A8BC1;
    color: #fff;
    padding: 15px;
    font-weight: bold;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.chat-box {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8fcff;
}

.msg {
    margin: 6px 0;
}

.msg span {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 70%;
}

.me {
    text-align: right;
}

.me span {
    background: #2A8BC1;
    color: #fff;
}

.them {
    text-align: left;
}

.them span {
    background: #eee;
    color: #000;
}

/* INPUT */
.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.chat-input button {
    background: #2A8BC1;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 8px;
    cursor: pointer;
}
/* ===== CHAT SCROLLBAR ===== */
.chat-box::-webkit-scrollbar,
.inbox-left::-webkit-scrollbar {
    width: 8px;
}

/* track */
.chat-box::-webkit-scrollbar-track,
.inbox-left::-webkit-scrollbar-track {
    background: #e6f4ff;
    border-radius: 10px;
}

/* thumb (blue part) */
.chat-box::-webkit-scrollbar-thumb,
.inbox-left::-webkit-scrollbar-thumb {
    background: #2A8BC1;
    border-radius: 10px;
}

/* hover effect */
.chat-box::-webkit-scrollbar-thumb:hover,
.inbox-left::-webkit-scrollbar-thumb:hover {
    background: #1f6f9c;
}
.trade-overlay {
    position: relative;
    overflow: hidden;
}

/* ================= RIBBON STYLE ================= */
.ribbon {
    position: absolute;
    top: 12px;
    left: -35px;
    z-index: 10;
    transform: rotate(-45deg);
}

.ribbon span {
    display: block;
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    margin-top: 15px;
}

/* TRADED ribbon */
.ribbon-traded span {
    background: linear-gradient(135deg, #28a745, #1e7e34);
}

/* optional: shadow overlay */
.trade-overlay.traded::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
  padding-left: 0px;
  margin-bottom:20px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  cursor: pointer;
}

.form-check label {
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}
.product_img {
    width: 412px;
    height: 308px;
    object-fit: cover;
    border-radius: 10px;
}
.category .main img{
    width:412px;
    height:260px;
    border-radius:10px;
        object-fit: cover;
}

/* Modal container with new names */
.collapse-modal {
  position: fixed;
  bottom: 20px; /* Stay at the bottom */
  left: 20px;  /* Stay at the left */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  animation: collapseUpDown 2s ease-in-out infinite; /* Animation for up/down motion */
   z-index:99;
}

/* Modal content styling with new names */
.collapse-modal-content {
  background-color: #fff;
    color: #000000;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  border:2px solid #000;
 
}
.collapse-modal-btn:hover{
    color:white;
}

/* Button Styling with new names */
.collapse-modal-btn {
  margin-top: 10px; /* Adds space between the content and the button */
  width: 100%;
  padding: 10px 20px;
  background-color: #ee3f00;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
 
}


/* Animation for modal sliding up and down with a new name */
@keyframes collapseUpDown {
  0% {
    transform: translateY(0); /* Start at original position */
  }
  50% {
    transform: translateY(-10px); /* Move a little up */
  }
  100% {
    transform: translateY(0); /* Return to original position */
  }
}


/* Position the icons at the bottom-right */
.icon-links {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  display: flex;
  flex-direction: column;
  gap: 10px; /* Space between the two icons */
  animation: slideUpDown 2s ease-in-out infinite; /* Animation for up/down motion */
  z-index:99;
}

/* Styling for the icon links */
.icon-link {
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition */
}
.icon-link img{
    width: 70px;
    height: 70px;
}

.icon-link:hover {
  transform: scale(1.1); 
}

@keyframes slideUpDown {
  0% {
    transform: translateY(0); 
  }
  50% {
    transform: translateY(-10px); 
  }
  100% {
    transform: translateY(0); 
  }
}
.footer-logo-flash{
    animation: logoFlash 1.2s infinite ease-in-out;
}

@keyframes logoFlash{
    0%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:.45;
        transform:scale(1.08);
    }

    100%{
        opacity:1;
        transform:scale(1);
    }
}

 .wishlist-section {
      width: 90%;
      max-width: 1050px;
      margin: 40px auto;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 5px;
      padding: 25px 40px;
    }

    .wishlist-table {
      width: 100%;
      border-collapse: collapse;
    }

    .wishlist-table th {
      text-align: left;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 18px 0;
      color: #111827;
      border-bottom: 1px solid #ddd;
    }

    .wishlist-table td {
      padding: 25px 0;
      border-bottom: 1px solid #eee;
      vertical-align: middle;
      font-size: 13px;
    }

    .check-col {
      width: 35px;
    }

    .product-info {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .product-info img {
      width: 45px;
      height: 55px;
      object-fit: contain;
    }

    .product-name {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .sku {
      font-size: 11px;
      color: #6b7280;
    }

    .qty-box {
      display: flex;
      width: 65px;
      height: 28px;
      border: 1px solid #e5e7eb;
    }

    .qty-box button,
    .qty-box span {
      width: 33.33%;
      border: none;
      background: #fff;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6b7280;
    }

    .qty-box button {
      cursor: pointer;
    }

    .old-price {
      color: #6b7280;
      text-decoration: line-through;
      margin-right: 6px;
    }

    .sale-price {
      color: #ef4444;
    }

    .stock {
      color: #198754;
      font-size: 13px;
    }

    .action-wrap {
      text-align: right;
    }

    .actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 5px;
    }

    .icon-btn {
      width: 28px;
      height: 28px;
      border: 1px solid #333;
      background: #fff;
      cursor: pointer;
      font-size: 13px;
    }

    .cart-btn {
      height: 30px;
      padding: 0 22px;
      border: none;
      background: #111827;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      cursor: pointer;
      text-transform: uppercase;
    }

    .added-date {
      display: block;
      margin-top: 8px;
      font-size: 9px;
      color: #9ca3af;
      text-align: right;
    }

    .heading {
      width: 90%;
      max-width: 1050px;
      margin: 20px auto;
      font-size: 26px;
      font-weight: 800;
      color: #031024;
    }

    @media (max-width: 768px) {
      .wishlist-section {
        padding: 15px;
        overflow-x: auto;
      }

      .wishlist-table {
        min-width: 850px;
      }
    }
.icon-btn{
    width:32px;
    height:30px;
    border:1px solid #333;
    background:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.icon-btn i{
    font-size:13px;
}

.icon-btn:hover{
    background:#111827;
    color:#fff;
}
.search-product-card {
    cursor: pointer;
    transition: 0.3s ease;
}

.search-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.dn-popup-wrap{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,.75);
z-index:999999;

display:flex;
justify-content:center;
align-items:center;

animation:fadeIn .4s;
}

.dn-popup{

width:650px;
background:#fff;
padding:40px;
border-radius:25px;
text-align:center;

border:5px solid #EE3F00;

box-shadow:
0 25px 60px rgba(0,0,0,.35);

animation:popupScale .5s;
}

.dn-logo{
width:170px;
margin-bottom:20px;
}

.dn-mascot{
font-size:45px;
margin-bottom:10px;

animation:bounce 1s infinite;
}

.dn-popup h2{
color:#EE3F00;
font-size:35px;
font-weight:700;
margin-bottom:15px;
}

.dn-popup h4{
margin-bottom:20px;
}

.dn-popup p{
font-size:18px;
line-height:1.8;
margin-bottom:15px;
}

.dn-popup h5{
margin:20px 0;
font-weight:700;
}

#continueBtn{

background:#EE3F00;
color:#fff;

padding:15px 45px;

border:none;
border-radius:50px;

font-size:18px;
font-weight:600;
}

#continueBtn:hover{
background:#d93600;
}

@keyframes popupScale{

0%{
transform:scale(.6);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

@keyframes fadeIn{

from{
opacity:0;
}

to{
opacity:1;
}

}

@keyframes bounce{

0%,100%{
transform:translateY(0)
}

50%{
transform:translateY(-10px)
}

}

.read-more-btn{
    display:inline-block;
    margin-top:5px;
    color:#2A8BC1;
    font-weight:600;
    cursor:pointer;
    font-size:13px;
}

.read-more-btn:hover{
    text-decoration:underline;
}
span.desc-text {
      color: #000;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: 26px;
      padding: 0 0 40px;
      text-transform:none !important;
}

span.desc-full {
      color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    padding: 0 0 40px;
  text-transform:none !important;
}
.want-news{
    background:#ECEDE8;
    overflow:hidden;
}
.want-header{
    width:100%;
}
.want-wrapper {
    position: relative;
    width: 370px;
    margin: 0 auto;
}

.want-main {
    width: 100%;
    display: block;
}

.want-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}
.want-img-text {
    position: absolute;
    bottom: 0px;
    left: 28px;
    display: flex;
    justify-content: space-between;
    width: 86%;
}
.want-img-text h2{
    font-size:18px;
    color:#fff;
}
.want-img-text p{
    font-size:15px;
    color:#fff;
}
.want-bottom{
    width:100%;
}
.want-para{
    background:#272425;
    padding:10px;
    font-size:16px;
    color:#fff;
        margin: 10px 23px;
}
.sale-1{
    width:250px; height:123px;
}
.rather-1{
    width:250px; height:194px;
}
.loan-1{
    width:250px; height:164px;
}
.wanted-1{
    width:250px; height:141px;
}
.menu-toggle{
    display:none;
    border:none;
    background:none;
    font-size:28px;
    cursor:pointer;
}