* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #111827;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

:root {
    --orange: #f5a400;
    --orange-dark: #e99400;
    --black: #101820;
    --gray: #68717b;
    --light: #f8f9fb;
    --border: #e8e8e8;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

.section-padding {
    padding: 80px 0;
}

/* NAVBAR */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #eee;
}

.nav-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    white-space: nowrap;
}

.logo-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--orange);
    border-radius: 7px;
}

.dot {
    color: var(--orange);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    padding: 30px 0;
    transition: .3s;
}

.nav-link i {
    font-size: 10px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-box {
    width: 245px;
    height: 42px;
    padding: 0 14px;
    background: #f6f7f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 12px;
}

.search-box i {
    font-size: 18px;
}

.nav-icon {
    position: relative;
    background: transparent;
    font-size: 21px;
}

.notification span {
    position: absolute;
    top: -7px;
    right: -8px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--orange);
    color: white;
    font-size: 9px;
    font-weight: 700;
}

.menu-btn {
    display: none;
    background: transparent;
    font-size: 25px;
}

/* HERO */

.hero {
    background: #fcf7ef;
    overflow: hidden;
}

.hero-container {
    min-height: 500px;
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
}

.hero-content {
    padding: 60px 0;
    z-index: 3;
}

.small-label {
    display: inline-block;
    padding: 6px 12px;
    background: #fff1d7;
    color: #ed9700;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: clamp(45px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    max-width: 470px;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 25px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--orange);
    color: white;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.primary-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.customers {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.customer-images {
    display: flex;
}

.customer-images img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    margin-left: -7px;
}

.customer-images img:first-child {
    margin-left: 0;
}

.customers strong {
    display: block;
    font-size: 14px;
}

.customers span {
    display: block;
    color: #777;
    font-size: 11px;
}

/* Hero Image */

.hero-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(252, 247, 239, .8),
            transparent 35%);
}

.hero-info-card {
    position: absolute;
    z-index: 5;
    right: 25px;
    bottom: 20px;
    width: 220px;
    background: white;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.info-icon.orange {
    color: #ed9700;
    background: #fff2db;
}

.info-icon.green {
    color: #20ad68;
    background: #e9f8ef;
}

.info-icon.purple {
    color: #7d48e4;
    background: #f0eaff;
}

.info-item strong {
    display: block;
    font-size: 11px;
}

.info-item span {
    display: block;
    color: #777;
    font-size: 9px;
}

/* FEATURES */

.features {
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-right: 1px solid #e4e4e4;
}

.feature:last-child {
    border: 0;
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 19px;
}

.orange-bg {
    background: #fff3df;
    color: #ed9700;
}

.blue-bg {
    background: #edf4ff;
    color: #246bd8;
}

.green-bg {
    background: #eaf8f0;
    color: #15a86a;
}

.purple-bg {
    background: #f0eaff;
    color: #7544dd;
}

.feature h4 {
    font-size: 13px;
}

.feature p {
    color: #777;
    font-size: 10px;
}

/* HEADINGS */

.section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.section-heading h2 {
    font-size: 27px;
    margin-bottom: 5px;
}

.section-heading p {
    color: #737981;
    font-size: 12px;
}

.heading-line {
    display: block;
    width: 28px;
    height: 3px;
    margin: 0 auto 7px;
    background: var(--orange);
    border-radius: 10px;
}

/* CATEGORY */

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.category-card {
    height: 125px;
    padding: 18px;
    border-radius: 11px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: .3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.electronics {
    background: #f0f5fc;
}

.fashion {
    background: #fff0ed;
}

.home {
    background: #eff7ec;
}

.beauty {
    background: #f9effb;
}

.accessories {
    background: #fff7eb;
}

.category-card div {
    position: relative;
    z-index: 2;
}

.category-card h3 {
    font-size: 13px;
}

.category-card p {
    color: #68717b;
    font-size: 10px;
}

.category-card img {
    position: absolute;
    right: 3px;
    bottom: 0;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    transition: .3s;
}

.category-card:hover img {
    transform: scale(1.08);
}

/* DEAL */

.deal-section {
    padding-bottom: 80px;
}

.deal-wrapper {
    min-height: 320px;
    padding: 35px 50px;
    background: #fafafa;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 35% 35% 30%;
    align-items: center;
    overflow: hidden;
}

.deal-label {
    display: inline-block;
    padding: 6px 10px;
    background: #fff0df;
    color: #ed8d00;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
}

.deal-content h2 {
    font-size: 26px;
    margin-top: 12px;
}

.deal-content p {
    color: #777;
    font-size: 12px;
    margin: 5px 0 15px;
}

.price-area {
    margin-bottom: 15px;
}

.price-area strong {
    color: #e66d00;
    font-size: 23px;
}

.price-area del {
    margin-left: 8px;
    color: #888;
    font-size: 13px;
}

.deal-image {
    display: flex;
    justify-content: center;
}

.deal-image img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.countdown {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.time-box {
    width: 65px;
    height: 70px;
    background: #f1f1f1;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.time-box strong {
    color: #e86f00;
    font-size: 23px;
}

.time-box span {
    color: #666;
    font-size: 9px;
}

/* PRODUCTS */

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-heading.left {
    text-align: left;
}

.section-heading.left .heading-line {
    margin-left: 0;
}

.view-all {
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 35px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: .3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.product-image {
    height: 245px;
    background: #f7f7f7;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.product-card:hover .product-image>img {
    transform: scale(1.06);
}

.sale-badge,
.new-badge {
    position: absolute;
    z-index: 3;
    left: 12px;
    top: 12px;
    padding: 5px 8px;
    border-radius: 5px;
    color: white;
    font-size: 9px;
    font-weight: 700;
}

.sale-badge {
    background: #ef5c3e;
}

.new-badge {
    background: var(--orange);
}

.wishlist {
    position: absolute;
    z-index: 3;
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    font-size: 16px;
}

.wishlist:hover {
    color: var(--orange);
}

.quick-btn {
    position: absolute;
    z-index: 3;
    bottom: -45px;
    left: 15px;
    right: 15px;
    height: 36px;
    border-radius: 6px;
    background: var(--black);
    color: white;
    font-size: 11px;
    transition: .3s;
}

.product-card:hover .quick-btn {
    bottom: 12px;
}

.product-info {
    padding: 17px;
}

.product-category {
    color: #999;
    font-size: 10px;
}

.product-info h3 {
    font-size: 14px;
    margin: 4px 0;
}

.rating {
    color: #f5a000;
    font-size: 12px;
}

.rating span {
    color: #999;
    font-size: 10px;
}

.product-bottom {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-bottom strong {
    font-size: 15px;
}

.product-bottom del {
    color: #999;
    font-size: 10px;
}

.cart-btn {
    width: 35px;
    height: 35px;
    border-radius: 7px;
    color: var(--orange);
    background: #fff3dc;
}

.cart-btn:hover {
    color: white;
    background: var(--orange);
}

/* PROMO */

.promo-section {
    padding-bottom: 80px;
}

.promo {
    min-height: 270px;
    padding: 30px 70px;
    border-radius: 15px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.promo-content {
    color: white;
}

.promo-content>span {
    font-size: 10px;
    font-weight: 700;
}

.promo-content h2 {
    font-size: 34px;
    line-height: 1.2;
    margin: 8px 0;
}

.promo-content h2 strong {
    display: block;
}

.promo-content p {
    font-size: 12px;
    margin-bottom: 20px;
}

.white-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--black);
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
}

.promo-image img {
    width: 330px;
    height: 230px;
    object-fit: cover;
    border-radius: 15px;
}

/* ABOUT */

.about-section {
    padding: 80px 0;
    background: #fafafa;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image>img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 15px;
}

.experience-card {
    position: absolute;
    right: -20px;
    bottom: 25px;
    padding: 20px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.experience-card strong {
    display: block;
    color: var(--orange);
    font-size: 27px;
}

.experience-card span {
    color: #666;
    font-size: 10px;
}

.about-content h2 {
    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 17px;
}

.about-content h2 span {
    color: var(--orange);
}

.about-content>p {
    color: #6c737b;
    font-size: 13px;
    line-height: 1.8;
}

.about-list {
    margin: 20px 0 25px;
}

.about-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 10px 0;
    font-size: 12px;
}

.about-list i {
    color: #20a968;
}

/* TESTIMONIAL */

.testimonial-section {
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    position: relative;
    padding: 28px;
    border: 1px solid #ececec;
    border-radius: 13px;
    transition: .3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .07);
}

.quote {
    position: absolute;
    right: 22px;
    top: 18px;
    color: #eee;
    font-size: 45px;
}

.testimonial-card>p {
    color: #626970;
    font-size: 12px;
    line-height: 1.8;
    margin: 12px 0 20px;
}

.customer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.customer strong {
    display: block;
    font-size: 11px;
}

.customer span {
    color: #999;
    font-size: 9px;
}

/* NEWSLETTER */

.newsletter {
    padding-bottom: 80px;
}

.newsletter-box {
    padding: 45px 55px;
    background: #fff8ec;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-box h2 {
    font-size: 26px;
}

.newsletter-box p {
    color: #777;
    font-size: 11px;
}

.newsletter-form {
    min-width: 400px;
    height: 50px;
    padding: 5px;
    background: white;
    border-radius: 8px;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 15px;
    font-size: 11px;
}

.newsletter-form button {
    padding: 0 18px;
    background: var(--orange);
    color: white;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

/* FOOTER */

.footer {
    padding-top: 65px;
    background: #101820;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-logo {
    color: white;
    margin-bottom: 18px;
}

.footer-brand>p {
    max-width: 280px;
    color: #a6abb1;
    font-size: 11px;
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.socials a {
    width: 33px;
    height: 33px;
    border: 1px solid #394049;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ddd;
}

.socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-column>a {
    display: block;
    color: #a7adb4;
    font-size: 11px;
    margin-bottom: 11px;
}

.footer-column>a:hover {
    color: var(--orange);
}

.contact-column p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #a7adb4;
    font-size: 11px;
    margin-bottom: 13px;
}

.contact-column i {
    color: var(--orange);
}

.footer-bottom {
    min-height: 65px;
    border-top: 1px solid #293139;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
    color: #858c94;
    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

/* TABLET */

@media(max-width:1000px) {

    .navbar {
        gap: 15px;
    }

    .search-box {
        width: 170px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .customers {
        justify-content: center;
    }

    .hero-image {
        height: 430px;
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .deal-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .countdown {
        grid-column: span 2;
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .newsletter-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* MOBILE */

@media(max-width:700px) {

    .container {
        width: 92%;
    }

    .nav-container {
        height: 70px;
    }

    .navbar {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 15px 5%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .3s;
    }

    .navbar.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding: 12px 0;
    }

    .nav-link.active::after {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .search-box {
        display: none;
    }

    .nav-icon {
        font-size: 19px;
    }

    .hero-content {
        padding: 55px 0 25px;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-image {
        height: 320px;
    }

    .hero-info-card {
        right: 5px;
        bottom: 10px;
        width: 190px;
        padding: 14px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature {
        justify-content: flex-start;
        border: 0;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-card {
        height: 115px;
    }

    .category-card img {
        width: 85px;
        height: 85px;
    }

    .deal-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }

    .deal-image {
        order: -1;
    }

    .deal-image img {
        width: 230px;
        height: 190px;
    }

    .countdown {
        grid-column: auto;
        margin-top: 20px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .promo {
        padding: 35px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-image {
        align-self: center;
        margin-top: 20px;
    }

    .promo-image img {
        width: 260px;
        height: 190px;
    }

    .about-image>img {
        height: 300px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-box {
        padding: 30px 22px;
    }

    .newsletter-form {
        min-width: 0;
        height: auto;
        flex-direction: column;
        gap: 8px;
        background: transparent;
    }

    .newsletter-form input {
        height: 48px;
        background: white;
        border-radius: 7px;
    }

    .newsletter-form button {
        height: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        padding: 20px 0;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }
}

/* SMALL MOBILE */

@media(max-width:420px) {

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 230px;
    }

    .hero h1 {
        font-size: 38px;
    }

}