html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
}

:root {
    --primary-color: #DF1BAE;
    --white-color: #fff;
    --black-color: #000;
    --sub-heading-bg: #ffeee0;
    --footer-bg: #FFF6FD;
    --border-color: #f0f0f0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    vertical-align: baseline;
    display: inline-block;
}

audio:not([controls]) {
    height: 0;
    display: none;
}

[hidden],
template {
    display: none;
}

a {
    background-color: #0000;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    margin: .67em 0;
    font-size: 2em;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub,
sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: none;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

html {
    height: 100%;
}

body {
    color: #000;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    line-height: 1.5;
    font-size: 18px;
    font-family: "Archivo", sans-serif;
    overflow: auto;
}

img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
}

html.w-mod-touch * {
    background-attachment: scroll !important;
}

/* Start of Navbar */

.navbar {
    background-color: rgb(255 255 255 / 75%) !important;
    backdrop-filter: blur(5px);
    box-shadow: 0px 5px 20px 0px #ffffff;
    z-index: 999;
}

.navbar-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(70% - 100px);
}

.navbar-link-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav {
    gap: 15px;
    margin-right: 0px !important;
}

.nav-link {
    border-bottom: 1px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #DF1BAE !important;
    border-color: #DF1BAE;
}

.navbar-menu-wrapper {
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 48px;
    height: 38px;
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-image: none;
    cursor: pointer;
}

.navbar-toggler-icon.active {
    position: absolute;
    top: 0px;
    right: 0px;
}

/* Hamburger lines */
.navbar-toggler-icon span {
    display: block;
    width: 28px;
    height: 2px;
    background: #777;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    transition: all 0.3s ease;
}

.navbar-toggler-icon.active span:nth-child(2) {
    opacity: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-width: 180px;
}

.footer-brand {
    width: fit-content;
}

.footer-brand img {
    max-width: 180px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: -9px;
    left: 99%;
    margin-left: 0.1rem;
    display: none;
}

.dropdown-submenu.show>.dropdown-menu {
    display: block;
}

.filter-list.show {
    display: block !important;
}

.nav_action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0px;
    margin: 0px;
}

.nav_action li {
    list-style: none;
}

.nav_action .btn {
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid #DF1BAE;
    background-color: #fff;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.nav_action .btn:hover {
    background-color: #DF1BAE;
}

.nav_action .btn:hover .feather {
    color: #fff;
}

.nav_action li a svg {
    width: 25px;
}

.search_bar {
    position: relative;
    align-items: center;
}

.search_bar input {
    padding: 8px 0px 8px 5px;
    border: none;
}

.search_bar button {
    background: transparent;
    border: none;
    padding-left: 10px;
}

.search_bar button:hover i {
    color: #DF1BAE;
}

.search-barBtn {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: none;
    background-color: transparent;
}

.search-barBtn:hover {
    background-color: #DF1BAE;
    transition: all .3s ease-in;
}

.search-barBtn:hover i {
    color: #fff;
    transition: all .3s ease-in;
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item.active {
    color: #DF1BAE;
}

.navbar.scrolled {
    position: sticky;
    top: 0px;
}

/* End of Navbar */

/* Start of Button */

.btn-bg-light {
    width: fit-content;
    height: 40px;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #DF1BAE;
}

.btn-bg-light:hover,
.btn-bg-light:focus-visible {
    background-color: #DF1BAE;
    color: #fff;
    transition: all .3s ease-in;
}

.btn-bg-light:hover .feather {
    color: #fff;
    transition: all .3s ease-in;
}

.btn-bg {
    background-color: #DF1BAE;
    border: 1px solid #DF1BAE;
    color: #fff;
}

.btn-bg:hover,
.btn-bg:focus-visible {
    background-color: #fff;
    border-color: #DF1BAE;
    color: #000;
    transition: all .3s ease-in;
}

.btn-bg .feather {
    color: #fff;
}

.btn-bg:hover .feather {
    color: #000;
    transition: all .3s ease-in;
}

/* End of Button */

/* Strat of common CSS */

.heading-container {
    max-width: 800px;
    margin: 0 auto;
}

.heading-container h1 {
    text-transform: capitalize;
    line-height: normal;
}

.heading-container p {
    max-width: 690px;
    margin: 0 auto;
}

.text-color-change {
    color: #DF1BAE;
    font-family: "Carattere", cursive;
    font-style: normal;
}

.sub-heading {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 20px;
    background-color: #ffeee0;
}

.sec-title {
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0px;
    color: #000;
    align-items: center;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #6c757d;
}

.breadcrumb-item a:hover {
    color: #DF1BAE;
}

.breadcrumb-arrow {
    font-size: 20px;
    margin: 0 5px;
}

.breadcrumb-arrow i {
    color: #6c757d;
}

.icon-heart-on {
    color: #ff0000;
}

.icon-trash-2 {
    color: red;
}

.banner-blog-sec {
    background-image: url(../img/common/image_faq.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}

.banner-blog-heading {
    text-align: left;
    color: #fff;
    padding: 60px 0px 60px 60px;
    background-image: linear-gradient(45deg, black, transparent);
}

.banner-blog-heading h1 {
    font-size: 62px;
}

.banner-hero {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #fff;
    background-repeat: no-repeat;
}

.banner-hero-text {
    font-size: 28rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1;
    color: #fff;
    letter-spacing: -10px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DF1BAE;
    border-radius: 50px;
}

#search-bar-form {
    opacity: 0;
    width: 0px;
    visibility: hidden;
    transform: translateX(100px);
    transition: all .3s ease-in;
}

#search-bar-form.active {
    opacity: 1;
    width: 200px;
    visibility: visible;
    transform: translateX(0);
    transition: all .3s ease-in;
}

/* End of common CSS */

/*Start of Home page */

.video-hero {
    position: relative;
    height: 1100px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 25%;
    transform: translateY(-33%);
    padding: 0 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 96px;
}

.hero-content p {
    max-width: 950px;
    margin: 0 auto;
}

.category-wrapper .contentDiv {
    padding: 30px 20px;
    border-radius: 50px;
    text-align: center;
    transition: all .3s ease-in;
}

.category-wrapper .contentDiv:hover span {
    text-shadow:
        0 0 5px #DF1BAE,
        0 0 10px #DF1BAE,
        0 0 20px #DF1BAE,
        0 0 40px #DF1BAE;
    transition: all .2s ease-in;
}

.category-wrapper .contentDiv:hover {
    color: #fff;
    box-shadow: inset 0px -14px 0px 0px #DF1BAE !important;
    transition: all .2s ease-in;
}

.category-wrapper .contentDiv._1 {
    background-color: #FFEACA;
    box-shadow: inset -5px -10px 0px 0px #AC7522;
}

.category-wrapper .contentDiv._2 {
    background-color: #FFE0DF;
    box-shadow: inset -5px -10px 0px 0px #C42924;
}

.category-wrapper .imageDiv {
    margin-bottom: -25px;
    margin-left: -25px;
}

.category-wrapper .imageDiv img {
    max-width: 200px;
}

.category-wrapper>div:hover img {
    animation: bounce2 2s ease infinite;
}

@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

/* ======================================= */


.cad-wrapper {
    position: relative;
    height: 750px;
}

.card-image-wrapper {
    position: relative;
}

.cad-wrapper .bg-image {
    position: absolute;
    top: 60%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.cad-wrapper .bg-image img {
    display: block;
    max-width: 1250px;
    margin: 0 auto;
    margin-bottom: -30px;
}

.reflection-wrapper {
    display: block;
    position: relative;
    max-width: 1250px;
    height: 200px;
    margin: 0 auto;
}

.reflection-image {
    position: absolute;
    top: auto;
    bottom: 0px;
    background-origin: padding-box;
    width: 1250px;
    height: 100%;
    background-image: url(../img/home/gift_craft_bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
    transform: scaleY(-1);
    opacity: 1;
    filter: blur(3px);

    mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0%), #000000);

    -webkit-mask-image: linear-gradient(to bottom, rgb(0 0 0 / 0%), #000000);
}

.card-item-wrapper {
    position: relative;
    height: 100%;
}

.card-items {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    height: fit-content;
}

.card-items .image-tag {
    width: 80px;
    height: 80px;
    padding: 15px;
    border-radius: 50px;
    background-color: #DF1BAE;
}

.card-items._1 {
    position: absolute;
    inset: 0 auto auto 10%;
}

.card-items._2 {
    position: absolute;
    inset: 30% auto auto 0%;
}

.card-items._3 {
    position: absolute;
    inset: 0 10% auto auto;
}

.card-items._4 {
    position: absolute;
    inset: 30% 0 auto auto;
}

/* ================================= */

.product-sec {
    position: relative;
}

.card.product-card h4 {
    font-size: 1.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card.product-card h4:hover {
    color: #DF1BAE;
    transition: all .3s ease-in;
}

.product-card {
    border-radius: 15px;
    background: #fff;
    height: 100%;
    justify-content: space-between;
}

.product-card .card-img-top {
    background: #FFF3EA;
    height: 320px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-card .card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all .3s ease-in;
}

.product-card .card-img-top img:hover {
    transform: scale(1.1);
    transition: all .3s ease-in;
}

.add-cart-btn {
    background: linear-gradient(90deg, #ff00a8, #ff4dc4);
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    font-weight: 500;
    border: none;
}

.add-cart-btn:hover {
    opacity: 0.9;
}

.card-body {
    flex: 0 1;
}

/* ============================ */

.gift-banner-sec {
    min-height: 550px;
    position: relative;
    padding: 80px 0 100px;
}

.gift-banner-wrapper {
    position: relative;
    background-image: url(../img/home/image_4_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    height: 660px;
}

.gift-banner-wrapper .banner-text {
    font-family: "Carattere", cursive;
    font-size: 96px;
    line-height: normal;
}

.left-img {
    transform: translate(-90px, 160px) rotate(-15deg);
    min-width: 443px;
}

.right-img {
    transform: translate(-55px, 85px) rotate(15deg);
    min-width: 260px;
}

/* Floating gift elements */
.floating {
    position: absolute;
    width: 80px;
    animation: float 6s infinite ease-in-out;
}

.gift1 {
    position: absolute;
    top: 0px;
    left: 8%;
    max-width: 1000px;
    z-index: 1;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* ================================= */

.blog-card-item {
    border-radius: 16px;
    overflow: hidden;
    background: #f3f3f3;
}

.blog-card-item .blog-card-img {
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: all .3s ease-in;
}

.blog-card-item .blog-card-img:hover {
    transform: scale(1.05);
    transition: all .3s ease-in;
}

.blog-card-item .card-body {
    padding: 40px;
}

.blog-card-item .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    font-family: "Archivo", sans-serif;
}

/* ============================ */

.swiper {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-card img {
    max-height: 140px;
}

/*End of Home page */

/* Start of aboutUs CSS */

.banner-about-sec {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}

.banner-about-wrapper {
    background-image: linear-gradient(0deg, #ffffff78, #ffffff00);
}

.banner-about-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    color: #000;
    padding: 180px 0px 80px;
}

.banner-about-heading h1 {
    font-size: 62px;
}

.banner-content p {
    max-width: 850px;
    margin: 0 auto;
}

.giftProduct {
    padding: 10px;
}

.Product-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
}

.Product-card img {
    width: auto;
    max-width: 200px;
    max-height: 150px;
    transition: all .3s ease-in;
}

.Product-card:hover img {
    transform: scale(1.1);
    transition: all .3s ease-in;
}

.about-newsletter {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}

.about-newsletter-heading {
    text-align: left;
    color: #fff;
    padding: 60px 0px 60px 60px;
    background-image: linear-gradient(90deg, #000000, #0000001c);
}

/* End of aboutUs CSS */

/* Start of manual payment CSS */

.logo-wrapper {
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 1;
}

.logo-bubble {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #c0392b 100%);
    border-radius: 18px 18px 18px 4px;
    padding: 14px 28px 18px 28px;
    display: inline-block;
    position: relative;
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.18);
}

.logo-bubble::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 18px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 0px solid transparent;
    border-top: 14px solid #c0392b;
}

.logo-daily {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.18);
}

.logo-dealzs {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    font-style: italic;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.22);
    margin-top: -4px;
}

.page-title {
    font-size: 1.65rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.detail-row {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
    line-height: 1.5;
}

.detail-row .val {
    font-weight: 700;
    color: #1a1a1a;
}

.v-divider {
    border-left: 1.5px solid var(--border-color);
    min-height: 160px;
}

.notes-label {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.notes-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
}

.notes-text strong {
    font-weight: 700;
    color: #1a1a1a;
}

.btn-submit {
    background-color: #3d2edb;
    color: var(--white-color);
    border: 1px solid #3d2edb;
    border-radius: 6px;
    font-size: 0.97rem;
    font-weight: 600;
    padding: 9px 48px;
    letter-spacing: 0.3px;
    margin: 0 auto;
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--black-color);
    border-color: var(--black-color);
}

.manual-payment-card {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
    padding: 40px 36px 36px 36px;
    background: #fff;
    max-width: 900px;
}

@media (max-width: 576px) {

    .manual-payment-card {
        padding: 30px 20px;
    }

    .v-divider {
        border-left: none;
        border-top: 1.5px solid #e0e0e0;
        min-height: unset;
        margin: 10px 0;
    }

    .payment-card {
        padding: 28px 16px 28px 16px;
    }

    .logo-dealzs {
        font-size: 1.5rem;
    }

    .logo-daily {
        font-size: 1.1rem;
    }
}

/* End of manual payment CSS */

/* Start of wishList CSS */

.Wishlist-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.Wishlist-card:hover {
    box-shadow: 0px 0px 8px 0px #DF1BAE;
}

.Wishlist-img-container {
    background-color: #f1f1f1;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    height: 320px;
}

.Wishlist-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.heart-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    color: #ff0000;
    cursor: pointer;
}

.heart-icon:hover {
    border-color: #DF1BAE;
    transition: all .3s ease-in;
}

.Wishlist-info {
    padding: 20px;
    position: relative;
}

.Wishlist-heading {
    color: #333;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 1.6rem;
    width: calc(100% - 80px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.Wishlist-heading a:hover {
    color: #DF1BAE;
    transition: all .3s ease-in;
}

.Wishlist-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
    margin: 0;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

/* End of wishList CSS */

/* Start of productDetail CSS */

.product-page-container {
    padding: 40px 0;
}

/* Swiper Styles */
#productMainSwiper.main-swiper {
    width: 100%;
    max-height: 550px;
    border-radius: 35px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-swiper {
    height: 150px;
    box-sizing: border-box;
    padding: 10px 0;
}

.thumb-swiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #DF1BAE;
}

.thumb-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Detail Styles */

.product-badge-discount {
    background-color: #DF1BAE;
    color: white;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.stock-progress {
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    margin: 10px 0;
    overflow: hidden;
}

.stock-bar {
    width: 30%;
    height: 100%;
    background-color: #ff00ba;
}

.size-box {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s;
}

.size-box.active,
.size-box:hover {
    background: black;
    color: white;
    border-color: black;
}

.color-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 12px;
    cursor: pointer;
    border: 2px solid white;
    outline: 1px solid #ddd;
}

.color-circle.active,
.color-circle:hover {
    outline: 2px solid #333;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: fit-content;
}

.quantity-btn {
    padding: 12px 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.quantity-btn:hover {
    color: #DF1BAE;
    transition: all .3s ease-in;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
}

.add-to-cart-large {
    padding: 12px 0;
    width: 100%;
    height: 100%;
}

.wishlist-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.two-line-ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.two-line-ellipsis.readMore {
    -webkit-line-clamp: unset;
}

.read-toggle {
    border: none;
    background-color: transparent;
}

/* End of productDetail CSS */

/* Start of productOverview CSS*/

.filter-sidebar {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 20px;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: #DF1BAE;
}

.filter-option:hover {
    color: #DF1BAE;
}

.inner-filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
}

.inner-filter-wrapper .filter-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.inner-filter-wrapper i {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
}

.inner-filter-wrapper[aria-expanded="true"] i,
.inner-filter-wrapper:not([aria-expanded="false"]) i {
    transform: rotate(180deg);
}

.inner-filter-items {
    padding: 10px 0;
}

.product-sidebar-widget-categories {
    max-height: 300px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-sidebar-widget-categories::-webkit-scrollbar {
    display: none;
}

.product-sidebar-widget-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-sidebar-widget-categories ul li {
    padding: 8px 0;
}

.product-sidebar-widget-categories ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.product-sidebar-widget-categories ul li .cat-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-sidebar-widget-categories ul li .toggle-icon {
    cursor: pointer;
    font-size: 12px;
    color: #666;
    padding: 4px;
    transition: transform 0.3s ease;
}

.product-sidebar-widget-categories li.has-sub.active > .cat-item-wrapper .toggle-icon {
    transform: rotate(180deg);
}

.product-sidebar-widget-categories ul li a:hover {
    color: #DF1BAE;
}

.product-sidebar-widget-categories ul li.has-sub > a {
    font-weight: 600;
}

.product-sidebar-widget-categories ul li.has-sub > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    margin-left: 8px;
    vertical-align: middle;
}

.product-sidebar-widget-categories .sub-category {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}

.product-sidebar-widget-categories ul li.has-sub > .sub-category {
    display: none;
}

.product-sidebar-widget-categories ul li.has-sub.active > .sub-category {
    display: block;
}

.load-more-btn {
    margin-top: 40px;
    cursor: pointer;
}

/* End of productOverview CSS*/


/* Start of cart CSS */

.cart-container {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    padding: 25px;
}

.cart-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item:first-child {
    padding-top: 0px;
}

.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.cart-item-img {
    width: 150px;
    height: 150px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-weight: 400;
    margin-bottom: 10px;
    color: #333;
    font-size: 28px;
    text-decoration: none;
    width: 480px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-title:hover {
    color: #DF1BAE;
    transition: all .3s ease-in;
}

.cart-item-btn {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cart-item-selectors {
    display: flex;
    gap: 15px;
    font-weight: 400;
    font-size: 20px;
}

.cart-item-selectors div {
    padding: 10px;
    background-color: #F3F3F3;
    border-radius: 5px;
}

.cart-select {
    border: none;
    border-radius: 4px;
    padding: 0px 8px 0px 0px;
    font-size: 16px;
    background: #f8f9fa00;
}

.cart-select:focus-visible {
    outline: 0px;
}

.cart-item-actions {
    display: flex;
    gap: 20px;
    color: #666;
}

.cart-action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
}

.cart-action-btn:hover {
    color: #DF1BAE;
}

.cart-item-price {
    font-weight: 500;
    font-size: 24px;
}

.order-summary-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.summary-total {
    border-top: 1px solid #ddd;
    margin-top: 15px;
    padding-top: 15px;
    font-weight: 500;
    font-size: 20px;
    color: #000;
}

.checkout-btn {
    width: 100%;
    height: 100%;
    padding: 12px;
    margin-top: 20px;
    border-radius: 30px;
}

.empty-sec {
    padding: 80px 0px;
}

.empty-wrapper {
    position: relative;
    background-color: #fff;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.empty-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.empty-image {
    max-width: 600px;
    margin: 0 auto;
}

.empty-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.empty-subtext {
    color: #666;
    margin-bottom: 30px;
}

/* End of cart CSS */

/* Start of address CSS */

.address-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#add-new-address,
#update-current-address {
    display: none;
}

.add-address-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    background-color: #FFF6FD;
}

.add-address-btn i {
    color: #DF1BAE;
}

.add-address-btn:hover i {
    color: #fff;
    transition: all .3s ease-in;
}

.address-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
    position: relative;
}

.address-type-badge {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}

.address-name {
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-name span {
    font-size: 24px;
    font-weight: 600;
}

.address-details p {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.address-details .address-info {
    font-size: 24px;
}

.address-label {
    color: #666;
    font-size: 18px;
}

.address-actions {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.address-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background-color: #FAFAFA;
}

.payment-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Address Card Styles */

.return-order-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 600;
    font-size: 1.1rem;
}

.return-address-card {
    background-color: #f0f0f0;
    border: none;
    border-radius: 12px;
    padding: 24px;
    max-width: 320px;
}

/* Checkbox Styles */
.reason-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    margin-bottom: 20px;
}

.form-check-label {
    color: #666;
    font-weight: 400;
}

/* Toggle Button Styles */
.toggle-group {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 50px;
    display: inline-flex;
    padding: 4px;
    margin-bottom: 20px;
}

.toggle-btn {
    border-radius: 50px !important;
    padding: 8px 30px !important;
    border: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: #DF1BAE !important;
    color: white !important;
}

.toggle-btn.inactive {
    background-color: transparent;
    color: #888;
}

/* Textarea Styles */
.description-box {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    resize: none;
    min-height: 120px;
    margin-bottom: 20px;
}

.description-box::placeholder {
    color: #ccc;
    font-size: 0.9rem;
}

/* End of address CSS */

/* Start of newAddres CSS */

.form-container {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    padding: 12px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: #000;
    box-shadow: none;
    background-color: #fff;
}

.address-type-container {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 25px;
}

.save-btn {
    padding: 10px 40px;
    border-radius: 8px;
    font-weight: 600;
    float: right;
}

/* End of newAddres CSS */

/* Start of orderPlaced CSS */

.thank-you-section {
    position: relative;
    background-color: #fff;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('../img/common/image_order_placed.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gift-box-bg {
    position: absolute;
    font-size: 40px;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
}

.confirmation-content {
    position: relative;
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
}

.check-circle {
    width: 80px;
    height: 80px;
    background-color: #00c853;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.check-circle i {
    font-size: 45px;
    color: #fff;
    font-weight: bold;
}

.thank-you-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.confirmation-subtext {
    color: #666;
    margin-bottom: 30px;
}

.done-btn {
    padding: 12px 100px;
    font-weight: 600;
    height: 100%;
    border-radius: 30px;
}

.continue-link {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    text-decoration: underline;
}

.continue-link:hover {
    text-decoration: underline;
    color: #DF1BAE;
}

/* End of orderPlaced CSS */

/* Start of contactUs CSS */

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-title span {
    color: #ff00ba;
}

.contact-desc {
    color: #000;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #fdfdfd;
}

.contact-form .form-control::placeholder {
    color: #aaa;
    font-size: 14px;
}

.submit-btn {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    margin-bottom: 30px;
    padding: 12px;
}

.contact-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    color: #333;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.address-footer {
    gap: 12px;
    justify-content: center;
    text-align: center;
    color: #333;
    line-height: 1.5;
}

.address-footer span {
    max-width: 400px;
}

.image-collage-wrapper {
    position: relative;
    padding-right: 90px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.pink-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: #f5c2e7;
    /* Light pink from image */
    border-radius: 0 40px 40px 0;
    z-index: 1;
}

.main-contact-img {
    position: relative;
    max-height: 550px;
    z-index: 2;
    width: 100%;
    border-radius: 4px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

/* End of contactUs CSS */

/* Start of profile CSS */

.sidebar-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 90px;
}

.sidebar-card .nav {
    gap: 10px;
}

.sidebar-link {
    color: #555;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.sidebar-link i {
    font-size: 1.2rem;
    margin-right: 15px;
}

.sidebar-link.active,
.sidebar-link:hover {
    background-color: #DF1BAE !important;
    color: #fff !important;
    border-radius: 10px;
    margin: 0 15px;
    width: calc(100% - 30px);
    box-shadow: 0 4px 10px rgba(236, 0, 140, 0.3);
}

.sidebar-link.active i,
.sidebar-link:hover i {
    color: #fff;
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.content-section.active {
    display: block;
}

.dropdown-list {
    display: block;
    width: 100%;
    padding: 5px 10px;
}

.dropdown-list:hover {
    color: var(--bs-dropdown-link-hover-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Generic Card Styling */

.dropdown-filter #filterBtn {
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px 10px;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 16px;
}

.dropdown-filter #filterBtn:active,
.dropdown-filter #filterBtn:hover {
    background-color: transparent !important;
    color: #000;
    box-shadow: none;
}

/* Order Styling (Existing) */
.order-card {
    border: 1px solid #eee;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
}

.order-card-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.order-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

.order-card-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-card-content p span {
    background-color: #f4f4f4;
    padding: 5px 10px;
    border-radius: 5px;
}

.order-action-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.order-action-wrapper button {
    font-size: 14px;
    text-decoration: underline;
}

.order-action-wrapper button:hover {
    color: #DF1BAE;
    transition: all .3s ease-in;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-completed {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-cancelled {
    background: #ffebee;
    color: #c62828;
}

.status-shipped {
    background: #fff8e1;
    color: #fbc02d;
}

/* Address Styling */
.address-item {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: border-color 0.3s;
}

.address-item.default {
    border-color: var(--primary-pink);
    background-color: #fff0f9;
}

.address-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.btn-pink {
    background-color: var(--primary-pink);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
}

.btn-pink:hover {
    background-color: #d4007d;
    color: white;
}

.profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
}

.edit-profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    display: none;
    animation: fadeIn 0.3s ease;
}

.profile-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
}

.edit-btn {
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.edit-btn:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.minimal-input-group {
    margin-bottom: 25px;
}

.minimal-label {
    display: block;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.required-star {
    color: #ff4d4f;
    margin-left: 3px;
}

.minimal-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
    transition: border-color 0.3s;
}

.minimal-input:focus {
    outline: none;
    border-bottom-color: var(--primary-pink);
}

.minimal-input::placeholder {
    color: #ccc;
}

.address-main-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.address-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}

.btn-add-address {
    border: 1px solid #f8e6f1;
    background-color: #fff;
    color: #333;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-add-address:hover {
    background-color: #fff0f9;
    border-color: var(--primary-pink);
}

.btn-add-address i {
    color: var(--primary-pink);
    font-size: 1.1rem;
}

.addr-card {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    height: 100%;
}

.addr-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
}

.addr-text {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    display: block;
}

.addr-contact {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.addr-contact b {
    color: #888;
    font-weight: 400;
}

.addr-actions {
    display: flex;
    gap: 12px;
}

.btn-addr-edit {
    flex: 1;
    border: 1px solid #eee;
    background: #fff;
    color: #333;
    border-radius: 8px;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-addr-remove {
    flex: 1;
    border: none;
    background-color: #fff1f0;
    color: #ff4d4f;
    border-radius: 8px;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-addr-edit:hover {
    background: #f8f9fa;
}

.btn-addr-remove:hover {
    background: #ffe4e1;
}

/* Update Address Form Styling */
.update-address-container {
    display: none;
    animation: fadeIn 0.3s ease;
}

.new-address-container {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-label-custom {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 400;
}

.custom-input {
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    margin-bottom: 20px;
    background: #fff;
}

.custom-input::placeholder {
    color: #ccc;
}

.custom-input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 2px rgba(236, 0, 140, 0.05);
}

.btn-save-changes {
    width: 100%;
    max-width: 400px;
    margin: 30px auto 0;
    display: block;
}

/* =================================== */

.tracking-view {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    display: none;
    animation: fadeIn 0.3s ease;
}

.return-view {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    display: none;
    animation: fadeIn 0.3s ease;
}

.back-btn {
    text-decoration: none;
}

.back-btn:hover i {
    color: #fff;
    transition: all .3s ease-in;
}

.tracking-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.tracking-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f8f8f8;
    font-weight: 600;
    font-size: 1.1rem;
}

.tracking-list {
    padding: 20px;
}

.tracking-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
}

.tracking-item:last-child {
    margin-bottom: 10px;
}

.tracking-item-left {
    display: flex;
    gap: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #eee;
    margin-top: 6px;
    flex-shrink: 0;
}

.status-dot.active {
    background-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.hub-name {
    font-weight: 500;
    color: #222;
    display: block;
}

.hub-sub {
    color: #aaa;
    font-size: 1rem;
}

.tracking-item-right {
    text-align: right;
}

.status-type {
    font-weight: 500;
    color: #333;
    display: block;
}

.status-time {
    color: #888;
    font-size: 1rem;
}

/* Timeline Footer */
.timeline-container {
    padding: 40px 20px;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 58px;
    left: 8%;
    right: 8%;
    height: 4px;
    background-color: #28a745;
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-point {
    text-align: center;
    width: 130px;
}

.step-icon {
    width: 36px;
    height: 36px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.1rem;
}

.timeline-container.cancelled .step-icon,
.timeline-container.cancelled .timeline-line {
    background-color: #FF0000;
}

.step-icon i {
    color: white;
}

.step-label {
    font-size: 16px;
    color: #888;
    margin-bottom: 2px;
}

.step-date {
    font-size: 14px;
    font-weight: 700;
    color: #222;
}

/* End of profile CSS */

/* Start of credential CSS */

.split-screen {
    display: flex;
}

/* Left side image */
.image-side {
    flex: 1;
    display: none;
}

.image-side img {}

@media (min-width: 768px) {
    .image-side {
        display: block;
    }
}

/* Right side form */
.form-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 40px;
}

.form-side .form-container {
    width: 100%;
    max-width: 480px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-top: 0px;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #000;
    margin-bottom: 20px;
}

.form-remember {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.form-remember span {
    display: flex;
    gap: 10px;
}

.form-resend-opt a {
    text-decoration: underline;
}

.otp-input {
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 5px #aaa;
}

.otp-input:focus {
    border-color: #DF1BAE;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.password-field-wrapper {
    position: relative;
}

.password-field-wrapper input {
    padding-right: 45px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 10px;
    color: #ccc;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-register {
    width: 100%;
    margin-top: 10px;
}

.btn-register:hover {
    transform: translateY(-1px);
}

.signin-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.signin-footer a {
    color: #000;
    text-decoration: underline;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .form-side {
        padding: 20px;
    }

    .form-title {
        font-size: 1.8rem;
    }
}

/* End of credential CSS */

/* Sart of FAQ CSS */

.faq-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #888;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Custom Accordion Styling */
.accordion-item {
    border: none;
    background-color: #f8f9fa;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 500;
    font-size: 1.5rem;
    padding: 25px 25px 15px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #333;
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 1rem;
}

.accordion-body {
    padding: 0 25px 25px;
    color: #666;
    font-size: 1.25rem;
}

/* End of FAQ CSS */

/* Start of blog CSS */

.blog-item:hover {
    box-shadow: 0px 0px 8px 0px #DF1BAE;
    transition: all .3s ease-in;
}

.blog-item:last-child {
    margin-bottom: 0px;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.blog-sub-heading {
    color: #DF1BAE;
    margin-bottom: 12px;
}

.blog-content h5 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #000;
    transition: all .3s ease-in;
}

.blog-content a:hover h5 {
    color: #DF1BAE;
    transition: all .3s ease-in;
}

.blog-content p {
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    border: 1px solid #f0f0f0;
    padding: 25px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-content{
    flex: 1;
    min-width: 0;
}

.blog-content h5 {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 12px;
    color: #000;
    transition: all .3s ease-in;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    word-break: break-word;
}

.blog-content p {
    color: #666;
    margin-bottom: 12px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    word-break: break-word;
}

/* Sidebar Styling */

.blog-sidebar-box-wrapper {
    position: sticky;
    top: 100px;
}

.blog-sidebar-box {
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.blog-sidebar-title {
    font-size: 1.35rem;
    font-weight: 500;
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    text-transform: capitalize;
}

.blog-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-list li {
    border-bottom: 1px solid #f0f0f0;
}

.blog-sidebar-list li:last-child {
    border-bottom: none;
}

.blog-sidebar-list a {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    transition: background 0.2s;
}

.blog-sidebar-list a:hover {
    background-color: #f8f9fa;
    color: #000;
}

.blog-sidebar-img {
    margin: 20px 0px;

}

.blog-sidebar-img img {
    object-fit: cover;
}

/* Blog Detail View Styles */

.inner-detail-title {
    margin-top: 0px;
    font-size: 3rem;
    font-weight: 500;
}

.inner-blog-hero-img {
    width: 100%;
    max-height: 500px;
    object-fit: fill;
    border-radius: 15px;
    margin-bottom: 40px;
}

.inner-blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 60px;
}

.inner-related-section {
    border-top: 1px solid #eee;
    padding-top: 50px;
    margin-top: 50px;
}

.inner-related-title {
    font-weight: 500;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.inner-related-card {
    margin-bottom: 30px;
}

.inner-related-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 30px;
}

.inner-related-card h6 {
    font-weight: 500;
    font-size: 2rem;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inner-related-card h6:hover {
    color: #DF1BAE;
    transition: all .3s ease-in;
}

/* End of blog CSS */

/* Start of footer CSS */

.footer {
    background-color: #FFF6FD;
    padding: 60px 0px 25px;
}

.footer-links-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    display: flex;
}

.footer-link-title {
    color: #000;
    font-weight: 500;
    font-size: 24px;
}

.footer-links-wrap {
    gap: 25px;
    flex-flow: column;
    display: flex;
}

.footer-link {
    width: fit-content;
    color: #000;
    text-decoration: none;
    transition: all .3s ease-in;
}

.footer-link:hover {
    color: #DF1BAE;
    transform: translateX(10px);
    transition: all .3s ease-in;
}

.footer-link.active {
    color: #DF1BAE;
}

.footer-social-links-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    display: flex;
}

.social-link {
    border: 1px solid #000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 12px;
    transition: all .3s;
    display: flex;
}

.social-link i {
    font-size: 24px;
}

.social-link img {
    max-width: 22px;
}

.social-link:hover {
    background-color: #DF1BAE;
    box-shadow: none;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info {
    display: grid;
    gap: 20px;
    grid-template-columns: .1fr 1fr;
}

.contact-info p {
    line-height: 1.4;
}

.contact-info .image {
    width: 100%;
    max-width: 30px;
    margin: 0 auto;
}

.contact-info .image i {
    font-size: 26px;
}

.contact-info a {
    width: max-content;
}

.newsletter-wrapper h4 {
    font-family: "Archivo", sans-serif;
    margin-right: 7rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 7rem;
}

.border-light {
    border-color: #000 !important;
    margin: 20px 0px;
}

.subscribe-btn {
    background: #000;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
}

.subscribe-btn:hover {
    background: #333;
}

/* ================================ */

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 20px;
    background: #fff;
    border-top: 1px solid #ddd;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
}

.mobile-bottom-nav .nav-link {
    color: #777;
    font-size: 12px;
    padding: 10px 0 5px;
    margin-bottom: 5px;
    transition: 0.3s;
}

.mobile-bottom-nav .nav-link i {
    display: block;
    font-size: 22px;
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-link.active,
.mobile-bottom-nav .nav-link:hover {
    color: #0d6efd;
}

.profile-menu {
    position: absolute;
    bottom: 50px;
    right: 10px;
    width: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    display: none;
    z-index: 999;
}

.profile-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.profile-menu a:hover {
    background: #f1f1f1;
}

/* Hide on desktop */
@media (min-width: 768px) {
    .mobile-bottom-nav {
        display: none;
    }
}

/* End of footer CSS */

/* Search Autocomplete */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-results-dropdown.show {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 12px;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 500;
    margin-bottom: 2px;
    color: #333;
}

.search-result-price {
    font-size: 14px;
    color: #666;
}

.search-result-price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

.search-no-result {
    padding: 15px;
    text-align: center;
    color: #666;
}

.category-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.category-card:hover {
    box-shadow: 0px 0px 8px 0px var(--primary-color);
}

.category-img-container {
    background-color: #f1f1f1;
    padding: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    height: 320px;
}

.category-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-info {
    padding: 20px;
    position: relative;
}

.category-heading {
    color: #333;
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 1.6rem;
    width: calc(100% - 0px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-heading a:hover {
    color: var(--primary-color);
    transition: all .3s ease-in;
}

.short-desc.collapsed {
    display: -webkit-inline-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    vertical-align: bottom;
    max-width: calc(100% - 85px);
}

.short-desc.expanded {
    display: inline;
}

.read-toggle {
    display: inline;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .short-desc.collapsed {
        max-width: calc(100% - 75px);
    }
}

.sort-select {
    width: 15%;
    min-width: 220px;
}

@media (max-width: 768px) {
    .sort-select {
        width: 10%;
        min-width: 50%;
    }
}

.payment-logo{
    height: 55px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px){
    .payment-logo{
        height: 45px;
        max-width: 150px;
    }
}

.pagination .page-link:focus,
.pagination .page-link:active {
    outline: none !important;
    box-shadow: none !important;
}
