/* =========================================================
   APNA DUKAN HEADER
========================================================= */

:root {
    --ad-orange: #ff6b00;
    --ad-orange-2: #ff572f;
    --ad-orange-soft: #fff0e8;

    --ad-dark: #101a32;
    --ad-text: #17213a;
    --ad-muted: #747985;

    --ad-border: #e8e8e8;

    --ad-white: #ffffff;
}


/* =========================================================
   GLOBAL
========================================================= */

.ad-header,
.ad-header * {
    box-sizing: border-box;
}

.ad-header {
    width: 100%;
    position: relative;
    z-index: 9999;

    background: #fff;

    font-family: inherit;
}

.ad-header a {
    text-decoration: none;
}

.ad-header button {
    font-family: inherit;
}


/* =========================================================
   TOP HEADER
========================================================= */

.ad-top-header {
    width: 100%;
    height: 64px;

    background: #fff;

    border-bottom: 1px solid #eeeeee;
}

.ad-top-header .container {
    height: 100%;
}

.ad-header-row {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   LOGO
========================================================= */

.ad-logo-area {
    width: 185px;
    min-width: 185px;

    display: flex;
    align-items: center;
}

.ad-logo {
    display: inline-flex;
    align-items: center;
}

.ad-logo img {
    display: block;

    width: auto;
    max-width: 175px;
    max-height: 54px;

    object-fit: contain;
}


/* =========================================================
   SEARCH
========================================================= */

.ad-search-box {
    position: relative;

    flex: 1;

    height: 40px;

    border: 1px solid #dedede;

    border-radius: 10px;

    background: #fff;
}

.ad-search-box input {
    width: 100%;
    height: 100%;

    padding: 0 52px 0 16px;

    border: 0;
    outline: none;

    border-radius: 10px;

    background: transparent;

    color: #222;

    font-size: 12px;
}

.ad-search-box input::placeholder {
    color: #8c9098;
}

.ad-search-button {
    position: absolute;

    top: 3px;
    right: 3px;

    width: 34px;
    height: 32px;

    padding: 0;

    border: 0;

    border-radius: 8px;

    background: var(--ad-orange);

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .2s ease;
}

.ad-search-button:hover {
    background: var(--ad-orange-2);
}

.ad-search-button .mdi {
    font-size: 19px;
}


/* =========================================================
   SEARCH SUGGESTIONS
========================================================= */

#suggestionsBox {
    position: absolute;

    top: calc(100% + 5px);
    left: 0;

    width: 100%;

    background: #fff;

    border: 1px solid #eeeeee;

    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0,0,0,.12);

    overflow: hidden;

    z-index: 100000;
}


/* =========================================================
   DELIVERY
========================================================= */

.ad-delivery-box {
    min-width: 135px;

    display: flex;
    align-items: center;

    gap: 2px;

    cursor: pointer;
}

.ad-location-icon {
    width: 28px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-location-icon .mdi {
    color: #ff4e3b;
    font-size: 23px;
}

.ad-location-content {
    min-width: 70px;

    display: flex;
    flex-direction: column;
}

.ad-delivery-label {
    font-size: 12px;
    line-height: 12px;

    color: #252525;

    font-weight: 500;
}

.ad-pincode {
    display: block;

    max-width: 82px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    font-size: 11px;

    color: var(--ad-text);

    font-weight: 600;
}

.ad-location-arrow {
    font-size: 14px;

    color: #555;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.ad-action-link {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--ad-text);

    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;

    transition: color .2s ease;
}

.ad-action-link:hover {
    color: var(--ad-orange);
}

.ad-action-link > i {
    font-size: 23px;
}


/* =========================================================
   WISHLIST
========================================================= */

.ad-wishlist-link {
    min-width: 73px;
}

.ad-wishlist-link i {
    font-size: 23px;
}


/* =========================================================
   CART
========================================================= */

.ad-cart-link {
    min-width: 54px;
}

.ad-cart-icon {
    position: relative;

    width: 30px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-cart-icon > i {
    font-size: 24px;
}

.ad-cart-count {
    position: absolute;

    top: -5px;
    right: -4px;

    min-width: 15px;
    height: 15px;

    padding: 0 3px;

    border-radius: 50%;

    background: var(--ad-orange);

    color: #fff;

    border: 1px solid #fff;

    font-size: 8px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   ACCOUNT
========================================================= */

.ad-account-button {
    min-width: 125px;
    height: 38px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border-radius: 9px;

    color: #fff !important;

    background: linear-gradient(
        90deg,
        #ff8b00,
        #ff572f
    );

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;

    box-shadow: 0 4px 12px rgba(255,107,0,.15);

    transition: all .2s ease;
}

.ad-account-button:hover {
    transform: translateY(-1px);

    box-shadow: 0 6px 18px rgba(255,107,0,.25);
}

.ad-account-button i {
    font-size: 20px;
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.ad-navigation-wrapper {
    width: 100%;
    padding: 5px 0;
    background: #fff;
}

.ad-navigation-wrapper .container {
    height: 100%;
}

.ad-navigation-row {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   CATEGORY BUTTON
========================================================= */

.ad-category-wrapper {
    position: relative;

    height: 100%;

    flex-shrink: 0;
}

.ad-category-button {
    width: 155px;
    height: 34px;

    padding: 0 12px;

    border: 0;

    border-radius: 8px;

    background: var(--ad-orange-soft);

    color: var(--ad-text);

    display: flex;
    align-items: center;
    justify-content: space-between;

    cursor: pointer;

    font-size: 11px;
    font-weight: 600;

    transition: all .2s ease;
}

.ad-category-button:hover,
.ad-category-button.open {
    background: #ffe1d1;

    color: var(--ad-orange);
}

.ad-category-left {
    display: flex;
    align-items: center;

    gap: 8px;
}

.ad-category-left > i {
    font-size: 19px;
}

.ad-category-arrow {
    font-size: 15px;

    transition: transform .2s ease;
}

.ad-category-button.open .ad-category-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   CATEGORY DROPDOWN
========================================================= */

.ad-category-dropdown {
    position: absolute;

    top: 46px;
    left: 0;

    width: 760px;
    min-height: 420px;

    background: #fff;

    border: 1px solid #ededed;

    border-radius: 0 0 10px 10px;

    box-shadow: 0 15px 40px rgba(0,0,0,.14);

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;

    overflow: hidden;
}

.ad-category-dropdown.open {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================================
   DROPDOWN INNER
========================================================= */

.ad-category-dropdown-inner {
    display: flex;

    min-height: 420px;
}


/* =========================================================
   CATEGORY LIST
========================================================= */

.ad-category-list {
    width: 235px;
    flex-shrink: 0;

    padding: 12px 0;

    background: #fafafa;

    border-right: 1px solid #eeeeee;
}

.ad-category-item {
    min-height: 39px;

    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #313746;

    font-size: 11px;
    font-weight: 500;

    transition: all .15s ease;
}

.ad-category-item > span {
    display: flex;
    align-items: center;

    gap: 9px;
}

.ad-category-item > span .mdi {
    width: 21px;

    text-align: center;

    font-size: 17px;
}

.ad-category-item > i {
    font-size: 14px;

    color: #a0a0a0;
}

.ad-category-item:hover,
.ad-category-item.active {
    background: #fff;

    color: var(--ad-orange);

    font-weight: 600;

    border-left: 3px solid var(--ad-orange);

    padding-left: 14px;
}

.ad-category-item:hover > i,
.ad-category-item.active > i {
    color: var(--ad-orange);
}


/* =========================================================
   MEGA CONTENT
========================================================= */

.ad-mega-content {
    flex: 1;

    padding: 25px 28px;

    background: #fff;
}

.ad-mega-panel {
    display: none;
}

.ad-mega-panel.active {
    display: block;
}


/* =========================================================
   MEGA HEADING
========================================================= */

.ad-mega-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 16px;

    border-bottom: 1px solid #eeeeee;

    margin-bottom: 22px;
}

.ad-mega-heading h4 {
    margin: 0;

    color: var(--ad-dark);

    font-size: 18px;
    font-weight: 700;
}

.ad-mega-heading a {
    color: var(--ad-orange);

    font-size: 11px;
    font-weight: 600;
}

.ad-mega-heading a .mdi {
    font-size: 14px;
}


/* =========================================================
   MEGA COLUMNS
========================================================= */

.ad-mega-columns {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.ad-mega-columns > div {
    display: flex;
    flex-direction: column;
}

.ad-mega-columns h5 {
    margin: 0 0 11px;

    color: #20283b;

    font-size: 12px;
    font-weight: 700;
}

.ad-mega-columns a {
    margin-bottom: 9px;

    color: #737783;

    font-size: 11px;

    transition: color .15s ease;
}

.ad-mega-columns a:hover {
    color: var(--ad-orange);

    padding-left: 2px;
}


/* =========================================================
   MAIN NAV
========================================================= */

.ad-main-nav {
    height: 100%;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 29px;

    overflow: hidden;
}

.ad-nav-link {
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;

    color: #24293a;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition: color .2s ease;
}

.ad-nav-link:hover {
    color: var(--ad-orange);
}

.ad-nav-link.active {
    color: var(--ad-orange);

    font-weight: 600;
}

.ad-nav-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    background: var(--ad-orange);

    border-radius: 3px 3px 0 0;
}


/* =========================================================
   BECOME SELLER
========================================================= */

.ad-become-seller {
    height: 34px;

    min-width: 121px;

    padding: 0 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    border-radius: 8px;

    background: #ffeaf4;

    color: #dd2870;

    font-size: 10px;
    font-weight: 600;

    white-space: nowrap;

    transition: all .2s ease;
}

.ad-become-seller:hover {
    background: #ffdbe9;

    color: #cc1d62;
}

.ad-become-seller i {
    font-size: 16px;
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.ad-mobile-menu-btn {
    display: none;

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--ad-dark);

    font-size: 24px;

    cursor: pointer;
}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

.ad-mobile-overlay {
    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,.45);

    z-index: 10000;
}

.ad-mobile-overlay.open {
    display: block;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.ad-mobile-menu {
    display: none;

    position: fixed;

    top: 0;
    left: -330px;

    width: 320px;
    max-width: 88vw;

    height: 100vh;

    background: #fff;

    z-index: 10001;

    box-shadow: 5px 0 25px rgba(0,0,0,.15);

    transition: left .3s ease;
}

.ad-mobile-menu.open {
    left: 0;
}


/* =========================================================
   MOBILE MENU HEADER
========================================================= */

.ad-mobile-menu-header {
    height: 62px;

    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--ad-orange);

    color: #fff;
}

.ad-mobile-menu-header strong {
    font-size: 17px;
}

.ad-mobile-menu-header button {
    width: 35px;
    height: 35px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.18);

    color: #fff;

    cursor: pointer;
}

.ad-mobile-menu-header button i {
    font-size: 21px;
}


/* =========================================================
   MOBILE BODY
========================================================= */

.ad-mobile-menu-body {
    height: calc(100vh - 62px);

    overflow-y: auto;

    padding-bottom: 30px;
}

.ad-mobile-category-title {
    padding: 17px 18px 9px;

    color: #858995;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


/* =========================================================
   MOBILE CATEGORY
========================================================= */

.ad-mobile-category {
    border-bottom: 1px solid #f0f0f0;
}

.ad-mobile-category-toggle {
    width: 100%;

    min-height: 48px;

    padding: 0 18px;

    border: 0;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--ad-text);

    font-size: 12px;
    font-weight: 500;

    cursor: pointer;
}

.ad-mobile-category-toggle > span {
    display: flex;
    align-items: center;

    gap: 11px;
}

.ad-mobile-category-toggle .mdi:first-child {
    width: 22px;

    color: var(--ad-orange);

    font-size: 19px;

    text-align: center;
}

.ad-mobile-category-toggle > i:last-child {
    color: #777;

    transition: transform .2s ease;
}

.ad-mobile-category.open
.ad-mobile-category-toggle > i:last-child {
    transform: rotate(180deg);
}


/* =========================================================
   MOBILE SUBCATEGORY
========================================================= */

.ad-mobile-subcategory {
    display: none;

    padding: 2px 18px 12px 51px;

    background: #fafafa;
}

.ad-mobile-subcategory a {
    display: block;

    padding: 8px 0;

    color: #707581;

    font-size: 11px;
}

.ad-mobile-subcategory a:hover {
    color: var(--ad-orange);
}


/* =========================================================
   MOBILE LINKS
========================================================= */

.ad-mobile-links {
    margin-top: 10px;

    border-top: 1px solid #eeeeee;
}

.ad-mobile-links a {
    min-height: 46px;

    padding: 0 18px;

    display: flex;
    align-items: center;

    gap: 11px;

    color: var(--ad-text);

    border-bottom: 1px solid #f0f0f0;

    font-size: 12px;
    font-weight: 500;
}

.ad-mobile-links a i {
    width: 22px;

    color: var(--ad-orange);

    font-size: 19px;

    text-align: center;
}


/* =========================================================
   MOBILE SELLER
========================================================= */

.ad-mobile-seller {
    margin: 18px;

    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    background: var(--ad-orange);

    color: #fff !important;

    font-size: 12px;
    font-weight: 600;
}

.ad-mobile-seller i {
    font-size: 18px;
}


/* =========================================================
   DESKTOP CONTAINER
========================================================= */

.ad-header .container {
    max-width: 1200px;
}


/* =========================================================
   1200 - 1399
========================================================= */

@media (max-width: 1399px) {

    .ad-header .container {
        max-width: 1140px;
    }

    .ad-header-row {
        gap: 14px;
    }

    .ad-logo-area {
        width: 170px;
        min-width: 170px;
    }

    .ad-logo img {
        max-width: 160px;
    }

    .ad-main-nav {
        gap: 22px;
    }

}


/* =========================================================
   992 - 1199
========================================================= */

@media (max-width: 1199px) {

    .ad-header .container {
        max-width: 960px;
    }

    .ad-header-row {
        gap: 10px;
    }

    .ad-logo-area {
        width: 145px;
        min-width: 145px;
    }

    .ad-logo img {
        max-width: 138px;
    }

    .ad-delivery-box {
        min-width: 105px;
    }

    .ad-wishlist-link span,
    .ad-cart-link > span:last-child {
        display: none;
    }

    .ad-wishlist-link,
    .ad-cart-link {
        min-width: 30px;
    }

    .ad-main-nav {
        gap: 17px;
    }

    .ad-nav-link {
        font-size: 12px;
    }

    .ad-category-button {
        width: 145px;
    }

    .ad-category-dropdown {
        width: 700px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ad-header .container {
        max-width: 720px;
    }

    .ad-top-header {
        height: auto;
    }

    .ad-header-row {
        min-height: 62px;

        flex-wrap: wrap;

        padding: 8px 0 10px;
    }

    .ad-logo-area {
        width: auto;
        min-width: 0;
    }

    .ad-logo img {
        max-width: 145px;
        max-height: 48px;
    }

    .ad-mobile-menu-btn {
        display: flex;

        align-items: center;
        justify-content: center;
    }

    .ad-search-box {
        order: 5;

        flex: 0 0 100%;

        width: 100%;

        margin-top: 2px;
    }

    .ad-delivery-box {
        margin-left: auto;
    }

    .ad-navigation-wrapper {
        display: none;
    }

    .ad-mobile-menu {
        display: block;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ad-header .container {
        max-width: 100%;

        padding-left: 12px;
        padding-right: 12px;
    }

    .ad-header-row {
        gap: 7px;
    }

    .ad-mobile-menu-btn {
        width: 34px;
        height: 34px;

        font-size: 22px;
    }

    .ad-logo img {
        max-width: 125px;
        max-height: 43px;
    }

    .ad-delivery-box {
        display: none;
    }

    .ad-wishlist-link {
        margin-left: auto;
    }

    .ad-wishlist-link span,
    .ad-cart-link > span:last-child {
        display: none;
    }

    .ad-action-link > i {
        font-size: 21px;
    }

    .ad-cart-icon {
        width: 28px;
    }

    .ad-account-button {
        width: 37px;
        min-width: 37px;

        height: 37px;

        padding: 0;
    }

    .ad-account-button span {
        display: none;
    }

    .ad-account-button i {
        font-size: 21px;
    }

    .ad-search-box {
        height: 40px;
    }

    .ad-search-box input {
        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ad-header .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ad-mobile-menu-btn {
        width: 32px;
    }

    .ad-logo img {
        max-width: 108px;
    }

    .ad-wishlist-link {
        margin-left: auto;
    }

    .ad-account-button {
        width: 35px;
        min-width: 35px;
    }

    .ad-search-box {
        height: 38px;
    }

    .ad-search-button {
        height: 30px;
        width: 32px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .ad-logo img {
        max-width: 98px;
    }

    .ad-action-link > i {
        font-size: 19px;
    }

    .ad-mobile-menu {
        width: 300px;
    }

}


/* ///////////////////////// */
/* =========================================================
   APNA DUKAN SHOPPING SECTION
========================================================= */

.ad-home-shopping {
    width: 100%;
    padding: 10px 0 22px;

    background: #fff;
}


/* =========================================================
   CATEGORY SLIDER
========================================================= */

.ad-category-section {
    position: relative;

    margin-bottom: 12px;
}

.ad-category-slider {
    margin: 0 -4px;
}

.ad-category-slide {
    padding: 0 4px;
}

.ad-category-card {
    min-height: 66px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    color: #202638;

    text-decoration: none;

    text-align: center;
}

.ad-category-image {
    width: 51px;
    height: 51px;

    margin-bottom: 4px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.ad-category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

.ad-category-image.more {
    background: #fff3dd;

    border: 1px solid #f0dfc2;
}

.ad-category-image.more i {
    font-size: 23px;

    color: #17213a;
}

.ad-category-card span {
    display: block;

    color: #202638;

    font-size: 8px;
    line-height: 10px;

    font-weight: 500;

    white-space: nowrap;
}

.ad-category-card:hover span {
    color: #ff6800;
}


/* =========================================================
   SLICK GENERAL
========================================================= */

.ad-home-shopping .slick-slider {
    position: relative;
}

.ad-home-shopping .slick-list {
    overflow: hidden;
}

.ad-home-shopping .slick-track {
    display: flex;
}

.ad-home-shopping .slick-slide {
    height: auto;
}

.ad-home-shopping .slick-slide > div {
    height: 100%;
}


/* =========================================================
   SLICK ARROWS
========================================================= */

.ad-category-slider .slick-prev,
.ad-category-slider .slick-next,
.ad-product-slider .slick-prev,
.ad-product-slider .slick-next {
    position: absolute;

    z-index: 20;

    width: 30px;
    height: 30px;

    padding: 0;

    border: 1px solid #e7e7e7;

    border-radius: 50%;

    background: #fff;

    box-shadow: 0 2px 8px rgba(0,0,0,.08);

    font-size: 0;

    display: flex !important;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.ad-category-slider .slick-prev:before,
.ad-category-slider .slick-next:before,
.ad-product-slider .slick-prev:before,
.ad-product-slider .slick-next:before {
    font-family: "Material Design Icons";

    font-size: 18px;

    color: #18223a;

    opacity: 1;
}

.ad-category-slider .slick-prev:before,
.ad-product-slider .slick-prev:before {
    content: "\F0141";
}

.ad-category-slider .slick-next:before,
.ad-product-slider .slick-next:before {
    content: "\F0142";
}

.ad-category-slider .slick-prev {
    left: -15px;
}

.ad-category-slider .slick-next {
    right: -15px;
}


/* =========================================================
   PROMOTIONAL CARDS
========================================================= */

.ad-promo-section {
    margin-bottom: 14px;
}

.ad-promo-card {
    position: relative;

    height: 84px;

    display: flex;

    overflow: hidden;

    border-radius: 6px;

    text-decoration: none;

    transition: transform .2s ease;
}

.ad-promo-card:hover {
    transform: translateY(-2px);
}

.ad-promo-green {
    background: #dff7d7;
}

.ad-promo-pink {
    background: #f8dce9;
}

.ad-promo-blue {
    background: #d8efff;
}


/* =========================================================
   PROMO CONTENT
========================================================= */

.ad-promo-content {
    position: relative;

    z-index: 2;

    width: 53%;

    padding: 11px 0 8px 14px;
}

.ad-promo-content h3 {
    margin: 0 0 3px;

    color: #142039;

    font-size: 15px;
    line-height: 17px;

    font-weight: 700;
}

.ad-promo-content p {
    margin: 0;

    color: #28334a;

    font-size: 8px;
    line-height: 11px;
}

.ad-promo-button {
    display: inline-flex;
    align-items: center;

    gap: 4px;

    margin-top: 8px;

    padding: 5px 9px;

    border-radius: 20px;

    background: #fff;

    color: #1d263b;

    font-size: 8px;
    font-weight: 600;

    box-shadow: 0 2px 5px rgba(0,0,0,.08);
}

.ad-promo-button i {
    font-size: 10px;
}


/* =========================================================
   PROMO IMAGE
========================================================= */

.ad-promo-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 52%;
    height: 100%;
}

.ad-promo-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right bottom;

    display: block;
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.ad-product-section {
    margin-top: 3px;

    margin-bottom: 15px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.ad-section-heading {
    min-height: 39px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 4px;
}

.ad-section-heading h2 {
    position: relative;

    margin: 0;

    padding-left: 9px;

    color: #15203a;

    font-size: 18px;
    line-height: 20px;

    font-weight: 700;
}

.ad-section-heading h2 > span {
    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #ff6b00;

    border-radius: 3px;
}

.ad-section-heading p {
    margin: 2px 0 0 9px;

    color: #707581;

    font-size: 9px;
    line-height: 12px;
}

.ad-view-all {
    display: flex;
    align-items: center;

    gap: 3px;

    color: #ff5c00;

    font-size: 9px;
    font-weight: 600;

    text-decoration: none;
}

.ad-view-all i {
    font-size: 13px;
}


/* =========================================================
   PRODUCT SLIDER
========================================================= */

.ad-product-slider-wrapper {
    position: relative;
}

.ad-product-slider {
    margin: 0 -3px;
}

.ad-product-slide {
    padding: 0 3px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.ad-product-card {

    padding: 7px;

    background: #fff;

    border: 1px solid #e9ebef;

    border-radius: 5px;

    transition: all .2s ease;
}

.ad-product-card:hover {
    border-color: #ffd2b5;

    box-shadow: 0 4px 14px rgba(0,0,0,.07);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.ad-product-image {
    width: 100%;
    height: 116px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    overflow: hidden;
}

.ad-product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.ad-product-info {
    padding: 5px 2px 0;
}

.ad-product-info h3 {
    height: 27px;

    margin: 0 0 5px;

    overflow: hidden;

    color: #242a39;

    font-size: 9px;
    line-height: 13px;

    font-weight: 500;
}


/* =========================================================
   PRICE
========================================================= */

.ad-product-price {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-bottom: 2px;
}

.ad-product-price strong {
    color: #202638;

    font-size: 11px;
    font-weight: 700;
}

.ad-product-price del {
    color: #999;

    font-size: 8px;
}


/* =========================================================
   RATING
========================================================= */

.ad-product-rating {
    height: 17px;

    display: flex;
    align-items: center;

    gap: 2px;
}

.ad-product-rating i {
    color: #ffb000;

    font-size: 11px;
}

.ad-product-rating strong {
    color: #313746;

    font-size: 8px;
}

.ad-product-rating span {
    color: #777;

    font-size: 7px;
}


/* =========================================================
   PRODUCT ACTIONS
========================================================= */

.ad-product-actions {
    height: 34px;

    margin-top: 5px;

    display: flex;
    align-items: center;

    gap: 5px;
}

.ad-product-actions button {
    flex: 1;

    height: 30px;

    padding: 0 5px;

    border: 0;

    border-radius: 4px;

    background: linear-gradient(
        90deg,
        #ff8500,
        #ff5a2c
    );

    color: #fff;

    font-size: 9px;
    font-weight: 600;

    cursor: pointer;
}

.ad-product-wishlist {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    color: #24304a;

    text-decoration: none;
}

.ad-product-wishlist i {
    font-size: 17px;
}


/* =========================================================
   PRODUCT SLICK ARROWS
========================================================= */

.ad-product-slider .slick-prev {
    left: -16px;
    top: 50%;

    transform: translateY(-50%);
}

.ad-product-slider .slick-next {
    right: -16px;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   BRAND + SELLER
========================================================= */

.ad-brand-seller-section {
    margin-bottom: 9px;
}


/* =========================================================
   BRANDS BANNER
========================================================= */

.ad-brands-banner {
    position: relative;

    height: 93px;

    padding: 12px 12px;

    overflow: hidden;

    border-radius: 6px;

    background:
        linear-gradient(
            110deg,
            #d7edff 0%,
            #d9ecff 55%,
            #c7e1ff 100%
        );
}

.ad-brands-content {
    position: relative;

    z-index: 2;
}

.ad-brands-content h2 {
    margin: 0 0 2px;

    color: #15203a;

    font-size: 15px;
    line-height: 17px;

    font-weight: 700;
}

.ad-brands-content p {
    margin: 0;

    color: #526074;

    font-size: 7px;
}

.ad-brands-content p span {
    padding: 0 3px;
}


/* =========================================================
   VIEW ALL BRANDS
========================================================= */

.ad-brands-view {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 3px;

    color: #17213a;

    font-size: 8px;
    font-weight: 600;
}

.ad-brands-view i {
    font-size: 11px;
}


/* =========================================================
   BRAND LIST
========================================================= */

.ad-brands-list {
    position: absolute;

    left: 14px;
    bottom: 8px;

    display: flex;
    align-items: center;

    gap: 7px;
}

.ad-brand-circle {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.ad-brand-circle img {
    width: 72%;
    height: 72%;

    object-fit: contain;
}


/* =========================================================
   SELLER BANNER
========================================================= */

.ad-seller-banner {
    position: relative;

    height: 93px;

    display: block;

    overflow: hidden;

    border-radius: 6px;

    background: linear-gradient(
        110deg,
        #ffe3b0,
        #ffd184
    );

    text-decoration: none;
}

.ad-seller-content {
    position: relative;

    z-index: 2;

    width: 58%;

    padding: 12px 0 0 13px;
}

.ad-seller-content h2 {
    margin: 0 0 4px;

    color: #15203a;

    font-size: 15px;
    line-height: 17px;

    font-weight: 700;
}

.ad-seller-content p {
    margin: 0;

    color: #384258;

    font-size: 7px;
    line-height: 10px;
}

.ad-seller-content span {
    display: inline-flex;
    align-items: center;

    gap: 3px;

    margin-top: 8px;

    padding: 5px 8px;

    border-radius: 15px;

    background: #13203a;

    color: #fff;

    font-size: 7px;
    font-weight: 600;
}

.ad-seller-content span i {
    font-size: 10px;
}

.ad-seller-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 44%;
    height: 100%;
}

.ad-seller-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: right bottom;

    display: block;
}


/* =========================================================
   WHY SHOP
========================================================= */

.ad-why-shop {
    min-height: 42px;

    display: flex;
    align-items: center;

    padding: 5px 13px;

    border-radius: 6px;

    background: #eef6ff;
}


/* =========================================================
   WHY TITLE
========================================================= */

.ad-why-title {
    min-width: 175px;

    color: #15203a;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================================
   WHY ITEMS
========================================================= */

.ad-why-items {
    flex: 1;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);
}

.ad-why-item {
    min-height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-left: 1px solid #d7e2ef;

    color: #344056;
}

.ad-why-icon {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-why-icon i {
    color: #1763bd;

    font-size: 21px;
}

.ad-why-item span {
    font-size: 7px;
    line-height: 9px;

    white-space: nowrap;
}


/* =========================================================
   RESPONSIVE - LARGE
========================================================= */

@media (max-width: 1199px) {

    .ad-home-shopping .container {
        max-width: 960px;
    }

    .ad-brands-list {
        gap: 5px;
    }

    .ad-brand-circle {
        width: 35px;
        height: 35px;
    }

    .ad-why-title {
        min-width: 150px;

        font-size: 12px;
    }

}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .ad-home-shopping {
        padding-top: 8px;
    }

    .ad-home-shopping .container {
        max-width: 720px;
    }

    .ad-category-image {
        width: 55px;
        height: 55px;
    }

    .ad-category-card span {
        font-size: 8px;
    }

    .ad-promo-card {
        height: 105px;
    }

    .ad-promo-content h3 {
        font-size: 14px;
    }

    .ad-brands-banner,
    .ad-seller-banner {
        height: 110px;
    }

    .ad-brand-circle {
        width: 43px;
        height: 43px;
    }

    .ad-why-shop {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;
    }

    .ad-why-title {
        min-width: 0;

        margin-bottom: 7px;

        text-align: center;
    }

    .ad-why-items {
        width: 100%;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .ad-home-shopping .container {
        max-width: 100%;

        padding-left: 12px;
        padding-right: 12px;
    }


    /* CATEGORY */

    .ad-category-section {
        margin-bottom: 12px;
    }

    .ad-category-image {
        width: 53px;
        height: 53px;
    }

    .ad-category-card span {
        font-size: 8px;
    }


    /* PROMOS */

    .ad-promo-section .row {
        row-gap: 8px !important;
    }

    .ad-promo-card {
        height: 105px;
    }

    .ad-promo-content {
        padding-left: 15px;
    }

    .ad-promo-content h3 {
        font-size: 16px;
    }

    .ad-promo-content p {
        font-size: 9px;
        line-height: 12px;
    }

    .ad-promo-button {
        margin-top: 8px;

        padding: 6px 11px;

        font-size: 9px;
    }


    /* FEATURED */

    .ad-section-heading h2 {
        font-size: 16px;
    }

    .ad-section-heading p {
        font-size: 8px;
    }


    /* BRANDS */

    .ad-brand-seller-section .row {
        row-gap: 8px !important;
    }

    .ad-brands-banner {
        height: 115px;
    }

    .ad-seller-banner {
        height: 115px;
    }

    .ad-brand-circle {
        width: 42px;
        height: 42px;
    }

    .ad-brands-list {
        gap: 6px;

        bottom: 10px;
    }


    /* WHY SHOP */

    .ad-why-shop {
        padding: 11px 8px;
    }

    .ad-why-items {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 8px;
    }

    .ad-why-item {
        justify-content: flex-start;

        padding-left: 10px;
    }

    .ad-why-item:nth-child(3) {
        border-left: 0;
    }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .ad-home-shopping .container {
        padding-left: 9px;
        padding-right: 9px;
    }

    .ad-category-image {
        width: 48px;
        height: 48px;
    }

    .ad-category-card span {
        font-size: 7px;
        line-height: 9px;
    }

    .ad-promo-card {
        height: 100px;
    }

    .ad-promo-content h3 {
        font-size: 14px;
    }

    .ad-promo-content p {
        font-size: 8px;
    }

    .ad-product-image {
        height: 112px;
    }

    .ad-brands-banner,
    .ad-seller-banner {
        height: 110px;
    }

    .ad-brands-content h2,
    .ad-seller-content h2 {
        font-size: 14px;
    }

    .ad-brand-circle {
        width: 38px;
        height: 38px;
    }

    .ad-brands-list {
        gap: 4px;
    }

    .ad-why-item span {
        font-size: 7px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 375px) {

    .ad-category-image {
        width: 45px;
        height: 45px;
    }

    .ad-product-image {
        height: 108px;
    }

    .ad-brand-circle {
        width: 34px;
        height: 34px;
    }

    .ad-brands-list {
        gap: 3px;
    }

}


/* /////////////////////////// */
/* =========================================================
   APNA DUKAN HOMEPAGE
========================================================= */

.ad-homepage {
    width: 100%;

    padding-top: 20px;
    padding-bottom: 45px;

    background: #fff;

    color: #14213d;
}

.ad-homepage *,
.ad-homepage *::before,
.ad-homepage *::after {
    box-sizing: border-box;
}


/* =========================================================
   LINK RESET
   IMPORTANT:
   Prevent existing website <a> styles from changing layout.
========================================================= */

.ad-homepage a,
.ad-homepage a:hover,
.ad-homepage a:focus,
.ad-homepage a:active,
.ad-homepage a:visited {
    text-decoration: none !important;

    color: inherit;

    outline: none;
}

.ad-homepage a img {
    border: 0;
}


/* =========================================================
   SECTION
========================================================= */

.ad-section {
    width: 100%;
}


/* =========================================================
   CATEGORY
========================================================= */

.ad-category-section {
    padding-top: 5px;
    padding-bottom: 28px;
}

.ad-category-slider {
    width: 100%;

    margin: 0 -5px;
}

.ad-category-slide {
    padding: 0 5px;
}

.ad-category-item {
    width: 100%;

    min-height: 78px;

    padding: 0 !important;
    margin: 0 !important;

    display: flex !important;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    background: transparent !important;

    border: 0 !important;
}

.ad-category-image {
    width: 56px;
    height: 56px;

    min-width: 56px;

    margin: 0 0 7px;

    padding: 0;

    border-radius: 50%;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef5ff;
}

.ad-category-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    object-fit: cover;
}

.ad-category-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;
}

.ad-category-placeholder i {
    font-size: 25px;

    color: #334b70;
}

.ad-category-slide:nth-child(2n)
.ad-category-image {
    background: #fff0f5;
}

.ad-category-slide:nth-child(3n)
.ad-category-image {
    background: #edf7ff;
}

.ad-category-slide:nth-child(4n)
.ad-category-image {
    background: #fff4e7;
}

.ad-more-image {
    background: #fff7df !important;

    border: 1px solid #f0e3c5;
}

.ad-more-image i {
    font-size: 24px;

    color: #273650;
}

.ad-category-name {
    width: 100%;

    padding: 0 !important;
    margin: 0 !important;

    display: block;

    color: #26334b !important;

    text-align: center;

    font-size: 9px;

    line-height: 11px;

    font-weight: 500;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   SLICK BASE
========================================================= */

.ad-homepage .slick-slider {
    position: relative;
}

.ad-homepage .slick-list {
    overflow: hidden;
}

.ad-homepage .slick-track {
    display: flex;
}

.ad-homepage .slick-slide {
    height: auto;
}

.ad-homepage .slick-slide > div {
    height: 100%;
}


/* =========================================================
   BENEFITS
========================================================= */

.ad-benefits-section {
    margin-bottom: 34px;

    padding: 9px 0;

    border: 1px solid #e2edf8;

    border-radius: 7px;

    background: #f2f8ff;
}

.ad-benefit-item {
    min-height: 50px;

    padding: 4px 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-right: 1px solid #d9e6f3;
}

.ad-benefit-item:last-child {
    border-right: 0;
}

.ad-benefit-icon {
    width: 38px;
    min-width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.ad-benefit-icon i {
    color: #1768cf;

    font-size: 27px;
}

.ad-benefit-content strong {
    display: block;

    margin: 0 0 2px;

    color: #172640;

    font-size: 10px;

    line-height: 12px;

    font-weight: 700;
}

.ad-benefit-content small {
    display: block;

    color: #6c788c;

    font-size: 8px;

    line-height: 10px;
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.ad-product-section {
    padding-top: 5px;
    padding-bottom: 34px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.ad-section-header {
    min-height: 43px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.ad-section-title {
    min-height: 38px;

    display: flex;

    align-items: stretch;

    gap: 9px;
}

.ad-title-bar {
    width: 3px;
    min-width: 3px;

    border-radius: 5px;

    background: #ff641d;
}

.ad-section-title h2 {
    margin: 0;

    color: #17233d;

    font-size: 18px;

    line-height: 20px;

    font-weight: 700;
}

.ad-section-title p {
    margin: 3px 0 0;

    color: #7b8493;

    font-size: 8px;

    line-height: 10px;
}

.ad-view-all {
    display: flex !important;

    align-items: center;

    gap: 3px;

    padding: 0 !important;
    margin: 0 !important;

    color: #ff5d18 !important;

    font-size: 9px;

    line-height: 12px;

    font-weight: 600;
}

.ad-view-all i {
    font-size: 13px;
}


/* =========================================================
   PRODUCT SLIDER
========================================================= */

.ad-product-slider {
    width: 100%;

    margin: 0 -5px;
}

.ad-product-slide {
    padding: 0 5px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.ad-product-card {
    position: relative;

    width: 100%;

    max-height: 280px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e5e9ee;

    border-radius: 6px;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.ad-product-card:hover {
    transform: translateY(-2px);

    box-shadow: 0 6px 18px rgba(20, 35, 60, .08);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.ad-product-image {
    position: relative;

    width: 100%;
    height: 150px;

    overflow: hidden;

    background: #f5f6f7;
}

.ad-product-image-link {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100% !important;
    height: 100% !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    line-height: 0 !important;

    background: transparent !important;
}

.ad-product-image-link img {
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    padding: 0 !important;
    margin: 0 !important;

    display: block !important;

    object-fit: contain;
}

.ad-product-no-image {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #a0a6ae;
}

.ad-product-no-image i {
    font-size: 35px;
}


/* =========================================================
   WISHLIST
========================================================= */

.ad-wishlist {
    position: absolute;

    top: 7px;
    right: 7px;

    z-index: 5;

    width: 27px;
    height: 27px;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #34425a;

    box-shadow: 0 2px 7px rgba(0, 0, 0, .09);

    cursor: pointer;
}

.ad-wishlist i {
    font-size: 16px;

    line-height: 1;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.ad-product-info {
    width: 100%;

    padding: 9px 8px 8px;
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.ad-product-name {
    width: 100%;

    height: 30px;

    padding: 0 !important;
    margin: 0 0 5px !important;

    display: block !important;

    color: #222c40 !important;

    font-size: 10px;

    line-height: 15px;

    font-weight: 600;

    overflow: hidden;

    text-overflow: ellipsis;

    display: -webkit-box !important;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}


/* =========================================================
   PRICE
========================================================= */

.ad-product-price {
    min-height: 17px;

    display: flex;

    align-items: center;

    gap: 5px;
}

.ad-product-price strong {
    color: #16223b;

    font-size: 12px;

    line-height: 15px;

    font-weight: 700;
}

.ad-product-price del {
    color: #9298a1;

    font-size: 8px;

    line-height: 12px;

    font-weight: 400;
}


/* =========================================================
   RATING
========================================================= */

.ad-product-rating {
    height: 18px;

    margin-top: 3px;

    display: flex;

    align-items: center;

    gap: 2px;
}

.ad-rating-star {
    display: flex;

    align-items: center;
}

.ad-rating-star i {
    color: #ffad00;

    font-size: 11px;
}

.ad-product-rating strong {
    color: #3c4658;

    font-size: 8px;
}

.ad-product-rating > span:last-child {
    color: #8b9199;

    font-size: 7px;
}


/* =========================================================
   CART
========================================================= */

.ad-add-cart {
    width: 100%;
    height: 29px;

    margin-top: 6px;

    padding: 0 !important;

    border: 0 !important;

    border-radius: 4px;

    background: #ff6723;

    color: #fff;

    font-size: 9px;

    font-weight: 600;

    cursor: pointer;

    transition: background .2s ease;
}

.ad-add-cart:hover {
    background: #ec5310;
}


/* =========================================================
   ADVERTISEMENTS
========================================================= */

.ad-advertisement-section {
    padding-top: 5px;
    padding-bottom: 36px;
}

.ad-promo-banner {
    position: relative;

    width: 100%;

    height: 145px;

    overflow: hidden;

    display: block !important;

    border-radius: 7px;

    background: #e8f3ff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.ad-promo-banner:hover {
    transform: translateY(-2px);

    box-shadow: 0 6px 18px rgba(20, 35, 60, .08);
}

.ad-promo-content {
    position: relative;

    z-index: 3;

    width: 48%;

    height: 100%;

    padding: 20px 0 10px 20px;
}

.ad-promo-content h2 {
    margin: 0 0 6px;

    color: #16233d;

    font-size: 18px;

    line-height: 20px;

    font-weight: 700;
}

.ad-promo-content p {
    margin: 0;

    color: #596679;

    font-size: 9px;

    line-height: 13px;
}

.ad-promo-button {
    display: inline-flex;

    align-items: center;

    gap: 4px;

    margin-top: 11px;

    padding: 6px 11px;

    border-radius: 20px;

    background: #fff;

    color: #1e2a42;

    font-size: 8px;

    font-weight: 600;

    box-shadow: 0 2px 7px rgba(0, 0, 0, .08);
}

.ad-promo-button i {
    font-size: 11px;
}


/* =========================================================
   AD IMAGE
========================================================= */

.ad-promo-image {
    position: absolute;

    right: 0;
    top: 0;

    z-index: 1;

    width: 55%;
    height: 100%;

    padding: 8px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;
}

.ad-promo-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    display: block !important;

    object-fit: contain;
}


/* =========================================================
   DISCOVERY
========================================================= */

.ad-discovery-section {
    padding-top: 5px;
    padding-bottom: 35px;
}

.ad-brand-slider {
    margin: 0 -5px;
}

.ad-brand-slide {
    padding: 0 5px;
}

.ad-brand-item {
    width: 100%;

    display: flex !important;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    color: inherit !important;
}

.ad-brand-image {
    width: 65px;
    height: 65px;

    margin-bottom: 7px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    border: 1px solid #e3e6ea;

    background: #f6f7f8;
}

.ad-brand-image img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: cover;
}

.ad-brand-image i {
    font-size: 27px;

    color: #758095;
}

.ad-brand-item span {
    max-width: 100%;

    color: #354057;

    font-size: 8px;

    line-height: 10px;

    text-align: center;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


/* =========================================================
   SELLER
========================================================= */

.ad-seller-section {
    min-height: 150px;

    margin-bottom: 35px;

    padding: 25px;

    display: flex;

    align-items: center;

    border-radius: 8px;

    background:
        linear-gradient(
            105deg,
            #fff0d8,
            #ffe0b2
        );
}

.ad-seller-content {
    width: 100%;
}

.ad-seller-label {
    display: inline-block;

    margin-bottom: 5px;

    color: #d66a00;

    font-size: 8px;

    line-height: 10px;

    font-weight: 700;

    letter-spacing: .6px;
}

.ad-seller-content h2 {
    margin: 0 0 5px;

    color: #18243d;

    font-size: 22px;

    line-height: 25px;

    font-weight: 700;
}

.ad-seller-content p {
    margin: 0 0 12px;

    color: #5c6575;

    font-size: 9px;

    line-height: 13px;
}

.ad-seller-button {
    display: inline-flex !important;

    align-items: center;

    gap: 5px;

    padding: 8px 13px !important;

    border-radius: 5px;

    background: #17243e !important;

    color: #fff !important;

    font-size: 9px;

    font-weight: 600;
}

.ad-seller-button i {
    font-size: 12px;
}


/* =========================================================
   BOTTOM APP
========================================================= */

.ad-bottom-section {
    padding-top: 5px;
    padding-bottom: 5px;

    padding-left: 20px;
    padding-right: 20px;

    min-height: 100px;

    border-radius: 8px;

    background: #fff2e6;
}

.ad-app-box {
    display: flex;

    align-items: center;

    gap: 10px;
}

.ad-app-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: #e2e5e8;

    color: #69727e;
}

.ad-app-icon i {
    font-size: 29px;
}

.ad-app-box h3 {
    margin: 0;

    color: #1b273e;

    font-size: 12px;

    line-height: 15px;

    font-weight: 700;
}

.ad-app-box p {
    margin: 3px 0 0;

    color: #747d89;

    font-size: 8px;
}


/* =========================================================
   APP DOWNLOAD
========================================================= */

.ad-app-buttons {
    display: flex;

    align-items: center;
}

.ad-app-download {
    min-width: 125px;

    height: 38px;

    padding: 0 13px !important;

    display: inline-flex !important;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 5px;

    background: #111820 !important;

    color: #fff !important;
}

.ad-app-download i {
    font-size: 18px;
}

.ad-app-download span {
    font-size: 9px;

    font-weight: 600;
}


/* =========================================================
   BOTTOM BENEFITS
========================================================= */

.ad-bottom-benefits {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.ad-bottom-benefit {
    display: flex;

    align-items: center;

    gap: 6px;
}

.ad-bottom-benefit i {
    font-size: 20px;

    color: #ff691d;
}

.ad-bottom-benefit span {
    color: #39445a;

    font-size: 8px;

    line-height: 10px;

    font-weight: 600;
}


/* =========================================================
   1200+
========================================================= */

@media (min-width: 1200px) {

    .ad-home-container {
        max-width: 1200px;

        margin-left: auto;
        margin-right: auto;

        padding-left: 15px;
        padding-right: 15px;
    }

}


/* =========================================================
   992 - 1199
========================================================= */

@media (max-width: 1199px) {

    .ad-category-image {
        width: 52px;
        height: 52px;

        min-width: 52px;
    }

    .ad-benefit-item {
        padding-left: 12px;
        padding-right: 12px;
    }

    .ad-product-image {
        height: 145px;
    }

    .ad-bottom-benefit span {
        font-size: 7px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .ad-homepage {
        padding-top: 16px;
        padding-bottom: 35px;
    }

    .ad-category-section {
        padding-bottom: 25px;
    }

    .ad-benefits-section {
        margin-bottom: 31px;
    }

    .ad-benefit-item {
        min-height: 58px;

        padding: 7px 12px;

        border-bottom: 1px solid #d9e6f3;
    }

    .ad-benefit-item:nth-child(2n) {
        border-right: 0;
    }

    .ad-benefit-item:nth-child(n+3) {
        border-bottom: 0;
    }

    .ad-product-section {
        padding-bottom: 31px;
    }

    .ad-product-image {
        height: 145px;
    }

    .ad-advertisement-section {
        padding-bottom: 32px;
    }

    .ad-promo-banner {
        height: 135px;
    }

    .ad-discovery-section {
        padding-bottom: 31px;
    }

    .ad-bottom-section {
        padding-top: 15px;
        padding-bottom: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .ad-home-container {
        width: 100%;

        padding-left: 12px;
        padding-right: 12px;
    }


    /* CATEGORY */

    .ad-category-section {
        padding-top: 2px;
        padding-bottom: 24px;
    }

    .ad-category-image {
        width: 48px;
        height: 48px;

        min-width: 48px;
    }

    .ad-category-name {
        font-size: 7px;

        line-height: 10px;
    }


    /* BENEFITS */

    .ad-benefits-section {
        margin-bottom: 30px;
    }

    .ad-benefit-item {
        min-height: 58px;

        gap: 7px;

        padding: 7px 8px;
    }

    .ad-benefit-icon {
        width: 29px;
        min-width: 29px;

        height: 30px;
    }

    .ad-benefit-icon i {
        font-size: 22px;
    }

    .ad-benefit-content strong {
        font-size: 8px;
    }

    .ad-benefit-content small {
        font-size: 7px;
    }


    /* PRODUCTS */

    .ad-product-section {
        padding-bottom: 30px;
    }

    .ad-section-header {
        min-height: 39px;

        margin-bottom: 9px;
    }

    .ad-section-title h2 {
        font-size: 15px;

        line-height: 18px;
    }

    .ad-section-title p {
        font-size: 7px;
    }

    .ad-view-all {
        font-size: 8px;
    }

    .ad-product-image {
        height: 140px;
    }

    .ad-product-info {
        padding: 8px 7px;
    }

    .ad-product-name {
        font-size: 9px;

        line-height: 14px;
    }

    .ad-product-price strong {
        font-size: 11px;
    }


    /* ADS */

    .ad-advertisement-section {
        padding-bottom: 30px;
    }

    .ad-advertisement-section .row {
        --bs-gutter-y: 12px;
    }

    .ad-promo-banner {
        height: 125px;
    }

    .ad-promo-content {
        padding: 16px 0 10px 15px;
    }

    .ad-promo-content h2 {
        font-size: 15px;

        line-height: 17px;
    }

    .ad-promo-content p {
        font-size: 8px;
    }

    .ad-promo-button {
        margin-top: 8px;

        padding: 5px 9px;

        font-size: 7px;
    }


    /* DISCOVERY */

    .ad-discovery-section {
        padding-bottom: 30px;
    }

    .ad-brand-image {
        width: 52px;
        height: 52px;
    }


    /* SELLER */

    .ad-seller-section {
        min-height: 135px;

        margin-bottom: 30px;

        padding: 20px;
    }

    .ad-seller-content h2 {
        font-size: 19px;

        line-height: 22px;
    }


    /* APP */

    .ad-bottom-section {
        padding: 15px;
    }

    .ad-app-box {
        margin-bottom: 5px;
    }

    .ad-app-buttons {
        padding-bottom: 13px;

        border-bottom: 1px solid #e5d5c5;
    }

    .ad-bottom-benefits {
        grid-template-columns: 1fr;

        gap: 8px;

        padding-top: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .ad-homepage {
        padding-top: 12px;
        padding-bottom: 30px;
    }

    .ad-home-container {
        padding-left: 9px;
        padding-right: 9px;
    }

    .ad-category-section {
        padding-bottom: 22px;
    }

    .ad-category-image {
        width: 45px;
        height: 45px;

        min-width: 45px;
    }

    .ad-category-item {
        min-height: 65px;
    }

    .ad-benefits-section {
        margin-bottom: 27px;
    }

    .ad-benefit-item {
        min-height: 54px;

        padding-left: 6px;
        padding-right: 6px;
    }

    .ad-product-section {
        padding-bottom: 27px;
    }

    .ad-product-image {
        height: 133px;
    }

    .ad-product-info {
        padding: 7px 6px;
    }

    .ad-product-name {
        height: 28px;

        font-size: 8px;

        line-height: 14px;
    }

    .ad-product-price strong {
        font-size: 10px;
    }

    .ad-product-price del {
        font-size: 7px;
    }

    .ad-add-cart {
        height: 27px;

        font-size: 8px;
    }

    .ad-advertisement-section {
        padding-bottom: 27px;
    }

    .ad-promo-banner {
        height: 112px;
    }

    .ad-promo-content {
        padding: 13px 0 8px 13px;
    }

    .ad-promo-content h2 {
        font-size: 14px;

        line-height: 15px;
    }

    .ad-promo-content p {
        font-size: 7px;

        line-height: 10px;
    }

    .ad-promo-button {
        margin-top: 6px;

        padding: 5px 8px;

        font-size: 7px;
    }

    .ad-brand-image {
        width: 46px;
        height: 46px;
    }

    .ad-seller-section {
        min-height: 125px;

        padding: 16px;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 380px) {

    .ad-home-container {
        padding-left: 7px;
        padding-right: 7px;
    }

    .ad-category-image {
        width: 41px;
        height: 41px;

        min-width: 41px;
    }

    .ad-category-name {
        font-size: 6px;
    }


    .ad-product-image {
        height: 128px;
    }

    .ad-promo-banner {
        height: 105px;
    }

    .ad-brand-image {
        width: 42px;
        height: 42px;
    }

}