/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f8fa;
    color: #222;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}


/* =========================================================
   TOP OFFER BAR
========================================================= */

.top-offer-bar {
    background: #111827;
    color: #fff;
    font-size: 12px;
    padding: 7px 0;
}

.top-offer-bar i {
    margin-right: 5px;
}

.offer-divider {
    margin: 0 15px;
    opacity: .4;
}


/* =========================================================
   MAIN HEADER
========================================================= */

.main-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.header-main-row {
    min-height: 78px;

    display: flex;
    align-items: center;
    gap: 25px;
}


/* =========================================================
   SEARCH
========================================================= */

.header-search {
    flex: 1;
}

.search-wrapper {
    position: relative;
}

.search-wrapper .form-control {
    height: 46px;

    border-radius: 25px;

    border: 1px solid #ddd;

    padding-left: 45px;
    padding-right: 100px;

    font-size: 13px;

    background: #f7f8fa;
}

.search-wrapper .form-control:focus {
    border-color: #ff3d81;

    box-shadow: 0 0 0 3px rgba(255, 61, 129, .1);
}

.search-icon {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #777;

    z-index: 2;
}

.search-button {
    position: absolute;

    right: 5px;
    top: 5px;

    height: 36px;

    border: none;

    padding: 0 18px;

    border-radius: 20px;

    background: #ff3d81;
    color: #fff;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-action {
    position: relative;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #222;
}

.action-link > i {
    font-size: 22px;
}

.action-text {
    display: flex;
    flex-direction: column;
}

.action-text small {
    color: #777;
    font-size: 10px;
}

.action-text strong {
    font-size: 12px;
    font-weight: 600;
}

.small-arrow {
    font-size: 10px !important;
    margin-left: 2px;
}


/* =========================================================
   BADGE
========================================================= */

.icon-with-badge {
    position: relative;
}

.icon-with-badge > i {
    font-size: 23px;
}

.header-badge {
    position: absolute;

    top: -9px;
    right: -10px;

    min-width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ff3d81;
    color: #fff;

    font-size: 9px;
    font-weight: 600;
}


/* =========================================================
   ACCOUNT DROPDOWN
========================================================= */

.account-menu {
    width: 270px;

    border: none;

    box-shadow: 0 10px 35px rgba(0,0,0,.12);

    border-radius: 12px;

    padding: 8px;

    margin-top: 15px !important;
}

.account-menu .dropdown-item {
    border-radius: 8px;

    padding: 10px 12px;

    font-size: 13px;
}

.account-menu .dropdown-item:hover {
    background: #fff1f6;
    color: #ff3d81;
}

.account-welcome {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;
}

.account-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff1f6;

    color: #ff3d81;

    font-size: 22px;
}

.account-welcome strong,
.account-welcome small {
    display: block;
}

.account-welcome strong {
    font-size: 13px;
}

.account-welcome small {
    color: #888;
    font-size: 10px;
}

.login-menu-header {
    padding: 12px;
}

.login-menu-header strong,
.login-menu-header small {
    display: block;
}

.login-menu-header strong {
    font-size: 13px;
}

.login-menu-header small {
    margin-top: 3px;
    color: #888;
    font-size: 10px;
}

.login-button {
    background: #ff3d81;
    color: #fff !important;
    text-align: center;
    font-weight: 600;
}


/* =========================================================
   CATEGORY NAVBAR
========================================================= */

.category-navbar {
    background: #fff;

    border-bottom: 1px solid #eee;
}

.category-nav-wrapper {
    display: flex;

    align-items: center;

    overflow-x: auto;

    scrollbar-width: none;
}

.category-nav-wrapper::-webkit-scrollbar {
    display: none;
}

.category-nav-wrapper a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 15px 20px;

    color: #444;

    font-size: 12px;
    font-weight: 500;

    white-space: nowrap;

    transition: .2s;
}

.category-nav-wrapper a:hover,
.category-nav-wrapper a.active {
    color: #ff3d81;
}

.category-nav-wrapper a.active::after {
    content: "";

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 0;

    height: 3px;

    border-radius: 3px 3px 0 0;

    background: #ff3d81;
}

.offer-nav-item {
    color: #ef4444 !important;
}

.offer-label {
    position: absolute;

    top: 2px;
    right: 4px;

    background: #ef4444;
    color: #fff;

    font-size: 7px;

    padding: 2px 5px;

    border-radius: 4px;
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    background: #111827;
    color: #d1d5db;

    margin-top: 50px;
}

.main-footer > .container {
    padding-top: 55px;
    padding-bottom: 45px;
}

.footer-logo {
    font-size: 23px;

    font-weight: 700;

    color: #fff;
}

.footer-logo i {
    color: #ff3d81;
}

.footer-logo span {
    color: #ff3d81;
}

.footer-brand p {
    max-width: 380px;

    margin-top: 15px;

    color: #9ca3af;

    font-size: 12px;

    line-height: 1.8;
}

.main-footer h5 {
    color: #fff;

    font-size: 14px;

    margin-bottom: 18px;

    font-weight: 600;
}

.footer-links {
    list-style: none;

    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;

    font-size: 12px;

    transition: .2s;
}

.footer-links a:hover {
    color: #ff3d81;

    padding-left: 4px;
}

.footer-contact p {
    font-size: 12px;

    color: #9ca3af;

    margin-bottom: 13px;
}

.footer-contact i {
    color: #ff3d81;

    width: 22px;
}

.social-links {
    display: flex;

    gap: 9px;

    margin-top: 18px;
}

.social-links a {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1f2937;

    color: #fff;

    transition: .2s;
}

.social-links a:hover {
    background: #ff3d81;

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER FEATURES
========================================================= */

.footer-features {
    border-top: 1px solid #1f2937;
    border-bottom: 1px solid #1f2937;

    padding: 20px 0;
}

.footer-feature {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;
}

.footer-feature > i {
    font-size: 25px;

    color: #ff3d81;
}

.footer-feature strong,
.footer-feature small {
    display: block;
}

.footer-feature strong {
    color: #fff;

    font-size: 12px;
}

.footer-feature small {
    color: #9ca3af;

    font-size: 10px;

    margin-top: 2px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    padding: 15px 0;

    color: #6b7280;

    font-size: 10px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .header-main-row {
        flex-wrap: wrap;
        padding: 15px 0;
    }

    .header-search {
        order: 3;
        flex-basis: 100%;
    }

    .header-actions {
        margin-left: auto;
    }

    .action-text,
    .small-arrow {
        display: none;
    }

}


/* =========================================================
   WEBSITE LOGO
========================================================= */

.brand-logo {
    width: 190px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;

    text-decoration: none;

    overflow: hidden;
}

.site-logo {
    width: 180px !important;
    height: 60px !important;

    max-width: 100% !important;

    display: block;

    object-fit: contain;

    object-position: left center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .brand-logo {
        width: 160px;
        height: 55px;
    }

    .site-logo {
        width: 150px !important;
        height: 50px !important;
    }

}


/* =========================================================
   MOBILE
========================================================= */

/* =========================================================
   HOME PAGE
========================================================= */


/* =========================================================
   HERO SECTION
========================================================= */

.hero-section {
    padding: 25px 0 10px;
}

.hero-slider {
    min-height: 430px;

    position: relative;
    overflow: hidden;

    border-radius: 22px;

    background:
        linear-gradient(
            110deg,
            #111827 0%,
            #1f2937 55%,
            #374151 100%
        );

    display: flex;
    align-items: center;

    padding: 55px 70px;

    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 3;

    max-width: 560px;
}

.hero-small-text {
    display: inline-block;

    padding: 6px 13px;

    border-radius: 20px;

    background: rgba(255,255,255,.12);

    color: #f9a8d4;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 52px;

    line-height: 1.08;

    font-weight: 700;

    margin-bottom: 18px;
}

.hero-content h1 span {
    display: block;

    color: #ff5c99;
}

.hero-content p {
    color: #d1d5db;

    font-size: 14px;

    line-height: 1.8;

    max-width: 500px;

    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;

    gap: 12px;
}

.hero-btn-primary {
    background: #ff3d81;

    color: #fff;

    border: none;

    border-radius: 8px;

    padding: 12px 22px;

    font-size: 12px;

    font-weight: 600;
}

.hero-btn-primary:hover {
    background: #ec2d70;

    color: #fff;
}

.hero-btn-secondary {
    background: transparent;

    color: #fff;

    border: 1px solid rgba(255,255,255,.35);

    border-radius: 8px;

    padding: 12px 22px;

    font-size: 12px;

    font-weight: 500;
}

.hero-btn-secondary:hover {
    background: #fff;

    color: #111827;
}

.hero-features {
    display: flex;

    gap: 25px;

    margin-top: 30px;
}

.hero-features div {
    color: #d1d5db;

    font-size: 10px;

    display: flex;

    align-items: center;

    gap: 6px;
}

.hero-features i {
    color: #ff5c99;

    font-size: 14px;
}


/* =========================================================
   HERO FASHION CARD
========================================================= */

.hero-fashion-card {
    position: absolute;

    right: 70px;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #ff3d81,
            #c026d3
        );

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.fashion-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.2);
}

.circle-one {
    width: 330px;
    height: 330px;
}

.circle-two {
    width: 390px;
    height: 390px;
}

.fashion-card-content {
    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;
}

.fashion-card-content span {
    display: block;

    font-size: 13px;

    letter-spacing: 2px;
}

.fashion-card-content strong {
    display: block;

    font-size: 90px;

    line-height: .9;

    font-weight: 700;
}

.fashion-card-content small {
    font-size: 24px;

    font-weight: 700;
}

.fashion-card-content p {
    margin-top: 5px;

    font-size: 11px;

    opacity: .9;
}


/* =========================================================
   HOME SECTION
========================================================= */

.home-section {
    padding: 55px 0 10px;
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 25px;
}

.section-heading > div > span {
    color: #ff3d81;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    margin: 5px 0 0;

    font-size: 27px;

    font-weight: 700;

    color: #111827;
}

.view-all-link {
    color: #ff3d81;

    font-size: 12px;

    font-weight: 600;
}

.view-all-link:hover {
    color: #ec2d70;
}

.view-all-link i {
    margin-left: 4px;
}


/* =========================================================
   CATEGORY CARDS
========================================================= */

.category-card {
    display: block;

    overflow: hidden;

    border-radius: 14px;

    background: #111;

    position: relative;
}

.category-image {
    height: 260px;

    position: relative;

    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.8),
            transparent 65%
        );
}

.category-content {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 17px;

    color: #fff;
}

.category-content h4 {
    font-size: 18px;

    margin: 0 0 5px;

    font-weight: 600;
}

.category-content span {
    font-size: 10px;

    opacity: .85;
}

.category-content i {
    margin-left: 4px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    background: #fff;

    border-radius: 13px;

    overflow: hidden;

    border: 1px solid #eee;

    transition: all .25s ease;

    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.09);
}

.product-image-wrapper {
    height: 300px;

    background: #f4f4f5;

    position: relative;

    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.product-no-image {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    color: #aaa;

    gap: 5px;
}

.product-no-image i {
    font-size: 35px;
}

.product-no-image span {
    font-size: 11px;
}


/* =========================================================
   PRODUCT BADGES
========================================================= */

.discount-badge {
    position: absolute;

    left: 10px;
    top: 10px;

    z-index: 3;

    background: #ef4444;

    color: #fff;

    padding: 5px 8px;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 600;
}

.new-badge {
    position: absolute;

    left: 10px;
    top: 10px;

    z-index: 3;

    background: #10b981;

    color: #fff;

    padding: 5px 8px;

    border-radius: 5px;

    font-size: 9px;

    font-weight: 600;
}

.new-discount {
    top: 40px;
}


/* =========================================================
   WISHLIST BUTTON
========================================================= */

.wishlist-button {
    position: absolute;

    right: 10px;
    top: 10px;

    z-index: 5;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    border: none;

    background: #fff;

    color: #555;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 10px rgba(0,0,0,.08);

    transition: .2s;
}

.wishlist-button:hover {
    color: #ff3d81;

    transform: scale(1.08);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    padding: 14px;
}

.product-brand {
    display: block;

    color: #999;

    font-size: 9px;

    text-transform: uppercase;

    letter-spacing: .7px;

    margin-bottom: 4px;
}

.product-name {
    font-size: 13px;

    font-weight: 600;

    margin: 0 0 8px;

    line-height: 1.5;

    min-height: 39px;
}

.product-name a {
    color: #222;
}

.product-name a:hover {
    color: #ff3d81;
}


/* =========================================================
   RATING
========================================================= */

.product-rating {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 9px;
}

.rating-box {
    background: #16a34a;

    color: #fff;

    padding: 3px 6px;

    border-radius: 4px;

    font-size: 9px;

    font-weight: 600;
}

.rating-box i {
    font-size: 7px;
}

.rating-count {
    color: #999;

    font-size: 9px;
}


/* =========================================================
   PRICE
========================================================= */

.product-price {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 12px;
}

.product-price strong {
    color: #111827;

    font-size: 16px;
}

.product-price del {
    color: #999;

    font-size: 10px;
}


/* =========================================================
   ADD TO CART
========================================================= */

.add-cart-button {
    width: 100%;

    border: 1px solid #ff3d81;

    background: #fff;

    color: #ff3d81;

    border-radius: 7px;

    padding: 8px;

    font-size: 11px;

    font-weight: 600;

    transition: .2s;
}

.add-cart-button:hover {
    background: #ff3d81;

    color: #fff;
}


/* =========================================================
   OFFER SECTION
========================================================= */

.offer-section {
    padding: 60px 0 10px;
}

.offer-banner {
    min-height: 280px;

    border-radius: 20px;

    background:
        linear-gradient(
            110deg,
            #831843,
            #be185d,
            #db2777
        );

    color: #fff;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 45px 70px;
}

.offer-text {
    position: relative;

    z-index: 2;
}

.offer-text > span {
    font-size: 10px;

    letter-spacing: 2px;

    color: #fbcfe8;
}

.offer-text h2 {
    font-size: 38px;

    line-height: 1.1;

    margin: 10px 0;

    font-weight: 700;
}

.offer-text p {
    font-size: 12px;

    color: #fce7f3;
}

.offer-button {
    margin-top: 10px;

    background: #fff;

    color: #be185d;

    border: none;

    padding: 11px 20px;

    border-radius: 7px;

    font-size: 11px;

    font-weight: 600;
}

.offer-button:hover {
    background: #fdf2f8;

    color: #9d174d;
}

.offer-discount {
    position: relative;

    z-index: 2;

    width: 210px;
    height: 210px;

    border-radius: 50%;

    border: 2px dashed rgba(255,255,255,.5);

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    transform: rotate(-8deg);
}

.offer-discount span {
    font-size: 12px;

    letter-spacing: 2px;
}

.offer-discount strong {
    font-size: 70px;

    line-height: .9;
}

.offer-discount small {
    font-size: 22px;

    font-weight: 600;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    padding: 60px 0 70px;

    background: #fff;
}

.center-heading {
    justify-content: center;

    text-align: center;
}

.why-card {
    text-align: center;

    padding: 25px 18px;

    border: 1px solid #eee;

    border-radius: 14px;

    height: 100%;

    transition: .2s;
}

.why-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);
}

.why-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff1f6;

    color: #ff3d81;

    font-size: 23px;
}

.why-card h4 {
    font-size: 14px;

    font-weight: 600;

    margin-bottom: 8px;
}

.why-card p {
    color: #888;

    font-size: 10px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   EMPTY STATES
========================================================= */

.empty-products,
.empty-home-message {
    text-align: center;

    padding: 50px 20px;

    background: #fff;

    border: 1px dashed #ddd;

    border-radius: 12px;

    color: #999;
}

.empty-products i {
    font-size: 40px;

    color: #ff3d81;
}

.empty-products h4 {
    font-size: 17px;

    margin-top: 12px;

    color: #444;
}

.empty-products p {
    font-size: 11px;
}

/* =========================================================
   HOME PRODUCT STOCK
========================================================= */

.home-stock {

    display: flex;

    align-items: center;

    gap: 5px;

    font-size: 9px;

    font-weight: 600;

    margin-top: 7px;

    margin-bottom: 9px;

}

.home-stock.available {

    color: #16a34a;

}

.home-stock.unavailable {

    color: #dc2626;

}


/* =========================================================
   DISABLED PRODUCT BUTTON
========================================================= */

.add-cart-button.disabled {

    background: #e5e7eb;

    color: #9ca3af;

    cursor: not-allowed;

    border: none;

}

.add-cart-button.disabled:hover {

    background: #e5e7eb;

    color: #9ca3af;

}

.search-wrapper {
    width: 100%;
}

.search-button {
    cursor: pointer;
}

@media (max-width: 576px) {

    .search-wrapper .form-control {
        padding-right: 85px;
    }

    .search-button {
        padding: 0 13px;
        font-size: 10px;
    }

}


/* =========================================================
   HOME RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .hero-slider {
        min-height: 400px;

        padding: 45px;
    }

    .hero-content {
        max-width: 55%;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-fashion-card {
        right: 35px;

        width: 220px;
        height: 220px;
    }

    .fashion-card-content strong {
        font-size: 65px;
    }

    .category-image {
        height: 220px;
    }

    .product-image-wrapper {
        height: 260px;
    }

    .offer-banner {
        padding: 40px;
    }

}


@media (max-width: 767px) {

    .hero-slider {
        min-height: 470px;

        padding: 35px 25px;

        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-fashion-card {
        width: 145px;
        height: 145px;

        right: 25px;
        bottom: -35px;
    }

    .circle-one {
        width: 180px;
        height: 180px;
    }

    .circle-two {
        width: 215px;
        height: 215px;
    }

    .fashion-card-content strong {
        font-size: 42px;
    }

    .fashion-card-content span {
        font-size: 8px;
    }

    .fashion-card-content small {
        font-size: 13px;
    }

    .hero-features {
        gap: 12px;

        flex-wrap: wrap;
    }

    .hero-features div {
        font-size: 8px;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .category-image {
        height: 210px;
    }

    .product-image-wrapper {
        height: 230px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 11px;
    }

    .product-price strong {
        font-size: 14px;
    }

    .offer-banner {
        min-height: 350px;

        padding: 30px;

        align-items: flex-start;
    }

    .offer-text h2 {
        font-size: 30px;
    }

    .offer-discount {
        position: absolute;

        right: 20px;
        bottom: -50px;

        width: 170px;
        height: 170px;
    }

}


@media (max-width: 576px) {

    .hero-section {
        padding-top: 15px;
    }

    .hero-slider {
        border-radius: 14px;

        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 31px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-features {
        margin-top: 22px;
    }

    .category-image {
        height: 190px;
    }

    .product-image-wrapper {
        height: 210px;
    }

    .section-heading {
        align-items: center;
    }

    .view-all-link {
        font-size: 10px;
    }

    .product-rating {
        display: none;
    }

    .add-cart-button {
        font-size: 10px;
    }

}