@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


h1, h2, h3, h4, h5, h6 {
font-family: "Playfair Display", serif!important;
font-weight: 400 !important;
}

h1 {font-size: clamp(1.75em,5vw, 2.5em) !important; line-height: 1.2em !important; font-weight:400 !important;}
h2 {font-size: clamp(1.5em,5vw, 2em) !important; line-height: 1.2em !important; font-weight:400 !important;}
h3 {font-size: clamp(1.35em,5vw, 1.5em) !important; line-height: 1.2em !important; font-weight:400 !important;}
h4 {font-size: clamp(1.25em,5vw, 1.4em) !important; line-height: 1.2em !important; font-weight:400 !important;}
h5 {font-size: clamp(1.15em,5vw, 1.3em) !important; line-height: 1.2em !important; font-weight:400 !important;}
h6 {font-size: clamp(1.05em,5vw, 1.2em) !important; line-height: 1.2em !important; font-weight:400 !important;}

/* ---header css--- */
/* Main Header Pill Container */
.custom-pill-header .anarkali-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 10px 40px;
    margin-top: 20px;
    /* Soft shadow */
    width: 100%;
}

/* Flex Alignments */
.custom-pill-header .header-left {
    flex: 0 0 auto;
}

.custom-pill-header .header-center {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.custom-pill-header .header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    /* Gap between Search and the rest of the buttons */
}

/* Ensure the buttons wrapper inside header-right is flex */
.custom-pill-header .header-right .header-top-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Space between icons */
}

/* Navigation Styling */
.custom-pill-header .navigation.primary-menu>li>a {
    font-weight: 500;
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* Active Menu Item (Pink Pill) */
.custom-pill-header .navigation.primary-menu>li.current-menu-item>a,
.custom-pill-header .navigation.primary-menu>li.current_page_item>a {
    background-color: #fcebf3;
    /* Pinkish background from image */
    color: #d11e64;
    /* Pink text from image */
    font-weight: 600;
}

/* Icons Reset */
.custom-pill-header .top-action-btn {
    margin: 0 !important;
    /* Override default theme margins */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

/* Check header.php content again - sometimes themes wrap icons in .top-action-btn. 
   We want the Cart Icon to be special (Black Circle) */

/* Cart Icon Styling */
.custom-pill-header .top-action-btn[data-name="cart"] {
    background-color: #1a1a1a;
    /* Black circle */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #fff;
    /* White icon */
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    order: 10;
    /* Force Cart to be last */
}

.custom-pill-header .top-action-btn[data-name="cart"] svg {
    fill: #fff;
    /* Ensure SVG is white */
    stroke: #fff;
    width: 20px;
}

/* Count Badge on Cart */
.custom-pill-header .top-action-btn[data-name="cart"] .anarkali-cart-count {
    background-color: #d11e64;
    /* Pink badge */
    color: #fff;
    top: 0;
    right: 0;
    width: 18px;
    height: 18px;
    line-height: 18px;
    font-size: 10px;
    border: 2px solid #fff;
    /* White border around badge */
}

/* Hover effects */
.custom-pill-header .top-action-btn:hover svg {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* General SVG Color */
.custom-pill-header .top-action-btn svg {
    width: 22px;
    height: 22px;
}

/* =========================================
   Responsive Sidebar Menu Styles
   ========================================= */
.anarkali-responsive-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    /* Hidden by default */
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.anarkali-responsive-sidebar.active {
    left: 0;
}

.anarkali-responsive-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.anarkali-responsive-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Header */
.responsive-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f1f1f1;
}

.custom-sidebar-close {
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Search */
.responsive-sidebar-search {
    padding: 15px 20px;
    background: #fff;
}

.responsive-sidebar-search form {
    position: relative;
}

.responsive-sidebar-search input[type="search"] {
    width: 100%;
    border-radius: 30px;
    border: 1px solid #eee;
    background: #f9f9f9;
    padding: 10px 15px 10px 40px;
}

.responsive-sidebar-search .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Content Area */
.responsive-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 20px;
}

/* Menu */
.responsive-main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsive-main-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f9f9f9;
}

/* Static Links */
.responsive-static-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.responsive-static-links .static-link {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Account Area */
.responsive-account-area {
    margin-top: 30px;
}

.responsive-heading {
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.auth-buttons-row {
    display: flex;
    gap: 10px;
}

.btn-auth-white,
.btn-auth-pink {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.btn-auth-white {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
}

.btn-auth-pink {
    background: #e91e63;
    color: #fff;
    border: 1px solid #e91e63;
}

/* Footer Contacts */
.responsive-footer-contacts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f1f1f1;
    color: #666;
    font-size: 14px;
}

.responsive-footer-contacts .contact-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}


header.anarkali-header-default{
position:unset !important;	
}
header.anarkali-header-default {
position: unset !important;
min-height: auto !important;
max-height: unset !important;
background: transparent !important;
border: unset !important;
box-shadow: 0px 5px 5px 0px #0000001A;
}
.home header.anarkali-header-default{
position:absolute !important;	
box-shadow: unset !important;
}
.home .has-sticky-header.scroll-start header.anarkali-header-default {
    position: fixed !important;
    background: transparent !important;
    box-shadow: unset !important;
}
.header-spacer {
display: none;
}
span.mega-menu-description {
display: none !important;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
color: #DB2777 ! IMPORTANT;
font-family: Playfair Display;
font-weight: 400 !important;
font-size: 18px;
line-height: 28px;
letter-spacing: 0px;
text-transform: capitalize !important;
border-bottom: 1px solid #FCE7F3;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-megamenu > ul.mega-sub-menu {
width: 550px !important;
padding: 20px !important;
box-shadow: 0px 20px 25px -5px #0000001A !important;
left: 50%;
transform: translateX(-50%) !important;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu {
display: flex !important;
gap: 40px !important;
}
#mega-menu-wrap-header_menu #mega-menu-header_menu > li.mega-menu-item > a.mega-menu-link {
font-weight: 500 !important;
}



/* ---banner section css--- */
.hero-slider span.banner-upper-text {
font-family: Poppins;
font-weight: 500;
font-size: 12px;
line-height: 14px;
letter-spacing: 1.08px;
text-transform: uppercase;
background: #FFFFFF1A;
border: 0.9px solid #FFFFFF33;
border-radius: 30px;
position: relative;
padding: 6px 20px;
display: flex;
gap: 5px;
width: fit-content;
}

.hero-slider span.banner-upper-text::before {
content: "";
position: relative;
background: url(/wp-content/uploads/2025/12/star-icon.png);
background-size: contain;
width: 10px;
height: 10px;
background-repeat: no-repeat;
}
.hero-slider .banner-heading {
font-family: "Playfair Display", serif !important;
margin: 15px 0 15px;
}
.hero-slider .banner-heading span {
font-style: italic;
color: #DB2777;
} 
.hero-slider p.anarkali-slide-text {
max-width: 40%;
}
.anarkali-btn {
height: auto !important;
background: #DB2777 !important;
box-shadow: 0px 0px 18.05px 0px #DB27774D;
}
.hero-slider a#banner-btn-2::after {
content: "";
position: relative;
background: url(/wp-content/uploads/2025/12/arrow-btn-icon.png);
width: 13px;
height: 12px;
background-repeat: no-repeat;
background-size: contain;
}
.hero-slider a#banner-btn-2 {
position: relative;
background: #fff !important;
color: #1E1E1E;
gap: 10px;
}

.hero-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
width: 8px!important;
height: 30px!important;
opacity: 1;
border-radius: 100px !important;
background: #fff;
}
.hero-slider .swiper-pagination-bullet {
width: 8px !important;
height: 8px !important;
opacity: 1 !important;
padding: 0 !important;
border-radius: 50px !important;
}

.anarkali-main-slider .swiper-pagination,
.anarkali-swiper-theme .anarkali-main-slider .swiper-pagination {
position: absolute !important;
top: 50% !important;                /* vertical center */
right: 28px !important;             /* distance from right edge - change as needed */
transform: translateY(-50%) !important;
bottom: auto !important;
left: auto !important;
width: auto !important;
display: flex !important;
flex-direction: column !important;  /* stack bullets vertically */
align-items: center !important;
gap: 12px !important;               /* spacing between bullets */
pointer-events: auto !important;
z-index: 50 !important;
}
.anarkali-slide-inner {padding-left: 11em !important;}
header.anarkali-header-default.header-width-default.custom-pill-header.sticky-start .anarkali-header-content {margin-top: 0;}

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

/* curated collections css */

.curated-heading-3 .elementor-heading-title, .collection-box-heading .elementor-heading-title {
font-family: "Playfair Display", serif !important;
}
.collection-box a.elementor-button {
position: relative;
display: flex;
align-items: center;
width: fit-content;
gap: 5px;
}

.collection-box a.elementor-button::after {
content: "";
position: relative;
background: url(/wp-content/uploads/2025/12/arrow-btn-icon.png);
width: 13px;
height: 12px;
background-repeat: no-repeat;
background-size: contain;
filter: invert(1);
}
.collection-box-text {
bottom: 30px !important;
left: 30px !important;
}
.collection-box.e-flex.e-con.e-child {
border-radius: 20px;
overflow: hidden;
}

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

/* arrived css */

.arrived-product-area .anarkali-tab-header {
display: none;
}
.arrived-product-area span.anarkali-label.anarkali-discount {
display: none;
}
.arrived-product-area span.anarkali-small-title.anarkali-stock-status.instock {
display: none;
}
.arrived-product-area .quantity.type-number {
display: none;
}
.arrived-product-area .anarkali-thumb-wrapper.anarkali-thumb-slider a.product-link {
display: block;
}
.arrived-product-area .anarkali-thumb-wrapper.anarkali-thumb-slider a.product-link img {
width: 100%;
border-radius: 14px;
}
.arrived-product-area .woocommerce.anarkali-product.ptype-simple {
border: 1px solid #F3F4F6;
background: #fff;
border-radius: 20px;
padding: 10px;
}

.arrived-product-area .anarkali-mini-icon .anarkali-product-button {
width: 32px;
height: 32px;
border-radius: 50px;
cursor: pointer;
box-shadow: 0px 0.9px 2.71px 0px #0000001A;
}
.arrived-product-area .anarkali-mini-icon.hint-top.btns-inline {
position: absolute;
top: 25px;
right: 20px;
flex-direction: column;
row-gap: 5px;
}
.arrived-product-area .anarkali-mini-icon svg {
max-width: 20px;
max-height: 18px;
}

.arrived-product-area .anarkali-mini-icon.hint-top.btns-inline {
position: absolute;
top: 25px;
right: 20px;
flex-direction: column;
row-gap: 5px;
} 
.arrived-product-area button.single_add_to_cart_button.anarkali-btn span.cart-text {
display: none;
}
.arrived-product-area form.loop-cart .single_add_to_cart_button {
position: relative;
width: 37px !important;
height: 37px !important;
display: inline-block;
flex: unset;
box-shadow: unset;
border-radius: 50% !important;
padding: 0 !important;
min-height: unset;
background: #fff !important;
}
.arrived-product-area form.loop-cart .anarkali-svg-icon {
display: none;
}

.arrived-product-area form.loop-cart .single_add_to_cart_button::before {
content: "";
position: absolute;
background: url(/wp-content/uploads/2025/12/puls-icon.png);
width: 15px;
height: 15px;
background-size: contain;
background-position: center;
background-repeat: repeat;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.arrived-product-area form.loop-cart {
position: absolute;
bottom: 120px;
right: 20px;
}


.anarkali-tab-wrapper .anarkali-swiper-container .anarkali-swiper-prev, .anarkali-tab-wrapper .anarkali-swiper-container .anarkali-swiper-next {
position: absolute !important;
width: 44px !important;
height: 44px !important;
left: unset !important;
top: unset !important;
bottom: 40px !important;
transform: unset !important;
color: #000 !important;
background-color: transparent !important;
border-radius: 50% !important;
opacity: 1 !important;
visibility: unset !important;
z-index: 2;
border: 1px solid #000 !important;
display: flex;
align-items: center !important;
line-height: 30px;
}

.anarkali-tab-wrapper .anarkali-swiper-container .anarkali-swiper-next {
right: calc(50% - 40px) !important;
}

.anarkali-tab-wrapper .anarkali-swiper-container .anarkali-swiper-prev {
left: calc(50% - 60px) !important;
}
.default.anarkali-swiper-container {
padding-bottom: 100px !important;
}

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

/* ---royal wedding css--- */

.royal-wedding-box {
background: #FFFFFF00;
box-shadow: 0px 8px 16px 0px #0000001A;
border-radius: 0px 20px 20px 0px !important;
overflow: hidden !important;
}
.royal-wedding-img {
border-radius: 20px 0 0px 20px !important;
overflow: hidden !important;
}
.arrive-btn a.elementor-button {
background: transparent !important;
}

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

/* handwoven banarasi css */

.handwoven-price-2 .elementor-heading-title, .handwoven-heafing-2 .elementor-heading-title {
font-family: "Playfair Display", serif !important;
}

.handwoven-price-box {
    width: auto !important;
    right: 30px !important;
    left: unset !important;
    top: 30px !important;
}

.deal-month-text .elementor-heading-title {
background: #DB2777;
width: fit-content;
border-radius: 30px;
padding: 8px 15px;
}
.handwoven-timer .elementskit-days {
display: none;
}

.handwoven-timer .elementskit-countdown-timer {
    gap: 20px;
}

.handwoven-timer .ekit-countdown-inner {
background: transparent !important;
width: auto !important;
height: auto !important;
}

.handwoven-timer .elementskit-timer-count {
font-family: "Playfair Display", serif !important;
font-weight: 400 !important;
font-size: 32px !important;
line-height: 1.2em;
letter-spacing: 0px;
text-align: center;
}

.handwoven-timer .elementskit-timer-title {
font-family: Poppins;
font-weight: 400;
font-size: 12px;
line-height: 14.44px;
letter-spacing: 1.08px;
text-align: center;
text-transform: uppercase;
color: #6A7282 !important;
}
.handwoven-timer {
width: 100% !important;
}
.handwoven-timer .ekit-wid-con .elementskit-countdown-timer {
width: auto !important;
flex: unset !important;
justify-content: flex-start;
}
.handwoven-timer .ekit-wid-con .elementskit-countdown-timer .elementskit-timer-container {
width: auto !important;
flex: unset;
}
.handwoven-timer {
border-top: 1px solid #FFFFFF1A;
border-bottom: 1px solid #FFFFFF1A;
padding: 20px 0 20px;
margin-top: 30px;
}

.handwoven-timer .elementor-widget-container {
margin: 0 !important;
}




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

/* ---stories css--- */

.stories-user-img-text figure.elementor-image-box-img {
width: 75px !important;
position: relative;
}
.stories-user-img-text figure.elementor-image-box-img img {
border-radius: 50px;
width: 63px;
height: 63px;
position: relative;
border: 5px solid #f6efd7;
}
p.elementor-image-box-description span {
font-family: Poppins;
font-weight: 500;
font-size: 13px;
line-height: 18.05px;
letter-spacing: 0px;
color: #DB2777;
padding-left: 20px;
}
p.elementor-image-box-description {
font-size: 13px;
}
h5.elementor-image-box-title {
margin-bottom: 5px;
}
.stories-user-img-text {
margin-bottom: 15px !important;
}
.stories-box {
border: 1px solid #F3F4F6;
padding: 50px 40px !important;
border-radius: 20px!important;
background: #fff;
position: relative;
overflow: hidden !important;
}
.elementor-element.quote-img {
position: absolute;
right: 40px;
top: 40px;
opacity: 0.15;
}

.stories-box::after {content: "";
position: absolute;
width: 100%;
height: 5px;
background: linear-gradient(180deg, #DB2777 0%, #D4AF37 50%, rgba(0, 0, 0, 0) 100%);
bottom: 0;
left: 50%;
transform: translateX(-50%);
border-radius: 30px;
}
.stories-user-img-text .elementor-image-box-wrapper {
align-items: center !important;
}

.trusted-text .elementor-heading-title {
background: #DB27771A;
padding: 12px 20px;
border-radius: 50px;
display: flex;
gap: 10px;
position: relative;
}
.trusted-text .elementor-heading-title::before {
content: "";
position: relative;
background: url(/wp-content/uploads/2025/12/star-icon.png);
background-size: contain;
width: 13px;
height: 13px;
background-repeat: no-repeat;
}
.clint-counter .elementor-counter-number-wrapper {
font-family: "Playfair Display", serif !important;
}

/* ---occasion css--- */

.occasion-text .trusted-text {
width: fit-content;
}


/* ---home blog css--- */

.home-post-area h6.anarkali-post-author, h6.anarkali-post-date {
font-family: Poppins !important;
font-weight: 500 !important;
font-size: 13px !important;
line-height: 14.2px;
letter-spacing: 0.53px;
text-transform: uppercase !important;
color: #FCCEE8 !important;
}
.home-post-area h5.anarkali-post-title a {
font-weight: 700;
line-height: 24.41px;
letter-spacing: 0px;
}
.home-post-area p.anarkali-post-excerpt {
color: #D1D5DC !important;
font-size: 13px;
}
.home-post-area .anarkali-blog-post-item {
    border-radius: 20px;
    overflow: hidden;
}
.style-card .anarkali-blog-post-item-inner:before {
content: "";
position: absolute;
top: unset !important;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgba(0, 0, 0, 0.4) 50%, rgb(0 0 0) 100%) !important;
}


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

/* ---footer css--- */

.footer-heading .elementor-heading-title {
font-family: "Playfair Display", serif !important;
}
.footer-logo p {
max-width: 70%;
}

/* Newsletter Form Wrapper */
.newsletter-form {
position: relative;
max-width: 520px;
width: 100%;
}
/* Email Input */
.newsletter-form input[type="email"] {
width: 100%;
height: 60px;
padding: 0 170px 0 25px !important;
border-radius: 50px;
border: 1px solid #ffd1e1 !important;
background: #fff;
font-size: 16px;
outline: none;
box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.05);
}

/* Placeholder color */
.newsletter-form input::placeholder {
color: #999;
}
/* Submit Button */
.newsletter-form input[type="submit"] {
position: absolute;
right: 6px;
top: 50%;
transform: translateY(-50%);
height: 48px;
padding: 0 30px !important;
border-radius: 50px !important;
background: #111;
color: #fff;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}

/* Hover effect */
.newsletter-form input[type="submit"]:hover {
background: #000;
}
.subscribe-area span.wpcf7-spinner {
position: absolute;
}

.main-footer {
overflow: hidden;
z-index: 1;
position: relative;
}
.main-footer::after {
content: "";
position: absolute;
width: 350px;
height: 350px;
top: -130px;
right: -130px;
border-radius: 50%;
background: #e1d5dc;
z-index: -1;
}

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

/* ---instagram section css--- */

.insta-text {
width: fit-content;
margin-left: auto;
border: 0.9px solid #E5E7EB;
box-shadow: 0px 0.9px 1.8px -0.9px #0000001A;
padding: 15px 19px;
border-radius: 50px;
font-family: Poppins;
font-weight: 500;
font-size: 13px;
line-height: normal;
letter-spacing: 0px;
text-align: center !important;
position: relative !important;
display: flex;
gap: 6px !important;
align-items: center !important;
background: #fff;
}

.insta-text::before {
content: "";
position: relative;
background: url(/wp-content/uploads/2025/12/instagram-icon.png);
background-size: contain;
width: 15px;
height: 15px;
background-repeat: no-repeat;
}
.instagram-section {
background: linear-gradient(180deg, #FDF2F8 0%, rgba(253, 242, 248, 0) 196.55%);
}
.royal-wedding-box {
background: #FAF9F6 !important;
}
.arrive-btn {
margin-top: 20px;
}
.arrived-product-area .woocommerce.anarkali-product.ptype-simple .anarkali-price-buttons.anarkali-inline-two-block.loop-price {
order: 8;
}
.arrived-product-area .anarkali-price-buttons.anarkali-inline-two-block.loop-price bdi {
font-family: Poppins;
font-weight: 700;
font-size: 14px;
line-height: 21.65px;
letter-spacing: 0px;
}
.anarkali-product .anarkali-product-name a {
color: #1A1A1A;
font-size: 18px;
font-weight: 400;
line-height: normal;
}
.anarkali-product .anarkali-product-name {
height: 45px;
}
body ul.ht-tab-menus {
display: flex;
justify-content: end;
gap: 10px !important;
margin: 0 !important;
margin-top: -94px !important;
padding-bottom: 50px;
width: fit-content;
margin-left: auto !important;
}
body ul.ht-tab-menus li {
margin: 0;
}
body ul.ht-tab-menus li a.htactive {
border-color: transparent !important;
}
.woolentor-product-same-height.ht-products .ht-product .ht-product-inner {
padding: 15px !important;
border-radius: 20px;
}
.woolentor-product-same-height.ht-products .ht-product .ht-product-inner img.attachment-woocommerce_thumbnail {
    border-radius: 12px !important;
}

.trending-slider .slick-arrow {
display: none !important;
}
.trending-slider .ht-products .ht-product .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-price {
margin: 0 !important;
}
.trending-slider .ht-products .ht-product .ht-product-inner .ht-product-image-wrap .ht-product-image .ht-product-image-slider .slick-dots {
position: absolute;
bottom: 10px;
}
.trending-slider .ht-products .ht-product .ht-product-inner .ht-product-image-wrap .ht-product-image .ht-product-image-slider .slick-dots li {
margin: 0 !important;
border: 0;
}
.ht-products .ht-product .ht-product-inner .ht-product-image-wrap .ht-product-label.ht-product-label-right {
background: #fff !important;
color: #DB2777 !important;
font-family: Poppins;
font-weight: 600;
font-size: 13px;
line-height: 13.53px;
letter-spacing: 0.9px;
text-transform: uppercase;
padding: 5px 8px;
border-radius: 50px;
}
.ht-category-image.ht-category-image-zoom {
height: 450px;
}
.ht-category-wrap .ht-category-image-zoom a img {
height: 450px !important;
object-fit: cover;
object-position: top;
}
.ht-category-wrap .ht-category-image a.ht-category-border::before {
display: none;
}
.ht-category-wrap .ht-category-image {
border-radius: 20px;
margin: 0;
}
.ht-category-wrap .ht-category-content {
position: absolute;
bottom: 40px;
left: 0;
flex-direction: column;
align-items: flex-start !important;
width: 100% !important;
padding: 0 40px;
z-index: 2;
}
.ht-category-wrap::before {
content: "";
position: absolute;
top: unset !important;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 18%) 50%, rgb(0 0 0) 100%) !important;
z-index: 1;
border-radius: 20px;
}
.ht-category-wrap {
margin: 0;
position: relative;
}
.ht-category-wrap .ht-category-content span::before {
display: none;
}
.ht-category-wrap .ht-category-content h3 a {
color: #fff !important;
}
.ht-category-wrap .ht-category-content h3 {
font-size: 26px !important;
line-height: 1.2em;
letter-spacing: 0px;
color: #fff !important;
width: 100%;
border-bottom: 1px solid #ffffff54 !important;
padding-bottom: 15px;
margin-bottom: 15px !important;
}
.ht-category-wrap .ht-category-content span {
color: #fff;
font-size: 15px;
line-height: 1;
position: relative;
display: flex !important;
gap: 5px !important;
}
.ht-category-wrap .ht-category-content span::after {
content: "Items";
}

.ht-category-wrap .ht-category-content h3 a::after {
content: "";
position: absolute;
width: 40px;
height: 40px;
background: url(/wp-content/uploads/2025/12/white-arrow-icon.png);
bottom: -20px;
right: 40px;
background-size: cover;
background-repeat: no-repeat;
}
.insta-slider .anarkali-image-wrapper {
border-radius: 20px;
}

a.anarkali-read-more {font-family: Poppins;font-weight: 700;font-size: 12px;line-height: 14.2px;letter-spacing: 0px;color: #DB2777 !important;text-transform: uppercase;margin-top: 15px !important;display: flex;align-items: center;gap: 8px;}

a.anarkali-read-more::after {
    content: "";
    background: url(/wp-content/uploads/2026/01/pink-Icon.png);
    background-size: cover;
    width: 12px;
    height: 12px;
}

/* ---inner pages css--- */

.yith-wcwl-add-to-wishlist.exists .yith-wcwl-wishlistaddedbrowse {
display: none !important;
}
.single-product .quantity {
width: 100% !important;
height: auto !important;
max-width: unset !important;
padding: 0 !important;
border: 1px solid #000 !important;
}
 .single-product .anarkali-product-summary-inner .quantity-button.plus, .single-product .anarkali-product-summary-inner .quantity-button.minus {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
width: 50px !important;
flex: unset !important;
cursor: pointer;
font-size: 20px !important;
color: #fff !important;
z-index: 1;
position: relative;
background: #000 !important;
}
.single-product .anarkali-product-summary-inner .quantity-button.minus:before {
content: "";
width: 10px !important;
height: 2px !important;
background: #fff !important;
}
.single-product .anarkali-product-summary-inner .woocommerce .product .grouped-list-item .quantity .qty, .woocommerce .quantity .qty, .quantity input {
font-size: 16px !important;
}
.single-product .anarkali-product-summary-inner .anarkali-product-after-cart-btn .anarkali-product-button {
width: 100% !important;
}
.single-product .anarkali-product-after-cart-btn .anarkali-product-button {
    width: 100% !important;
    background: #db2777 !important;
}
.single-product .has-buynow .single_add_to_cart_button,  .single-product .has-buynow .anarkali-product-after-cart, .single-product .anarkali-product-after-cart-btn {
min-width: calc((100% - 3%) / 3) !important;
}
.single-product .anarkali-product-summary form.cart {
gap: 15px 10px !important;
}
.single-product .anarkali-product-after-cart-btn.btns-wrapper.btn-type-icon {
width: auto !important;
}
.single-product .anarkali-product-after-cart-btn .anarkali-product-button svg.svgwishlist.anarkali-svg-icon {
margin: 0 !important;
fill: #fff !important;
}
.single-product .anarkali-product-after-cart-btn .anarkali-product-button:hover  svg.svgwishlist.anarkali-svg-icon {
background: transparent !important;
}
.single-product .anarkali-product-button.added {
background: var(--anarkali-dark) !important;
color: var(--anarkali-light);
}
.single-product .anarkali-product-summary form.cart {
margin: 30px 0 30px !important;
}
.single-product .anarkali-product-summary .anarkali-summary-item>div.anarkali-accordion-item {
border: 0 !important;
}
.single-product .anarkali-accordion-header {
background: #f2f2f2;
margin-bottom: 5px;
border-radius: 5px !important;
}
.single-product .anarkali-accordion-item.active {
background: #f2f2f2;
border-radius: 5px;
margin-bottom: 5px !important;
}
.single-product .compare,
.single-product a.compare,
.single-product button.compare {
display: none !important;
}

.single-product .anarkali-product-bottom-popup-cart {
display: none !important;
}

.single-product .anarkali-summary-item.anarkali-product-popup-details {
background: #f2f2f2;
padding: 20px;
border-radius: 5px;
display: flex;
flex-direction: column;
row-gap: 5px;
margin-bottom: 20px;
}
.single-product #nt-woo-single #reviews.cr-reviews-ajax-reviews {
max-width: unset !important;
}
.single-product .cr-review-form-nav {border: 0 !important;}
.single-product .cr-review-form-nav svg {
display: none;
}
.single-product .cr-nav-left span {
text-transform: capitalize !important;
font-family: "Playfair Display", serif !important;
font-size: 26px !important;
border-bottom: 1px solid #00000036;
padding-bottom: 10px;
width: 100% !important;
}
.single-product .cr-nav-left {
    width: 100% !important;
}
.single-product .cr-single-product-review {
background: #f2f2f2;
padding: 20px 30px 30px;
border-radius: 10px;
}
.single-product button.cr-ajax-reviews-add-review {
padding: 10px 40px !important;
border-radius: 50px !important;
font-size: 14px !important;
}
.single-product .cr-review-form-item, .single-product .cr-review-form-comment, .single-product .cr-review-form-ne, .single-product .cr-form-item-media.cr-form-item-container, .single-product .cr-review-form-buttons, .single-product .cr-review-form-rating {
    max-width: 100% !important;
}
.single-product .cr-review-form-rating-overall .cr-review-form-rating .cr-review-form-rating-cont .cr-review-form-rating-inner {
padding: 0 0px !important;
}
.single-product .cr-review-form-rating-overall .cr-review-form-rating .cr-review-form-rating-cont .cr-review-form-rating-inner svg {
height: 20px;
width: 20px;
}
.single-product .cr-review-form-rating-overall .cr-review-form-rating .cr-review-form-rating-cont .cr-review-form-rating-nbr {
font-size: 14px !important;
}
.single-product button.cr-review-form-submit, .single-product button.cr-review-form-cancel {
padding: 17px 10px !important;
height: auto !important;
text-transform: uppercase;
}
.single-product .cr-reviews-ajax-reviews .cr-reviews-ajax-comments .cr-ajax-reviews-list .review .cr-comment-text {
    margin: 0;
}

.single-product ol.commentlist.cr-ajax-reviews-list {
background: #f2f2f2;
padding: 20px !important;
border-radius: 5px !important;
}
.single-product .anarkali-product-nav {
display: none;
}
.single-product .anarkali-thumb-wrapper.anarkali-thumb-slider img {
width: 100% !important;
}
.woocommerce-cart .anarkali-before-cart-table .anarkali-cart-goal-wrapper.free-shipping-success {
width: 100% !important;
max-width: 100% !important;
}
.woocommerce-cart .anarkali-wc-proceed-to-checkout a {
padding: 15px 20px;
}
.category-blogs .anarkali-blog-thumb.image-default img {
width: 100%;
max-height: 450px;
object-fit: cover;
}
.category-blogs .anarkali-blog-post-item-inner .anarkali-blog-post-content {
background: transparent;
margin: 0;
padding: 20px;
}
.category-blogs .anarkali-blog-post-item-inner {
background: #f2f2f2;
padding: 10px;
border-radius: 20px;
}

.category-blogs .anarkali-blog-post-item-inner .anarkali-blog-thumb.image-default img {
border-radius: 20px;
}

.anarkali-blog-details-area.section-padding .col-lg-7 {
width: 75% !important;
}
.anarkali-myaccount-page-content-inner {
padding: 20px !important;
}
.anarkali-myaccount-page-content-inner .nt-anarkali-content ul {
padding-left: 0;
margin: 0;
}

.nt-anarkali-content ul {
padding-left: 0 !important;
margin: 0 !important;
display: flex !important;
flex-direction: column !important;
gap: 5px !important;
}
.anarkali-myaccount-navigation li.menu-item a {
    display: block !important;
    text-align: left !important;
    color: #fff !important;
    padding: 15px 20px ! IMPORTANT;
    line-height: normal !important;
    border-radius: 5px !important;
    border: 1px solid #000 !important;
    color: #000 !important;
}
.anarkali-myaccount-navigation {
display: flex !important;
flex-direction: column !important;
gap: 10px !important;
}

.anarkali-myaccount-navigation li.menu-item.is-active a {
    background: #DB2777 !important;
    color: #fff !important;
    border-color: #DB2777 !important;
}

.anarkali-myaccount-navigation li.menu-item a:after {
    display: none !important;
}
.anarkali-swiper-slider-wrapper {
z-index: 0;
}
.nt-anarkali-inner-container {
position: relative;
z-index: 0;
}
.curated-all-btn a {
position: relative;
display: flex;
align-items: revert;
gap: 10px;
}
.curated-all-btn a::after {
content: "";
background: url(/wp-content/uploads/2025/12/arrow-btn-icon.png);
width: 13px;
height: 12px;
background-size: contain;
background-repeat: no-repeat;
}


.arrived-product-area span.loading-wrapper {
overflow: hidden;
border-radius: 50% !important;
width: 32px !important;
height: 32px !important;
}

span.anarkali-label.anarkali-badge.badge-def {
color: #DB2777 !important;
background: #fff !important;
font-family: Poppins;
font-weight: 600;
font-size: 12px;
line-height: 13.53px;
letter-spacing: 0.9px;
text-transform: uppercase;
padding: 10px 15px !important;
border-radius: 50px;
}
.arrived-product-area .anarkali-price-buttons.anarkali-inline-two-block.loop-price bdi {
color: #1A1A1A !IMPORTANT;
}
span.anarkali-primary-color.del {
text-decoration: line-through;
color: #1A1A1A !important;
}
span.anarkali-primary-color.del bdi {
text-decoration: line-through;
}
.home .anarkali-thumb-wrapper.anarkali-thumb-slider img.attachment-woocommerce_thumbnail {height: unset;object-fit: cover;object-position: center;}
.home h6.anarkali-product-name {min-height: unset;}

.anarkali-thumb-wrapper.anarkali-thumb-slider img.attachment-woocommerce_thumbnail {
height: 450px;
object-fit: cover;
object-position: center;
}
h6.anarkali-product-name {min-height: 50px;}
.anarkali-block-right .top-action-btn, .anarkali-block-right .anarkali-filter-column-select-area, .anarkali-block-right .anarkali-filter-per-page-area {
    display:none !important
}

.anarkali-myaccount-content .woocommerce-info{max-width:100%}
.ht-products .ht-product .ht-product-inner .ht-product-content .ht-product-content-inner .ht-product-price span {
color: #1A1A1A !important;
font-family: Poppins;
font-weight: 700;
font-size: 14px;
letter-spacing: 0px;
}

.stories-heading h2 span {
color: #DB2777;
}
.occasion-text h2 span {
color: #DB2777;
}

.nt-sidebar-inner-widget.shop-widget.anarkali-widget-show.widget_product_status {
    display: none;
}
.social-heading .elementor-heading-title {
position: relative;
display: flex;
align-items: center;
gap: 10px;
}
.social-heading .elementor-heading-title::before {
content: "";
width: 28px;
height: 1px;
background: #DB2777;
}

.this-week-box {
box-shadow: 0px 7.22px 9.02px -5.41px #0000001A;
background: #fff;
border: 0.9px solid #F3F4F6;
border-radius: 10px;
padding: 14px 20px 10px;
max-width: unset !important;
width: fit-content;
margin-left: auto;
margin-top: -30px;
z-index: 8;
margin-right: -15px;
}
 
.this-week-box h6.elementor-image-box-title {
    margin: 0 !important;
}
.this-week-box p {
    margin-top: -3px !important;
}

.anarkali-product .anarkali-product-name {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
min-height: auto;
}

.family-heading .elementor-heading-title {
font-family: "Playfair Display", serif !important;
font-weight: 400 !important;
line-height: 1em !important;
}
.stories-heading .elementor-heading-title span, .occasion-text .elementor-heading-title span {
    color: #DB2777 !important;
}

.elementor-element.stories-section {
position: relative;
}
.elementor-element.stories-section::after {
content: "";
position: absolute;
background: url(/wp-content/uploads/2026/01/sectio-round-bg.png);
width: 345px;
height: 345px;
background-size: cover;
border-radius: 50%;
background-repeat: no-repeat;
background-position: center;
right: 30px;
top: 30px;
z-index: -9;
}

 
button.show-password-input {
background: url(/wp-content/uploads/2026/01/eye-password-icon.png);
background-size: contain;
width: 25px;
height: 25px;
border: 0;
background-repeat: no-repeat;
margin-top: 10px;
}

.arrived​-section::after {
    content: "New";
    position: absolute;
    top: -20px;
    right: 10px;
    font-family: "Playfair Display", serif !important;
    font-size: 180px;
    color: #1A1A1A;
    line-height: normal;
    opacity: 0.04;
}

.minicart-panel .quantity-button.plus, .minicart-panel .quantity-button.minus {
height: 22px !important;
}
.nice-select .list {
    right: 0 !important;
    left: unset !important;
}

.nice-select.anarkali-ajax-category {
    display: none !important;
}

.anarkali-ajax-product-search .anarkali-ajax-search-wrapper input[type="search"].anarkali-ajax-search-input {padding-top:20px;}

.trending-slider .ht-product-image-wrap .ht-product-image {
position: unset;
}
.trending-slider .ht-product-image-slider {
position: unset;
}
.trending-slider .ht-products .ht-product .ht-product-inner .ht-product-image-wrap {
position: unset;
}
.trending-slider .ht-products .ht-product .ht-product-inner .ht-product-image-wrap .ht-product-image .ht-product-image-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 15px !important;
    left: unset;
    text-align: right !important;
    justify-content: flex-end;
}
.counter-wrapper {
    display: flex;
    gap: 25px;
    align-items: center;
    color: #fff;
    border-top: 1px solid rgb(255 255 255 / 30%);
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    padding: 10px 0 20px;
    margin-top: 30px;
}

.counter-box {
  text-align: center;
}

.counter-box span {font-family: "Playfair Display", serif !important;font-weight: 400 !important;font-size: 32px !important;line-height: 1.2em;letter-spacing: 0px;text-align: center;display: block;}

.counter-box small {font-family: Poppins;font-weight: 400;font-size: 14px;line-height: 14.44px;letter-spacing: 2.5px;text-align: center;text-transform: uppercase;color: #6A7282 !important;}

.elementor-element.instagram-section {
    background: linear-gradient(180deg, #FDF2F8 0%, rgba(253, 242, 248, 0) 196.55%) !important;
}
.categry-btn a.elementor-button:hover {
background: #DB2777 !important;
color: #fff !important;
border-color: #DB2777 !important;
}
.categry-btn a.elementor-button:hover span {
color: #fff !important;
}
.arrive-btn a.elementor-button:hover {
color: #DB2777 !important;
}
.royal-btn a.elementor-button:hover {
background: #DB2777 !important;
}

.view-all-btn a.elementor-button:hover, .shp-btn a.elementor-button:hover, .elementor-element.occasion-btn a.elementor-button:hover {
background: #DB2777 !important;
color: #fff !important;
border-color: #DB2777 !important;
}

.newsletter-form input[type="submit"]:hover {
background: #DB2777 !important;
}
/* ---responsive css--- */

@media screen and (max-width: 1580px) and (min-width: 1025px) {
.e-con-inner {
max-width: 90% !important;
margin: 0 auto !important;
}
.anarkali-slide-inner {
padding-left: 4.5em !important;
}
}

@media screen and (max-width: 1580px) and (min-width: 1201px){
.collection-box-text {
left: 10px !important;
}
.royal-box-text {
padding-top: 40px !important;
padding-left: 40px !important;
}
	
}

@media screen and (max-width: 1280px){
.anarkali-header-mobile-top {
    position: unset;
}
/* ===== Mobile Search Container ===== */
.anarkali-header-mobile-content .product-search-form {
position: relative;
width: 100%;
margin: 12px 0 20px;
}

/* ===== Search Input ===== */
.anarkali-header-mobile-content .product-search-form input[type="search"] {
width: 100%;
height: 46px;
padding: 0 44px 0 44px;
border-radius: 30px;
border: 1px solid #e5e5e5;
background: #f7f7f7;
font-size: 14px;
color: #333;
outline: none;
}

/* Placeholder */
.anarkali-header-mobile-content .product-search-form input::placeholder {
color: #9ca3af;
font-size: 13px;
}

/* ===== Hide Default Button ===== */
.anarkali-header-mobile-content .product-search-form button {
display: none;
}

/* ===== Search Icon (Left) ===== */
.anarkali-header-mobile-content .product-search-form::before {
content: "";
position: absolute;
left: 16px;
top: 50%;
transform: translateY(-50%);
color: #9CA3AF;
background: url(/wp-content/uploads/2026/01/search-icons.png) center / contain no-repeat;
width: 20px;
height: 20px;
}

/* ===== Focus Effect ===== */
.anarkali-header-mobile-content 
.product-search-form input[type="search"]:focus {
background: #fff;
border-color: #d1d5db;
}


/* =====================================
   MOBILE MENU CARD
===================================== */
.anarkali-header-mobile-content 
ul.custom-nav-menu {
    background: #ffffff;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

/* =====================================
   MAIN MENU ITEMS
===================================== */
.anarkali-header-mobile-content 
ul.custom-nav-menu > li {
    position: relative;
    padding: 12px 14px;
    margin: 6px 0;
    border-radius: 10px;
}

/* Menu link */
.anarkali-header-mobile-content 
ul.custom-nav-menu > li > a {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
    display: block;
}

/* =====================================
   ACTIVE MENU ITEM (HOME)
===================================== */
.anarkali-header-mobile-content 
li.current-menu-item {
    background: #fff1f5;
}

.anarkali-header-mobile-content 
li.current-menu-item > a {
    color: #ec4899;
    font-weight: 600;
}

/* =====================================
   REMOVE + ICON FROM NON-CHILD ITEMS
===================================== */
.anarkali-header-mobile-content 
.menu-item:not(.menu-item-has-children) 
.submenu-toggle {
    display: none !important;
}

/* =====================================
   COLLECTIONS TOGGLE – UP ARROW
===================================== */
.anarkali-header-mobile-content .menu-item-has-children .submenu-toggle {
position: absolute;
right: 14px;
top: 15px;
transform: unset;
background: transparent;
border: none;
width: auto;
height: auto;
padding: 0;
z-index: 1;
}

/* Remove default + icon */
.anarkali-header-mobile-content 
.menu-item-has-children .submenu-toggle::before,
.anarkali-header-mobile-content 
.menu-item-has-children .submenu-toggle::after {
    content: none !important;
}

/* Add UP arrow */
.anarkali-header-mobile-content 
.menu-item-has-children .submenu-toggle::after {
    content: "⌃";
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Rotate arrow when submenu is open */
.anarkali-header-mobile-content 
.menu-item-has-children.open > .submenu-toggle::after,
.anarkali-header-mobile-content 
.menu-item-has-children[aria-expanded="true"] 
.submenu-toggle::after {
    transform: rotate(180deg);
}

/* =====================================
   SUB MENU STYLING
===================================== */
.anarkali-header-mobile-content 
ul.sub-menu {
    margin-top: 10px;
    padding-left: 14px;
    position: relative;
}

.anarkali-header-mobile-content 
ul.sub-menu li {
    padding: 6px 0;
}

.anarkali-header-mobile-content 
ul.sub-menu li a {
    font-size: 14px;
    color: #4A5565;
    font-weight: 400;
}


.anarkali-header-mobile-content ul.sub-menu::after {
    /* content: ""; */
    position: absolute;
}

.anarkali-header-mobile-content ul.custom-nav-menu > li.menu-item-has-children {border: 1px solid #F9FAFB !important;}

.anarkali-header-mobile-content ul.custom-nav-menu > li.menu-item-has-children ul.sub-menu {
    background: #F9FAFB;
    border-radius: 15px;
    padding: 5px 20px 5px;
}
/* =====================================
   USER INFO CARD
===================================== */
.anarkali-header-mobile-content 
.account-menu .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #f9fafb;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* Profile icon circle */


/* Username */
.anarkali-header-mobile-content 
.account-menu .user-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    display: block;
}

/* Email */
.anarkali-header-mobile-content 
.account-menu .user-email {
    font-size: 13px;
    color: #6b7280;
    display: block;
    margin-top: 2px;
}

/* =====================================
   ACCOUNT LINKS LIST
===================================== */
.anarkali-header-mobile-content 
.account-menu ul.account-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each item */
.anarkali-header-mobile-content 
.account-menu ul.account-links li {
    padding: 12px 4px;
    border-bottom: 1px solid #f1f5f9;
}

/* Links */
.anarkali-header-mobile-content 
.account-menu ul.account-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    text-decoration: none;
}

/* =====================================
   LOGOUT BUTTON STYLE
===================================== */




.logout-wrapper a {
    justify-content: center;
    color: #ef4444;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    display: block;
    text-align: center;
}
/* =====================================
   LOGGED OUT CARD (FIGMA STYLE)


/* =====================================
   PROFILE & SETTINGS HEADER
===================================== */
.anarkali-header-mobile-content 
.auth-links.logged-out .logged-out-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 18px;
}

/* User icon circle */


/* =====================================
   LOGIN / SIGN UP BUTTON ROW
===================================== */
.anarkali-header-mobile-content 
.auth-links.logged-out .logged-out-img {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

/* LOGIN (outline) */
.anarkali-header-mobile-content 
.auth-links.logged-out .logged-out-img a:first-child {
    flex: 1;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1.5px solid #e5e7eb;
    background: #ffffff;
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

/* SIGN UP (pink filled) */
.anarkali-header-mobile-content 
.auth-links.logged-out .logged-out-img a:last-child {
    flex: 1;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ec4899;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(236,72,153,0.35);
}

/* =====================================
   CONTACT INFO (PHONE & EMAIL)
===================================== */
.anarkali-header-mobile-content 
.auth-links.logged-out .phone-area {
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

/* Common row style */
.anarkali-header-mobile-content 
.auth-links.logged-out .phone-number,
.anarkali-header-mobile-content 
.auth-links.logged-out .mail-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-top: 12px;
}

/* Phone icon */
.anarkali-header-mobile-content 
.auth-links.logged-out .phone-number::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M2.25 4.5l4.5-2.25 3 6-4.5 2.25a11.25 11.25 0 005.25 5.25l2.25-4.5 6 3-2.25 4.5A2.25 2.25 0 0116.5 21.75 15.75 15.75 0 012.25 7.5c0-.88.49-1.69 1.25-2.1z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Email icon */
.anarkali-header-mobile-content 
.auth-links.logged-out .mail-box::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M3 8.25l9 6 9-6M4.5 18.75h15A1.5 1.5 0 0021 17.25V6.75A1.5 1.5 0 0019.5 5.25h-15A1.5 1.5 0 003 6.75v10.5A1.5 1.5 0 004.5 18.75z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}


.logged-out-text a {
    border: 1.05px solid #E5E7EB;
    padding: 10px 30px;
    border-radius: 10px;
}

a.signup-btn {
    background: #DB2777;
    color: #fff;
}

.phone-area {}

.phone-area svg {
    margin-right: 10px;
}
.anarkali-header-mobile-content {
    padding: 20px;
}
	.phone-area {
    padding-top: 20px;
}
.user-info {
    margin-top: 30px;
}
.anarkali-header-mobile-top {
    position: absolute;
    top: 15px !important;
    max-width: 95%;
    margin: 0 auto !important;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50px ! IMPORTANT;
}

.anarkali-header-mobile-top .mobile-toggle {
order: 3;
}
.anarkali-header-mobile-logo {
order: 2;
}
.anarkali-header-mobile-top-actions {
order: 1;
}

.top-action-btn {
box-shadow: 0px 4px 6px -1px #0000001A;
background: #1A1A1A;
width: 40px;
height: 40px;
border-radius: 50%;
text-align: center;
justify-content: center;
}

.top-action-btn svg {
fill: #fff;
}

.anarkali-header-mobile-top .top-action-btn .anarkali-wc-count {
position: absolute !important;
top: -5px !important;
right: -9px !important;
background: #DB2777 !important;
width: 20px !important;
height: 20px !important;
border: 1px solid #fff;
}

.anarkali-header-mobile-top {
padding: 0 25px !important;
min-height: 65px !important;
}
.auth-links.logged-out {
    margin-top: 40px;
}

.anarkali-header-mobile-content {
overflow: scroll;
}
.mobile-toggle-logo img {
height: 50px !important;
}
.anarkali-header-mobile-sidebar {
min-width: auto !important;
position: absolute !important;
background: transparent !important;
right: 20px;
top: 25px;
padding: 0 !important;
height: auto !important;
}
.mobile-toggle-logo img {
height: 50px !important;
}
.anarkali-header-mobile-sidebar .anarkali-panel-close.anarkali-panel-close-button {
margin: 0 !important;
padding: 0 !important;
width: 35px;
height: 35px;
background: #F9FAFB;
}
.mobile-toggle-logo {
border-bottom: 1px solid #F3F4F6;
padding-bottom: 15px;
margin-bottom: 20px !important;
}
.mobile-header-filter.anarkali-shop-filter-area {
    display: none;
}

.anarkali-header-mobile-top {
position: relative !important;
margin: 0 !important;
box-shadow: 1px 6px 4px -7px #00000059;
}
.nt-anarkali-inner-container.shop-area.section-padding {
    padding: 50px 0 !important;
}

.nt-woo-single .nt-anarkali-inner-container {
    padding: 80px 5px !important;
}
.home .anarkali-header-mobile-top {
position: fixed !important;
}
.elementor-position-left.this-week-box {
    display: none !important;
}	
	
}

@media screen and (max-width: 1200px) and (min-width: 1025px){
.collection-box-text {
left: 10px !important;
}
.collection-box-heading .elementor-heading-title {
font-size: 22px !important;
}	
.royal-box-text {
padding-top: 20px !important;
padding-left: 20px !important;
}
.section-padding {
padding: 50px 0 30px !important;
}
.newsletter-form {
margin: 0 auto;
}
.home-blog .anarkali-blog-post-item-inner {
padding: 15px !important;
}
.home-blog .anarkali-blog-post-item-inner h5.anarkali-post-title {
font-size: 18px !important;
margin: 0 0 5px !important;
}
body .ht-tab-menus li a.htactive {
font-size: 12px !important;
padding: 10px 12px 10px 12px !important;
}
}

@media screen and (max-width: 1024px){
.e-con-inner {
padding-left: 20px !important;
padding-right: 20px !important;
}
.collection-box img {
    width: 100%;
    object-fit: cover;
}
.collection-box-text {
left: 10px !important;
}
.royal-wedding-box .elementor-widget-container img {
width: 100% !important;
}
.royal-wedding-img {
border-radius: 20px 20px 0px 0px !important;
}
.royal-wedding-box {
border-radius: 0px 0px 20px 20px !important;
}
.elementor-widget-elementskit-countdown-timer {
padding: 20px 0 0 !important;
}
/* Parent container */
.clint-counter {
display: grid !important;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.clint-counter .elementor-widget-counter {
text-align: center;
}
.stories-box {
padding: 25px !important;
}
.clint-counter {
padding: 0 !important;
}
.section-padding {
padding: 50px 0 30px !important;
}
.newsletter-form {
margin: 0 auto;
}
.main-footer .e-con-inner {
padding: 0 !important;
}
.footer-logo p {
max-width: 100%;
}
.elementor-element.quote-img {
position: absolute;
}
.elementor-element.quote-img {
top: 20px;
}
.anarkali-slide-inner {
padding-left: 20px !important;
padding-right: 20px !important;
}
body ul.ht-tab-menus {
justify-content: flex-start;
padding-bottom: 30px;
width: 100%;
margin-top: 0 !important;
margin-left: auto !important;
}
.trending-slider .ht-product {margin: 0 !important;}
.ht-category-image.ht-category-image-zoom, .ht-category-wrap .ht-category-image-zoom a img {
height: auto !important;
}
nav.anarkali-bottom-mobile-nav.show-allways {
display: none;
}
.anarkali-thumb-wrapper img {
    width: 100%;
}
.single-product .anarkali-product-button.added {
    width: 100% !important;
    max-width: 100%;
}
.single-product .anarkali-product-after-cart-btn.btns-wrapper.btn-type-icon {
    width: 100% !important;
}
.hero-slider .banner-heading {
margin: 15px 0 0px;
}

.hero-slider .anarkali-slide-inner::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 40%, rgba(0, 0, 0, 0) 100%);
z-index: -1;
}

.newsletter-form {
margin-bottom: 30px;
}
.main-footer::after {
display: none;
}

.elementor-element.instagram-section {
       background-color: #FDF2F8 !important;
}
	body.has-bottom-mobile-nav {
        padding-bottom: 0 !important;
    }
}

@media screen and (max-width: 991px){
.yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
display: none;
}
	
}

@media screen and (max-width: 767px){
.newsletter-form input[type="submit"] {
padding: 0 20px !important;
font-size: 12px;
}	
.newsletter-form input[type="email"] {
padding: 0 110px 0 15px !important;
}
.newsletter-form {
margin-bottom: 30px;
}
.stories-user-img-text .elementor-image-box-wrapper {
display: flex !important;
text-align: left !important;
gap: 20px !important;
}
.hero-slider .anarkali-slide-link-wrapper {
display: flex;
flex-direction: column;
row-gap: 12px;
width:100%;
}
.anarkali-slide-link-wrapper a {
width: 100% !important;
display: block;
text-align: center;
}
p.anarkali-slide-text {
max-width: 100% !important;
}
.hero-slider .anarkali-slide-inner {
justify-content: flex-end !important;
padding-bottom: 100px !important;
position: relative;
}
.anarkali-main-slider .swiper-pagination, .anarkali-swiper-theme .anarkali-main-slider .swiper-pagination {
top: unset !important;
right: 0 !important;
transform: translateX(-50%) !important;
bottom: 30px !important;
left: 50% !important;
width: auto !important;
display: flex !important;
flex-direction: unset !important;
align-items: center !important;
gap: 8px !important;
pointer-events: auto !important;
z-index: 50 !important;
justify-content: center;
}
.hero-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
width: 30px !important;
height: 8px !important;
}

/* .hero-slider .anarkali-slide-inner::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
z-index: -1;
} */
.hero-slider .anarkali-slide-inner {
position: relative;
z-index: 1;
}
.hero-slider .anarkali-slide-link-wrapper a + a {
margin-left: 0 !important;
}
.hero-slider p.anarkali-slide-text {
font-size: 16px !important;
}
.ht-tab-menus li a {
display: block;
}
body ul.ht-tab-menus {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px 4px !important;
padding-bottom: 15px !important;
}
.handwoven-timer .elementskit-countdown-timer.ekit-countdown.text-center {
gap: 20px !important;
}
.handwoven-timer .elementskit-timer-container {
margin: 0 0 0 0px !important;
}
.insta-slider .anarkali-instagram-link img {
width: 100%;
}
.single-product .cr-single-product-review {
padding: 15px 15px 10px;
}
.single-product .cr-review-form-name, .single-product .cr-review-form-email {
width: 100% !important;
max-width: 100% !important;
margin-bottom: 10px;
}
.single-product .cr-review-form-ne {
flex-direction: column;
}
.single-product .cr-ajax-reviews-review-form .cr-review-form-item span {
font-size: 15px !important;
}
.single-product .cr-form-item-media-none span {
line-height: normal;
}
.anarkali-woocommerce-cart-form .anarkali-cart-item+.anarkali-cart-item .col.col-lg-8 {
    flex: unset !important;
}
.anarkali-woocommerce-cart-form .anarkali-cart-item+.anarkali-cart-item .col.col-lg-8 {
flex: unset;
}
.woocommerce-cart .anarkali-cart-item.anarkali-actions .anarkali-flex {
flex-direction: column;
gap: 15px;
}
.woocommerce-cart .anarkali-cart-item.anarkali-actions .anarkali-flex input#coupon_code {
width: 100% !important;
max-width: 100%;
}
.woocommerce-cart .anarkali-cart-item.anarkali-actions .anarkali-flex .anarkali-bg-black.anarkali-btn-large.cart-apply-button {
padding: 15px;
}
.anarkali-woocommerce-cart-form .anarkali-cart-item+.anarkali-cart-item .row {
margin: 0 !important;
}
.woocommerce-cart .anarkali-cart-totals, .woocommerce-cart .anarkali-order-review {
padding: 15px !important;
}
.anarkali-thumb-wrapper.anarkali-thumb-slider img.attachment-woocommerce_thumbnail {
height: 300px;
}
.nt-woo-single .nt-anarkali-inner-container {
    padding: 40px 5px !important;
}
.elementor-element.stories-section::after {
content: "";
position: absolute;
background: url(/wp-content/uploads/2026/01/sectio-round-bg.png);
width: 100%;
height: 250px;
background-size: cover;
border-radius: unset;
background-repeat: repeat;
background-position: center;
right: 0;
top: 0;
z-index: -9;
}



.stories-section .e-con-inner {
    padding: 0 !important;
}

.occasion-btn {
width: 100% !important;
}

.occasion-btn a {
display: block;
}

}

@media screen and (max-width: 567px){
.arrived-product-area .woocommerce.anarkali-product.ptype-simple {
    margin-bottom: 0 !important;
}	
	
/* Swiper wrapper ko flex banaye */
  .arrived-product-area .anarkali-swiper-wrapper.swiper-wrapper {
  display: flex;
  align-items: stretch;
  }
  
  /* Har slide same height le */
  .arrived-product-area .anarkali-loop-product.swiper-slide {
  display: flex;
  height: auto;
  }
  
  /* Product card full height me stretch ho */
  .arrived-product-area .anarkali-loop-product.swiper-slide > * {
  display: flex;
  flex-direction: column;
  height: 100%;
  }
  
  /* Agar inner product box ki class alag ho */
  .arrived-product-area .anarkali-loop-product {
  height: 100%;
  }
  
  
  .arrived-product-area .woocommerce.anarkali-product.ptype-simple {
  margin-bottom: 0 !important;
  }



}

@media screen and (max-width: 480px){
.footer-cart-box ul.elementor-icon-list-items li.elementor-icon-list-item a {
font-size: 12px !important;
}	
.handwoven-timer .elementskit-days {
display: none !important;
}

.single-product .swiper-button-prev, .single-product .swiper-rtl .swiper-button-next {
left: 35% !important;
right: auto;
}

.single-product .swiper-button-next, .single-product .swiper-rtl .swiper-button-prev {
right: 35% !important;
left: auto;
}


}