* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
}

/*------- reusable ------*/
.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

a {
    text-decoration: none;
    color: #555;
}

ul {
    list-style-type: none;
}

hr {
    border: none;
    background: #b5b5b5;
    height: 1px;
    margin: 20px 0;
}

p,
small {
    color: #555;
}

h4 {
    color: #555;
    font-weight: normal;
}

.btn {
    display: inline-block;
    background: #fa9f00;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}

.btn:hover {
    background: #563434;
}

.bx {
    vertical-align: middle;
    cursor: pointer;
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.title {
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color: #555;
}

.title::after {
    content: '';
    background: #fa9f00;
    width: 80px;
    height: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.col-2 {
    flex-basis: 50%;
    min-width: 300px;
}

.col-2 h1 {
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
}

.col-2 img {
    max-width: 100%;
    padding: 50px 0;
    filter: drop-shadow(8px 8px 15px black);
}

.col-4 {
    flex-basis: 25%;
    padding: 10px;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}

.col-4:hover {
    transform: translateY(-5px);
}

.col-4 img {
    width: 100%;
    border-radius: 1rem 1rem 0 0;
}

.col-4 p {
    font-size: 18px;
    font-weight: 500;
}



/*------- header ------*/

header {
    background: radial-gradient(#fff, #cbcbcb);
}

.navbar {
    display: flex;
    align-items: center;
    padding: 20px;
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    display: inline-block;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

.menu-icon {
    width: 28px;
    margin-left: 20px;
    display: none;
}

/*------- featured categories ------*/
.categories {
    margin: 30px 0;
    text-align: center;
    overflow: scroll;
}

.categories-list {
    display: inline-flex;
}

.categories-list li {
    padding: .2rem 1rem;
    margin: .5rem;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
    border-radius: 20px;
    color: #555;
    width: max-content;
    cursor: pointer;
    transition: background .5s;
}

.categories-list li:hover {
    background: #555;
    color: #fff;
}

.categories::-webkit-scrollbar {
    display: none;
}


/*------- featured ads ------*/
.purchase-body {
    background: #fff;
    padding: 1rem;
    border-radius: .7rem .7rem 1rem 1rem;
    position: relative;
    top: -1rem;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.purchase-body del {
    color: #ff0000;
    font-size: 14px;
}

.fav-btn {
    margin: 10px 0;
    padding: 4px 15px;
    background: #fff;
    color: #fa9f00;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
}

.cart-btn {
    margin: 10px 0;
    padding: 4px 15px;
    background: #fa9f00;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%)
}

/*------- offer ------*/
.offer {
    background: radial-gradient(#fff, #cbcbcb);
    margin-top: 80px;
    padding: 30px 0;
}

.offer .offer-img {
    padding: 50px;
}

/*------- footer ------*/
footer {
    background: #000;
    color: #8a8a8a;
    font-size: 14px;
    padding: 60px 0 20px;
}

footer h3 {
    color: #fff;
    margin-bottom: 20px;
}

footer p {
    color: #8a8a8a;
}

footer li a {
    color: #8a8a8a;
}

footer .app-logo {
    margin-top: 20px;
}

footer .app-logo img {
    width: 140px;
}

footer li {
    transition: transform 0.5s;
}

footer li:hover {
    transform: translateX(5px);
}

footer li a:hover {
    color: #fff;
}

footer .copyright {
    text-align: center;
}

.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-col-1 {
    flex-basis: 30%;
}

.footer-col-2 {
    flex: 1;
    text-align: center;
}

.footer-col-2 img {
    width: 180px;
    margin-bottom: 20px;
}

.footer-col-3,
.footer-col-4 {
    flex-basis: 12%;
    text-align: center;
}


/*------- all ads ------*/
.row-2 {
    justify-content: space-between;
    margin: 100px auto 50px;
}

.row-2 select {
    padding: 5px;
    border-radius: 5px;
}

.page-btn {
    margin: 0 auto 80px;
    width: fit-content;
    background: #563434;
    border-radius: 20px;
    padding: 5px;
}

.page-btn span {
    display: inline-block;
    border-radius: 50%;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    color: #fa9f00;
}

.page-btn span:hover {
    background: #fa9f00;
    color: #fff;
}

/*------- contact ------*/
.centre-container {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 70px;
}

.centre-container .row {
    width: 100%;
    max-width: 820px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgb(0 0 0 / 10%);
    margin-top: 30px;
    align-items: normal;
}

.centre-container .contact-info,
.about-info {
    padding: 2.3rem 2.2rem;
}

.contact-title {
    color: #fa9f00;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.icon {
    font-size: 28px;
    margin-right: 0.7rem;
    color: #fa9f00;
}

.contact-info .social-media {
    padding: 2rem 0 0 0;
}

.social-icons {
    margin-top: 0.5rem;
}


.social-icons a {
    font-size: 25px;
    padding: 3px 8px;
    border-radius: 8px;
    background: #fa9f00;
    color: #fff;
    text-align: center;
    margin-right: 0.5rem;
}

.social-icons a i {
    transition: transform 0.3s;
}

.social-icons a:hover i {
    transform: scale(1.2);
}

.centre-container .contact-form {
    background: #fa9f00;
    border-radius: 10px;
    min-height: -webkit-fill-available;
}

.contact-form form {
    padding: 2.3rem 2.2rem;
}

.contact-form .contact-title {
    color: #fff;
}

.input-container {
    margin: 1rem 0;
}

.input-container .input {
    width: 100%;
    outline: none;
    border: 2px solid #fafafa;
    background: none;
    padding: 0.6rem 1.2rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: 0.3s;
}

.input-container .input::placeholder {
    color: #fff;
}

.textarea .input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 22px;
    resize: none;
    overflow-y: auto;
}

.contact-form .btn {
    margin: 15px 0;
    background: #fff;
    color: #fa9f00;
    border: 2px solid #fafafa;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form .btn:hover {
    background: transparent;
    color: #fff;
}

/*------- about ------*/
#about,
#location-div {
    padding-bottom: 0;
    min-height: auto;
}

.about-info .contact-title {
    margin: 0 0 15px;
    font-size: 38px;
}

.about-info h3 {
    color: #333;
}

#about .row {
    align-items: center;
    height: fit-content;
}

.about-img {
    text-align: center;
}

.about-img img {
    filter: none;
}

#location-div .row {
    justify-content: left;
    padding: 1.8rem;
}

#location-div iframe {
    height: 250px;
    width: 100%;
    border-radius: 5px;
}


/*------- account-page ------*/

.account-page img {
    transform: scaleX(-1);
}

.account-page .row {
    margin: 0;
    padding-bottom: 30px;
}

.form-container {
    background: #fff;
    width: 300px;
    height: 400px;
    position: relative;
    text-align: center;
    padding: 20px 0;
    margin: auto;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.form-container span {
    font-weight: bold;
    padding: 0 10px;
    color: #555;
    cursor: pointer;
    width: 100px;
    display: inline-block;
}

.form-btn {
    display: inline-block;
}

.form-container form {
    max-width: 300px;
    padding: 0 20px;
    position: absolute;
    top: 130px;
    transition: transform 1s;
}

.form-container form input {
    width: 100%;
    height: 30px;
    margin: 10px 0;
    padding: 0 10px;
    border: 1px solid #ccc;
}

.form-container form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    margin: 10px 0;
}


.form-container form .btn:focus {
    outline: none;
}


#LoginForm {
    left: -300px;
}

#RegForm {
    left: 0;
}

.form-container form a {
    font-size: 12px;
}

#Indicator {
    width: 100px;
    border: none;
    background: #fa9f00;
    height: 3px;
    margin-top: 8px;
    transform: translateX(100px);
    transition: transform 1s;
}

/*------- cart-page ------*/
.cart-page {
    margin: 80px auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 5px;
    color: #fff;
    background: #fa9f00;
    font-weight: normal;
}

td {
    padding: 10px 5px;
}

td:last-child,
th:last-child {
    text-align: right;
}

.cart-info {
    display: flex;
    flex-wrap: wrap;
}

td img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

td a {
    color: #fa9f00;
    font-size: 12px;
}

.total-price {
    display: flex;
    justify-content: flex-end;
}

.total-price table {
    border-top: 3px solid #fa9f00;
    width: 100%;
    max-width: 400px;
}

/*------- single-product ------*/
.single-product {
    margin-top: 80px;
}

.single-product .col-2 {
    padding: 20px;
}

.single-product .col-2 img {
    padding: 0;
    filter: none;
}

.small-img-row {
    display: flex;
    justify-content: space-between;
}

.small-img-col {
    flex-basis: 24%;
    cursor: pointer;
}

.single-product .fa {
    color: #fa9f00;
    margin-left: 10px;
}


/*------- coming-soon ------*/
.coming-soon {
    height: 100vh;
    max-width: 100%;
    text-align: center;
    display: flex;
    background: #fa9f00;
}

.coming-soon .small-container {
    background: #fff;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 20%);
    border-radius: 25px;
    padding: 50px 100px;
}

.coming-soon .social-media {
    padding: 2rem 0 0 0;
}

.coming-soon .btn {
    background: #fff;
    color: #fa9f00;
    border: 2px solid #fa9f00;
    box-shadow: inset 0 0 5px 0 #fa9f00;
}

.coming-soon .btn:hover {
    background: #fa9f00;
    color: #fff;
}


/*------- go-top-btn ------*/
.go-top-btn {
    position: fixed;
    width: 40px;
    height: 40px;
    background: #fa9f00;
    color: #fff;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    font-size: 35px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.go-top-btn.active {
    visibility: visible;
    opacity: 1;
}


/*     Callout    */

.callout {
    position: fixed;
    bottom: 35px;
    right: 20px;
    margin-left: 20px;
    max-width: 300px;
}

.callout-header {
    padding: 15px;
    background: #fa9f00;
    font-size: 30px;
    color: white;
}

.callout-container {
    padding: 10px;
    background-color: #e9eef4;
    color: black
}

.closebtn {
    position: absolute;
    top: 5px;
    right: 15px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.closebtn:hover {
    color: lightgrey;
}



/*------- media query for menu icon ------*/
@media only screen and (max-width:800px) {
    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        background: #333;
        width: 100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }

    nav ul li {
        display: block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    nav ul li a {
        color: #fff;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
    }


}

/*------- media query for less than 600 screen size ------*/
@media only screen and (max-width:600px) {
    .row {
        text-align: center;
    }

    .header .row {
        margin-top: 70px;
    }

    .col-2,
    .col-3,
    .col-4 {
        flex-basis: 100%;
    }

    .row-2 {
        margin: 50px auto 25px;
    }

    .cart-info p {
        display: none;
    }

    .single-product .row {
        text-align: left;
    }


    .single-product h1 {
        font-size: 26px;
        line-height: 32px;
    }

    .single-product .col-2 {
        padding: 20px 0;
    }

    #about p {
        text-align: justify;
    }

    .callout-header{
        padding: 5px;
        font-size: 15px;
    }
    .closebtn{
        top: -5px;
    }
    .callout-container{
        padding: 5px;
        font-size: 12px;
    }
}