/* Global Styles */
:root {
    --primary-color: #79165B;
    /* Soft pink/red color */
    --text-color: #000000;
    /* Dark gray text */
    --border-color: #222222;
    /* Dark top border */
    --transition: all 0.3s ease;
    --alternate-heading-color: #79165B;
}

/* @font-face {
    font-family: 'Beautifully';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.cdnfonts.com/s/39476/BeautifullyDemo-WyJ5E.woff') format('woff');
} */

@font-face {
    font-family: 'Avenir';
    src: url('font/Avenir/avenir-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    padding-top: 70px;
    font-size: 14px;
}

.logo-div {
    width: 180px;
}

.f-14 {
    font-size: 14px !important;
}

.f-16 {
    font-size: 16px !important;
}
.fw-500{
    font-weight: 500;
}



/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: #ffffff;
    /* border-top: 4px solid var(--border-color); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: #ffffff;
    border-top: 4px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition);
}

/* Logo Styles */
.navbar-brand {
    margin: 0;
    padding: 0;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition);
}



.btn-hero.btrn123jh {
    z-index: 99;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translate(-50%, -60%);
    padding: 15px 40px;
    font-size: 16px;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--primary-color);;
    border-color: transparent;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #ffffff;
}








.logo-light {
    font-weight: 400;
    opacity: 0.9;
}

/* Navigation Menu */
.navbar {
    padding: 15px 0;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 0.5rem 0 !important;
    position: relative;
    transition: var(--transition);
}

.main-header.scrolled .nav-link {
    color: var(--text-color) !important;
}

.nav-link:hover {
    color: #c13584 !important;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
}

.nav-link:focus {
    color: #333333 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
}

.nav-link:hover::after {
    width: 100%;
}

/* Icons */
.header-icons {
    display: flex;
    gap: 1.5rem;
    margin-left: 1rem;
}

.icon-link {
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
    text-decoration: none;
}

.icon-link:hover {
    color: #c13584;
    transform: translateY(-2px);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.mega-all {
    position: absolute;
}

.mega-div-1 {
    margin-top: 40px;
}

.star-price {
    font-size: 12px;
    color: #EF5E5F;
    margin-bottom: 0px;
    font-family: 'Quicksand';
    font-weight: 500;
    margin-right: 5px;
}

.price-line {
    display: flex;
    align-items: center;
}

.star-1 {
    position: absolute;
    right: 75px;
    top: 5px;
    display: flex;
    flex-direction: row;
    white-space: nowrap;
}

.star-2 {
    position: absolute;
    right: 75px;
    top: 17px;
}

.explore-a {
    text-decoration: none;
}


.price-n-qun {
    position: relative;
}


.the-catss-card h3:hover {
    color: #EF5E5F;
}

.star-items {
    position: relative;
    margin: 0;
}

.star-items-new {
    display: flex;
    flex-direction: column;
    line-height: 12px;
}





/* Mega Menu Styles */
.mega-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-top: 2px solid #e2e2e2;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-transform: uppercase;
}

.mega-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-heading {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding-left: 15px;
    padding-bottom: 8px;
    text-wrap: nowrap;
}


.mega-menu-link {
    display: block;
    padding: 8px 15px;
    color: #242424 !important;
    font-size: 13px;
    line-height: 1.5;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 4px;
}

.mega-menu-link:hover {

    /* background-color: #fff5f9; */
    /* transform: translateX(5px); */
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Promo Card Styles */
.promo-card {
    position: relative;
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover img {
    transform: scale(1.03);
}

.promo-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    z-index: 1;
}

.btn-promo {
    background: rgb(255 255 255 / 90%);
    color: var(--primary-color);
    border: 0px;
    border-radius: 5px;
    padding: 25px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
}

.btn-promo:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.promo-subtext {
    color: white;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 85.56px);
    overflow: hidden;
    background: #000;
}

/* Background Slick Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    height: 100vh;
    position: relative;
    outline: none;
}

.hero-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hide Slick default controls */
.hero-slider .slick-dots {
    /* display: none !important; */
}

.slick-dots {
    position: absolute;
    bottom: 100px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}


.slick-dots li button:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/* .only_mobile_megamenu {
        display: none;
    } */



/* Slick Slider Fade Animation */
.hero-slider .slick-slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slick-slide.slick-active {
    opacity: 1;
}

/* Glass Overlay Container */
.glass-card {
    position: relative;
    z-index: 10;
    background: rgb(49 52 23 / 68%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 40px 40px;
    text-align: center;
    max-width: 80%;
    height: 100%;
    /* max-height: 576px; */
    margin: 50px auto;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #EF5E5F;
}

/* Text Content */
.hero-title {
    font-family: 'Jost', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.hero-subtitle {
    font-family: 'Beautifully';
    font-weight: 500;
    font-size: 26px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.hero-subtitle .highlight {
    font-weight: 500;
    color: #ef5e5f;
    display: inline-block;
    margin: 0 5px;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    text-align: center;
    width: 65%;
}

.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    opacity: 1;
    display: none;
}

/* CTA Button */
.btn-hero {
    background: #ffffff;
    color: var(--primary-color);
    border-radius: 50px;
    padding: 10px 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-hero:hover {
    /* background: var(--primary-color); */
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #ffffff;
    /* transform: translateY(-3px) scale(1.05); */
    /* box-shadow: 0 12px 30px rgba(232, 62, 140, 0.4); */
}

.btn-hero:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(232, 62, 140, 0.3);
}

/* Main Content */
.main-content {
    min-height: 350px;
}

/* Ensure proper 6-column layout on desktop */
@media (min-width: 1200px) {
    .mega-menu .row {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 -10px;
    }

    .mega-menu .col-lg-2 {
        flex: 0 0 auto;
        width: 15%;
        max-width: 15%;
        padding: 0 10px;
    }

    .mega-menu .col-lg-4 {
        flex: 0 0 auto;
        width: 20%;
        max-width: 20%;
        padding: 0 10px;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .mega-menu .col-lg-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .mega-menu .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
        margin-top: 20px;
    }

    .mega-menu {
        padding: 20px 0;
    }
}

@media (max-width: 991.98px) {

    /* 🔥 ADD THIS — makes entire mobile menu scrollable */
    .navbar-collapse {
        padding: 1rem 0;
        background-color: #ffffff;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

        max-height: 85vh;     /* important */
        overflow-y: auto;     /* vertical scroll */
    }

    .navbar-nav {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .nav-link::after {
        display: none;
    }

    .header-icons {
        justify-content: center;
        padding: 1rem 0;
        border-top: 1px solid #f0f0f0;
        margin: 1rem 0 0 0;
    }

    /* 🔥 UPDATED MEGA MENU */
    .mega-menu {
        position: static;
        display: none !important;
        box-shadow: none;
        padding: 15px 0;
        opacity: 1;
        visibility: visible;
        animation: none;

        max-height: 60vh;     /* important */
        overflow-y: auto;     /* vertical scroll inside mega */
    }

    .mega-menu.show {
        display: block !important;
    }

    .mega-menu .col-lg-2,
    .mega-menu .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .promo-card {
        margin-top: 20px;
        height: 200px;
    }

    .mega-menu-heading {
        margin-bottom: 10px;
        cursor: pointer;
        position: relative;
        padding-left: 15px;
    }

    /* .mega-menu-heading:after {
        content: '+';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        background: none;
    }

    .mega-menu-heading.active:after {
        content: '-';
    } */

    .only_mobile_megamenu {
        display: block;
    }

    .mega-menu ul {
        display: block;
        padding-left: 15px;
    }

    .mega-menu .promo-card {
        display: block;
    }

    .mega-menu .promo-card.mobile-visible {
        display: block;
    }
}


/* Hero Section Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-subtitle .highlight {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .glass-card {
        padding: 50px 40px;
        max-width: 90%;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-subtitle .highlight {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .glass-card {
        padding: 40px 35px;
    }
}

@media (max-width: 767.98px) {
    #showcaseTabContent .product-slider .slick-next {
        right: calc(10% - 20px);
    }
    #showcaseTabContent .product-slider .slick-prev {
        left: calc(10% - 20px);
    }
    .hero-section .slick-arrow {
        display: none !important;
    }

    .hero-section {
        min-height: 60vh;
    }

    .hero-slider .slide {
        height: 60vh;
    }

    .hero-section .container.h-100 {
        height: 60vh !important;
    }

    #heroCarousel .carousel-item {
        height: 85vh;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .hero-subtitle .highlight {
        font-size: 1.6rem;
        display: inline;
        margin: 5px 0;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    .glass-card {
        padding: 35px 25px;
        max-width: 95%;
        border-radius: 24px;
    }

    .btn-hero {
        padding: 15px 35px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-subtitle .highlight {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .btn-hero {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card {
    animation: fadeInUp 1s ease-out;
}

/* Touch Swipe Support */
@media (hover: none) and (pointer: coarse) {
    #heroCarousel {
        touch-action: pan-y;
    }
}

/* Animation for mobile menu */
.collapsing {
    transition: height 0.3s ease;
}

.dusty-grap {
    height: calc(100vh - 100px) !important;
}

/* Ensure proper spacing on mobile */
.container {
    /* padding-left: 15px;
    padding-right: 15px;
    max-width: 1380px !important; */
    max-width: 1140px;
}

/* Themed Bundles Section */
.themed-bundles-section {
    background-color: #ffffff;
    padding: 0px 0;
    margin-top: 50px;
}

/* Section Header */
.section-header {
    /* margin-bottom: 50px; */
}

.floral-icon {
    margin-bottom: 0px;
}

.floral-icon img {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
}

.section-title {
    margin-bottom: 0px;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    font-family: 'Beautifully';
}

.title-black {
    color: #000000;
}

.title-pink {
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Beautifully;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 63px;
    padding-right: 10px;
}

.section-subtitle {
    max-width: 676px;
    margin: 0 auto;
    color: #000;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Poppins';
    font-weight: 400;
}

/* Themed Bundles Slider */
.themed-bundles-slider {
    margin-top: 30px;
    position: relative;
}

.themed-bundles-slider .slide {
    padding: 0 15px;
}

/* Product Card */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    height: 660px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom, #FFFFFF 29%, #FFD5E8 100%);
}

.product-card-even {
    background: linear-gradient(180deg, #FFFFFF 29.31%, #FFD5D6 100%) !important;
}

.card-image {
    width: 100%;
    height: 505px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.themed-bundles-slider .product-title {
    font-family: 'Quicksand';
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    margin-bottom: 5px;
}

.author-line {
    font-family: 'Quicksand';
    font-size: 14px;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    font-weight: 500;
    text-align: left;
}

.tb-temp {
    font-size: 13px;
    color: #FF8BAA;
    margin-bottom: 10px;
}



.author-line .author-line-ot-color {
    color: #FF8BAA;
}

.themed-bundles-section .product-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #797979;
    line-height: 1.5;
    margin-bottom: 5px;
    min-height: 42px;
    text-align: left;
}

.themed-bundles-section .item-count {
    font-size: 14px;
    color: var(--alternate-heading-color);
    margin-bottom: 14px;
    font-family: 'Quicksand';
    font-weight: 500;
}

.price-line {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--alternate-heading-color);
    font-family: 'Quicksand';
    text-align: right;
    font-weight: 700;
}

.cta-button {
    width: 100%;
    background: #ffffff;
    color: #C13373;
    border: 1px solid #C13373;
    border-radius: 50px;
    padding: 9.5px 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: all 0.3s ease;
    outline: none;
}

.cta-button:hover {
    background: var(--primary-color);
    color: #ffffff;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.2);
}

/* Slider Arrows */
.themed-bundles-slider .slick-prev,
.themed-bundles-slider .slick-next {
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.themed-bundles-slider .slick-prev:hover,
.themed-bundles-slider .slick-next:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    border-color: var(--primary-color);

}

.themed-bundles-slider .slick-prev img,
.themed-bundles-slider .slick-next img {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
}

.themed-bundles-slider .slick-prev:hover img,
.themed-bundles-slider .slick-next:hover img {
    filter: brightness(0) invert(1);
}

.themed-bundles-slider .slick-prev {
    left: -72px;
}

.themed-bundles-slider .slick-next {
    right: -72px;
}














/* Explore Our Categories Section */
.explore-categories-section {
    background-color: #ffffff;
    padding: 50px 10px 50px;
    position: relative;
}

/* Decorative Background Element */
.explore-categories-section .decorative-bg-top {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.explore-categories-section .decorative-bg-top img {
    width: 195px;
    height: auto;
    opacity: 1;
}

/* Section Header */
.explore-categories-section .section-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.explore-categories-section .section-title {
    margin-bottom: 0px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
    font-family: 'Beautifully';
    background: linear-gradient(180deg, #EF5E5F, #C13373);
    -webkit-background-clip: text;
    font-style: italic;
    background-clip: text;
}

.explore-categories-section .section-subtitle {
    max-width: 797px;
    margin: 0 auto;
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Categories Grid */
.categories-grid {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.categories-grid .row {
    row-gap: 0;
}

.the-catss-card h3 {
    font-weight: 500;
    font-family: 'poppins';
    font-size: 14px;
    color: #000;
}

.the-catss-card .category-content span {
    font-size: 14px;
}

.the-catss-card p {
    color: #B3B3B3;
    min-height: 45px;
}

/* Category Card - Base Styles */
.category-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #CCCCCC;
}

.text-pink {
    color: #79165B;
}

.category-image {
    height: 235px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.the-catss-card .category-content {
    padding: 17px 14px 29px 14px;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.5;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #B3B3B3;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 42px;
}

.template-count {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #79165B;
    margin: 0;
}


/* Tabbed Showcase Section */
.tabbed-showcase-section {
    background-color: #ffffff;
    padding-bottom: 70px;
    margin-top: 0;
    position: relative;
}

img.left-side-decoration-flower {
    position: absolute;
    width: 180px;
}

/* Section Header */
.tabbed-showcase-section .section-header {
    margin-bottom: 40px;
}

.tabbed-showcase-section .floral-icon,
.see-it-in-action-section .floral-icon {
    margin-bottom: 10px;
}

.tabbed-showcase-section .floral-icon img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

.main-heading {
    font-family: 'Beautifully';
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
    /* line-height: 1.3; */
}

.tabbed-showcase-section .sub-heading {
    font-size: 30px;
}

.testimonials-section .sub-heading {
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
}

.sub-heading {
    font-family: 'Jost';
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 45px;
    margin-top: 8px;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Tab Navigation */
.tab-navigation {
    margin-bottom: 20px;
    text-align: center;
}

.tab-navigation .nav-pills {
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 1154px;
    margin: 0 auto;
    gap: 4px;
    padding: 7px 13px;
}

.tab-navigation .nav-link {
    padding: 12px 26px !important;
    color: #555555;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
    white-space: nowrap;
}

.tab-navigation .nav-link:hover {
    color: var(--primary-color);
    background: transparent;
}

.tab-navigation .nav-link.active {
    background: linear-gradient(180deg, #EF5E5F, #C13373);
    color: #ffffff !important;
    font-weight: 600;
}

/* Tab Description */
.tab-description {
    font-family: 'Jost';
    font-style: italic;
    font-size: 18px;
    text-align: center;
    margin: 18px 0 34px 0;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slider Container */
.slider-container {
    position: relative;
    margin-top: 20px;
}

/* Product Slider */
.product-slider {
    /* margin-bottom: 80px; */
}

.product-slider .slide {
    padding: 0 15px;
}

/* Product Card for Tabbed Section */
.product-slider .product-card {
    background: linear-gradient(180deg, #FFFFFF 29.31%, #FFD5E8 100%);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 20px;
    padding-bottom: 0px !important;
    border: 1px solid #FFB8D8;
}

.product-slider .card-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #ffffff;
    border-radius: 10px;
}

.product-slider .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-slider .product-card:hover .card-image img {
    transform: scale(1.02);
}

.product-slider .card-title-bar {   
    padding-bottom: 20px;
    padding-top: 10px;
    text-align: start;
    border-radius: 0 0 12px 12px;
    border-top: none;
}

.product-slider .card-title-bar h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.product-slider .slick-prev,
.product-slider .slick-next {
    width: 40px;
    height: 40px;
    margin: -20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    z-index: 10;
    transition: all 0.3s ease;
    position: absolute;
    /* bottom: -60px; */
    /* top: auto;    */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slider .slick-prev {
    /* left: calc(50% - 35px); */
}

.product-slider .slick-next {
    /* right: calc(50% - 35px); */
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.product-slider .slick-prev:hover,
.product-slider .slick-next:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    border-color: var(--primary-color);
}

.product-slider .slick-prev img,
.product-slider .slick-next img {
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
}

.themed-bundles-section .slick-arrow::before {
    display: none !important;
}

.product-slider .slick-prev:hover img,
.product-slider .slick-next:hover img {
    filter: brightness(0) invert(1);
}

.hero-section .slick-next {
    right: 50px;
    width: 40px;
    height: 40px;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    border-color: var(--primary-color);
}

.hero-section .slick-prev {
    left: 25px;
    z-index: 9;
    width: 40px;
    height: 40px;
    /* border: 1px solid #fff; */
    border-radius: 50%;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    border-color: var(--primary-color);
}

/* Slick Arrow Icons - Universal styling */
.slick-arrow-icon {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Tab Content Animation */
.tab-pane {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.show {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-heading {
        font-size: 3rem;
    }

    .sub-heading {
        font-size: 1.6rem;
    }

    .tab-navigation .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 8px 20px;
    }

    .tab-navigation .nav-link {
        white-space: nowrap;
        margin: 0 4px;
    }
}

@media (max-width: 991px) {
    .tabbed-showcase-section {
        padding: 80px 0;
    }

    .main-heading {
        font-size: 2.8rem;
    }

    .sub-heading {
        font-size: 1.4rem;
    }

    .product-slider .card-image {
        height: 240px;
    }

    .product-slider .slick-prev,
    .product-slider .slick-next {
        width: 40px;
        height: 40px;
    }

    .product-slider .slick-prev {
        left: calc(50% - 50px);
    }

    .product-slider .slick-next {
        right: calc(50% - 50px);
    }
}

@media (max-width: 767px) {
    .tabbed-showcase-section {
        padding: 30px 0;
        padding-bottom: 0px;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .sub-heading {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .tab-navigation .nav-pills {
        padding: 6px 15px;
    }

    .tab-navigation .nav-link {
        font-size: 12px;
        padding: 10px 16px;
    }

    .tab-description {
        font-size: 14px;
        margin: 15px 0 40px 0;
    }

    .product-slider .card-image {
        height:180px;
        padding: 0px;
    }

    .product-slider .slick-prev img,
    .product-slider .slick-next img {
        width: 17px;
        height: 17px;
    }

    .product-slider .card-title-bar h4 {
        font-size: 12px;
    }

    .product-slider .slick-prev,
    .product-slider .slick-next {
        width: 35px;
        height: 35px;
        bottom: -50px;
    }

    .product-slider .slick-prev {
        left: calc(50% - 20px);
    }

    .product-slider .slick-next {
        right: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 50px;
    }

    .sub-heading {
        font-size: 1rem;
    }

    .tab-navigation .nav-link {
        font-size: 11px;
        padding: 8px 12px;
    }

    .tab-navigation .nav-pills {
        width: 90vw;
        padding: 6px 15px;
    }

    .product-slider .card-image {
        height: 130px;
    }

    .product-slider .slide {
        padding: 0 10px;
    }
}

/* .product-slider .card-image {
    height: 180px;
} */

.product-slider .slide {
    padding: 0 10px;
}

/* ============================================
   HOW TO PERSONALIZE SECTION
   ============================================ */

/* Section Container */
.personalize-section {
    background-color: #ffffff;
    margin-top: 0;
}

/* Section Header */
.personalize-section .section-header {
    margin-bottom: 30px;
}

.personalize-section .floral-icon {
    margin-bottom: 0px;
}

.personalize-section .floral-icon img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

/* Main Heading */
.personalize-section .main-heading {
    font-family: 'Beautifully';
    font-size: 40px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
    /* line-height: 130px; */
}

.personalize-section .main-heading .highlight {
    font-family: 'Beautifully';
    font-size: 40px;
    font-weight: 500;
    background: linear-gradient(180deg, #EF5E5F, #C13373);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Subheading */
.personalize-section .subheading {
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Left Column - Steps Content */
.personalize-section .steps-content {
    padding-top: 30px;
    padding-right: 40px;
}

.personalize-section .steps-heading {
    font-family: 'Jost';
    font-size: 30px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.personalize-section .steps-heading .pink-text {
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Step List */
.personalize-section .steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.personalize-section .step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.personalize-section .step-number {
    width: 26px;
    height: 26px;
    background: linear-gradient(180deg, #EF5E5F, #C13373);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    flex-shrink: 0;
}

.personalize-section .step-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
}

/* Right Column - Editor Mockup */
.personalize-section .editor-mockup {
    text-align: center;
}

.personalize-section .editor-mockup img {
    max-width: 100%;
    height: auto;
    background-color: transparent;
    border-radius: 12px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Feature Cards Section */
.personalize-section .feature-cards {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.personalize-section .feature-cards .feature_card__items {
    display: flex !important;
    gap: 50px;
    align-items: center;
}

/* Feature Card Design */
.personalize-section .feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 20px;
    text-align: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #CCCCCC;
}

/* Icon Circle */
.personalize-section .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffe0eb, #ffd5e8);
    border-radius: 50%;
    margin: 0 auto 10px auto;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.15);
}

.personalize-section .icon-circle .icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Step Badge */
.personalize-section .step-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #B3B3B3;
    margin-top: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

/* Feature Title */
.personalize-section .feature-title {
    font-family: 'Quicksand';
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

/* Feature Description */
.personalize-section .feature-description {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #A5A8B0;
    margin: 0;
    line-height: 1.5;
}


.testimonial-prev {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translate(-50%, -50%);
}

.testimonial-next {
    position: absolute;
    top: 50%;
    right: -90px;
    transform: translate(-50%, -50%);
}






/* ============================================
   RESPONSIVE STYLES FOR PERSONALIZE SECTION
   ============================================ */

/* Tablet (992px and below) */
@media (max-width: 991px) {
    .personalize-section {
        padding: 80px 0;
    }

    .personalize-section .main-heading {
        font-size: 2.8rem;
    }

    .personalize-section .main-heading .highlight {
        font-size: 3rem;
    }

    .personalize-section .steps-heading {
        font-size: 2.2rem;
        text-align: center;
        margin-bottom: 35px;
    }

    .personalize-section .steps-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 10px;
    }

    .personalize-section .steps-list {
        max-width: 500px;
        margin: 0 auto;
    }

    .personalize-section .step-item {
        justify-content: start;
        text-align: left;
    }

    .personalize-section .editor-mockup {
        padding: 10px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    .personalize-section {
        padding: 60px 0;
    }

    .personalize-section .section-header {
        margin-bottom: 30px;
    }

    .personalize-section .main-heading {
        font-size: 2.2rem;
        line-height: 1;
    }

    .personalize-section .main-heading .highlight {
        font-size: 2.4rem;
    }

    .personalize-section .feature-card {
        width: 100%;
        height: 100%;
    }

    .personalize-section .subheading {
        font-size: 1rem;
    }

    .personalize-section .main-content {
        margin-bottom: 30px;
    }

    .personalize-section .steps-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .personalize-section .feature-cards {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: column !important;
        margin-left: 0px;
    }

    .personalize-section .feature-cards .feature_card__items {
        /* flex-direction: column; */
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        align-items: stretch;
    }

    .dusty-grap {
        height: calc(100%) !important;
    }

    .personalize-section .steps-list {
        gap: 5px;
    }

    .personalize-section .step-item {
        gap: 15px;
    }

    .personalize-section .step-number {
 width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .personalize-section .step-text {     
        padding-top: 0px;
    }

    .personalize-section .icon-circle {
        width: 70px;
        height: 70px;
    }

    .personalize-section .feature-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .personalize-section .feature-description {
        font-size: 0.9rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .personalize-section {
        padding: 40px 0;
    }

    .personalize-section .main-heading {
        font-size: 40px;
    }

    .personalize-section .main-heading .highlight {
        font-size: 40px;
    }

    .personalize-section .steps-heading {
        font-size: 1.6rem;
    }

    .personalize-section .step-text {
        font-size: 0.9rem;
    }

    .personalize-section .icon-circle {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   WEDDING FOOTER SECTION
   ============================================ */

/* Footer Container */
.wedding-footer {
    background-color: #fff5f8;
    position: relative;
    padding: 60px 0 40px 0;
    overflow: hidden;
    background-image: url(images/Footer-Background.svg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}


.mt-5-footer {
    margin-top: 63px;
}





/* Footer Columns */
.footer-column {
    margin-bottom: 40px;
}

/* Column 1: Logo + Description + Social */
.footer-about {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-description {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 379px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 37px;
    height: 37px;
    background: linear-gradient(180deg, #EF5E5F, #C13373);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(232, 62, 140, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Footer Menu Columns */
.footer-menu {
    text-align: left;
}

.footer-heading {
    font-family: 'Quicksand';
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 27px;
    line-height: 1.2;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.payment-icons img {
    z-index: 9;
}

.footer-links a {
    color: #000000;
    font-size: 16px !important;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    font-weight: 500;
    font-family: 'Quicksand';
}

.footer-links a:hover {
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

/* Bottom Footer Bar */
.footer-divider {
    height: 1px;
    background: #FFD4D5;
    margin-bottom: 30px;
}

.copyright {
    font-family: 'Quicksand';
    font-size: 14px;
    color: #000000;
    margin: 0;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

/* Decorative Floral Graphic */
.footer-floral {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 0;
    z-index: 1;
    width: 300px;
    height: 100%;
    pointer-events: none;
    text-align: right;
}

.footer-floral img {
    width: auto;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: right bottom;
}

/* ============================================
   FOOTER RESPONSIVE STYLES
   ============================================ */

/* Tablet (992px and below) */
@media (max-width: 991px) {
    .wedding-footer {
        padding: 60px 0 30px 0;
    }

    .footer-main {
        margin-bottom: 40px;
    }

    .footer-column {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-about {
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-description {
        margin: 0 auto 25px auto;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-menu {
        text-align: center;
    }

    .footer-heading {
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
        margin-top: 20px;
    }

    .copyright {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    .wedding-footer {
        padding: 40px 0 25px 0;
    }

    .footer-main {
        margin-bottom: 0px;
    }

    .footer-column {
        margin-bottom: 25px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        gap: 12px;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 25px;
    }

    .footer-divider {
        margin-bottom: 20px;
    }

    .copyright {
        font-size: 12px;
    }

    .payment-icons {
        gap: 15px;
        width: 100% !important;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .wedding-footer {
        padding: 30px 0 20px 0;
    }

    .footer-logo img {
        max-width: 130px;
    }

    .footer-description {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .payment-icons {
        width: 120vw;
        gap: 12px;
    }
}

.footer-links a {
    font-size: 12px;
}

.payment-icons {
    gap: 12px;
}

/* ============================================
   THE HYPE LIST MARQUEE SECTION
   ============================================ */

/* Section Container */
.hype-list-section {
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Section Header */
.hype-list-section .section-header {
    margin-bottom: 80px;
}

/* .hype-list-section .floral-icon {
    margin-bottom: 20px;
} */

.hype-list-section .floral-icon img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

.hype-list-section .main-heading {
    font-family: 'Beautifully';
    font-size: 3.5rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hype-list-section .subheading {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Marquee Rows */
.marquee-row {
    margin-bottom: 30px;
    overflow: hidden;
}

.marquee-row:last-child {
    margin-bottom: 0;
}

/* Hype Slider Container */
.hype-slider-container {
    margin: 0 0px 30px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hype-slider {
    position: relative;
    margin: 0 -15px;
    direction: ltr;
    /* Default left to right */
    overflow: hidden;
    width: 100vw;
    display: block;
}

/* RTL Slider Direction - for odd rows */
.hype-slider-1,
.hype-slider-3 {
    direction: rtl;
}

/* LTR Slider Direction - for even rows */
.hype-slider-2,
.hype-slider-4 {
    direction: ltr;
}

.hype-slider .slick-list {
    overflow: hidden;
    margin: 0 -10px;
}

.hype-slider .slick-track {
    display: flex !important;
    align-items: flex-start;
    will-change: transform;
    gap: 0;
}

.hype-slider .slick-slide {
    display: flex !important;
    align-items: center;
    justify-content: center;
    /* height: 550px !important; */
    padding: 0 10px;
    flex-shrink: 0;
    width: 620 !important;
    outline: none;
}

.hype-slider .slick-slide>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Smooth continuous animation */
.hype-slider.slick-initialized .slick-track {
    animation: none !important;
    /* allow Slick to control transitions for smooth movement */
}

/* Seamless infinite loop support */
.hype-slider .slick-slide {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hype-slider .slick-track {
    backface-visibility: hidden;
}

/* Ensure cloned slides are visible and don't cause gaps */
.hype-slider .slick-cloned {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hype Card */
.hype-card {
    position: relative;
    /* width: 620px;
    height: 400px; */
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); */
    /* border: 1px solid rgb(0, 0, 0); */
    user-select: none;
    will-change: transform;
}

.hype-card:hover {
    /* border-radius: 16px; */
    /* transform: translateY(-8px) scale(1.02); */
    /* box-shadow: 0 16px 40px rgba(232, 62, 140, 0.2); */
    z-index: 10;
}

/* Black Gradient Overlay on Image - Default State */
.hype-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    border-radius: 16px;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.144), transparent); */
    z-index: 2;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

/* Purple Overlay on Hover */
.hype-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    /* background: rgba(179, 0, 137, 0); */
    z-index: 4;
    border-radius: 16px;
    pointer-events: none;
    transition: background-color 0.3s ease-in-out;
}

.hype-card:hover::before {
    border-radius: 16px;
    height: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent); */
}

.hype-card:hover::after {
    border-radius: 16px;
}

/* Hype Image */
.hype-image {
    position: relative;
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    display: block;
    z-index: 1;
}

.hype-card:hover .hype-image {
    /* transform: scale(1.03); */
}

.hype-overlay {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 16px;
    padding: 20px;

    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    /* backdrop-filter: blur(2px); */
    pointer-events: none;
}

.hype-overlay button {
    pointer-events: auto;

}

.hype-slider-4 .hype-actions,
.hype-slider-2 .hype-actions {
    justify-content: center;
}

.hype-card:hover .hype-overlay {
    opacity: 1;
    bottom: 0;
}

.hype-desc {
    margin-bottom: 0px;
    margin-left: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    z-index: 3;
    padding: 20px;
    transition: opacity 0.3s ease-in-out;
    display: none;
}

.hype-card:hover .hype-desc {
    opacity: 0;
    pointer-events: none;
}

/* Hype Text Content - Inside Overlay */
.hype-text-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-left: 0;
    padding: 20px;
    bottom: 35px;
    left: 0;
}

/* Hype Title */
.hype-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #ffffff;
    line-height: 1.3;
}

/* Hype Category */
.hype-category {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #ffb3c1;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

/* Hype Designer */
.hype-designer {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #f0f0f0;
    margin-bottom: 0px;
    opacity: 0.9;
}

/* Hype Actions */
.hype-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: auto;
}

/* Hype Button */
.hype-btn {
  position: relative;
    padding: 6px 24px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    border: 1px solid transparent;
    border-radius: 22px;
    cursor: pointer;
    /* transition: all 0.3s ease; */
    font-family: Poppins;
    font-weight: 400;
    color: #C13373;
    font-size: 12px;
    text-transform: uppercase;

}



.hype-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    /* transform: scale(1.1); */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.hypertext {
    font-weight: 500;
    font-size: 18px;
    color: #333333;
}



.youtubevideo12 {
    width: 600px;
    height: 410px; 
}








.hype-list-section {
    padding: 60px 0;
}

.hype-list-section .section-header {
    margin-bottom: 30px;
    padding: 0px 20px;
}

.hype-slider {
    margin: 0px;
}

.hype-list-section .main-heading {
    font-size: 40px;
}

.hype-list-section .subheading {
    font-size: 14px;
}

.marquee-row {
    margin-bottom: 30px;
}

.hype-card {
    /* width: 100%px;
    height: 258px; */
}

.hype-title {
    font-size: 16px;
}

.hype-category {
    font-size: 12px;
}

.hype-designer {
    font-size: 11px;
}

.hype-overlay {
    padding: 20px 15px 15px 15px;
}

.hype-actions {
    gap: 8px;
}

/* .hype-btn {
    font-size: 10px;
    padding: 6px 6px;
} */


.splide__slide {
    padding: 0 20px;
}

.splide__arrows.splide__arrows--ltr {
    display: none;
}

.splide__pagination.splide__pagination--ltr {
    display: none;
}

.splide {
    margin-bottom: 30px;
}















/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .hype-list-section {
        padding: 30px 0;
        padding-top: 0;
    }

    .hype-list-section .main-heading {
        font-size: 50px;
    }

    .hype-list-section .subheading {
        font-size: 13px;
    }

    .hype-card {
        /* width: 220px;
        height: 280px; */
    }

    .hype-title {
        font-size: 14px;
    }

    .hype-category {
        font-size: 11px;
    }

    .hype-designer {
        font-size: 10px;
    }

    .hype-overlay {
        padding: 15px 12px 12px 12px;
    }

    .hype-actions {
        gap: 6px;
    }

    .hype-btn {
        font-size: 8px;
        padding: 5px 10px;
    }
}

/* ============================================
   SEE IT IN ACTION - REAL WEDDING INSPIRATION SECTION
   ============================================ */

/* Section Container */
.real-wedding-section {
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

/* Section Header */
.real-wedding-section .section-header {
    margin-bottom: 80px;
}

.real-wedding-section .floral-icon {
    margin-bottom: 0px;
}

.real-wedding-section .floral-icon img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

/* Heading Line 1 - Script Font */
.real-wedding-section .heading-line-1 {
    font-family: 'Beautifully';
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Heading Line 2 - Main Title */
.real-wedding-section .heading-line-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #e83e8c;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Subtitle Text */
.real-wedding-section .subtitle-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Container */
.real-wedding-slider-container {
    position: relative;
    padding: 0 80px;
}

/* Wedding Card */
.wedding-card {
    background-color: #ffeef1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 15px;
    height: 100%;
}

.wedding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Card Image Container */
.card-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wedding-card:hover .card-image {
    transform: scale(1.05);
}

/* Play Icon Overlay */
.play-icon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 62, 140, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wedding-card:hover .play-icon-overlay {
    opacity: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-icon:hover {
    transform: scale(1.1);
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid #e83e8c;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Card Content */
.themed-bundles-slider .card-content {
    padding: 20px;
    text-align: center;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Slick Slider Customization */
.real-wedding-slider .slick-slide {
    padding: 0 15px;
}

.real-wedding-slider .slick-list {
    margin: 0 -15px;
}

/* Slider Arrows */
.real-wedding-slider .slick-prev,
.real-wedding-slider .slick-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.real-wedding-slider .slick-prev {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    left: -25px;
}

.real-wedding-slider .slick-prev:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

.real-wedding-slider .slick-next {
    background: #e83e8c;
    border: 2px solid #e83e8c;
    right: -25px;
}

.real-wedding-slider .slick-next:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

.real-wedding-slider .slick-prev {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.real-wedding-slider .slick-next {
    border-color: #ffffff;
    transform: rotate(45deg);
    margin-right: 3px;
}

.real-wedding-slider .slick-prev:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}



/* Section Container */
.testimonial-section {
    background-color: #ffffff;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

/* Background Floral Graphic */
.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-image: url('./images/floral-bg-right.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
}

/* Section Header */
.testimonial-section .section-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.testimonial-section .floral-icon {
    margin-bottom: 0px;
}

.testimonial-section .floral-icon img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
}

/* Heading Line 1 - Script Font */
.testimonial-section .heading-line-1 {
    font-family: 'Beautifully';
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Heading Line 2 - Main Title */
.testimonial-section .heading-line-2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #e83e8c;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.2;
}

/* Subtitle Text */
.testimonial-section .subtitle-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6c757d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonial Slider Container */
.testimonial-slider-container {
    position: relative;
    padding: 0 40px;
}

.side-decoration-flower {
    position: absolute;
    top: 0;
    right: -100px;
    padding-left: 50px !important;
    height: 60%;
    rotate: 348deg;
    z-index: 0;
    margin-top: 300px;
}

/* Testimonial Card */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    padding: 20px;
    margin: 0 20px;
    min-height: 220px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Testimonial Content Layout */
.testimonial-content {
    display: flex;
    align-items: center;
    /* gap: 30px; */
    width: 100%;
}

/* Testimonial Image */
.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Testimonial Text */
.testimonial-text {
    flex: 1;
}

/* Description Text */
.testimonial-description {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

/* Customer Name */
.testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    text-align: left;
}

/* Customer Designation */
.testimonial-designation {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    text-align: left;
}

/* Slick Slider Customization */
.testimonial-slider .slick-slide {
    padding: 0 10px;
}

.testimonial-slider .slick-list {
    margin: 0 -10px;
}

/* Slider Navigation Arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    position: absolute;
    bottom: -60px;
    top: auto;
    transform: translateY(0);
}

.testimonial-slider .slick-prev {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    left: 50%;
    transform: translateX(-60px);
}

.testimonial-slider .slick-prev:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

.testimonial-slider .slick-next {
    background: #e83e8c;
    border: 2px solid #e83e8c;
    right: 50%;
    transform: translateX(10px);
}

.testimonial-slider .slick-next img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.testimonial-slider .slick-prev:hover img {
    filter: brightness(0) invert(1);
}

.testimonial-slider .slick-next:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

.testimonial-slider .slick-next:hover img {
    filter: brightness(0) invert(1);
}

/* ============================================
   TESTIMONIAL SECTION RESPONSIVE STYLES
   ============================================ */

/* Desktop (1200px and above) */
@media (min-width: 1200px) {
    .testimonial-section .heading-line-1 {
        font-size: 3.5rem;
    }

    .testimonial-section .heading-line-2 {
        font-size: 4rem;
    }

    .testimonial-card {
        padding: 50px;
        min-height: 300px;
    }

    .testimonial-image {
        width: 140px;
        height: 140px;
    }

    .testimonial-description {
        font-size: 16px;
    }

    .testimonial-name {
        font-size: 20px;
    }

    .testimonial-designation {
        font-size: 15px;
    }
}

/* Tablet (768px to 1199px) */
@media (max-width: 1199px) {
    .testimonial-section {
        padding: 100px 0;
    }

    .testimonial-section .heading-line-1 {
        font-size: 2.5rem;
    }

    .testimonial-section .heading-line-2 {
        font-size: 3rem;
    }

    .testimonial-slider-container {
        padding: 0 30px;
    }

    .testimonial-card {
        padding: 30px;
        margin: 0 15px;
        min-height: auto;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .testimonial-description,
    .testimonial-name,
    .testimonial-designation {
        text-align: center;
    }

    .testimonial-description {
        font-size: 14px;
    }

    .testimonial-name {
        font-size: 17px;
    }

    .testimonial-designation {
        font-size: 13px;
    }
}

/* Mobile (577px to 767px) */
@media (max-width: 767px) {
    .testimonial-section {
        padding: 80px 0;
    }

    .testimonial-section .section-header {
        margin-bottom: 60px;
    }

    .testimonial-section .heading-line-1 {
        font-size: 2rem;
    }

    .testimonial-section .heading-line-2 {
        font-size: 2.3rem;
    }

    .testimonial-section .subtitle-text {
        font-size: 14px;
    }

    .testimonial-slider-container {
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 25px;
        margin: 0 10px;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }

    .testimonial-description,
    .testimonial-name,
    .testimonial-designation {
        text-align: center;
    }

    .testimonial-description {
        font-size: 13px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-designation {
        font-size: 12px;
    }

    .testimonial-slider .slick-prev,
    .testimonial-slider .slick-next {
        width: 40px;
        height: 40px;
        bottom: -50px;
    }

    .testimonial-slider .slick-prev {
        transform: translateX(-50px);
    }

    .testimonial-slider .slick-next {
        transform: translateX(5px);
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-section .heading-line-1 {
        font-size: 1.8rem;
    }

    .testimonial-section .heading-line-2 {
        font-size: 2rem;
    }

    .testimonial-section .subtitle-text {
        font-size: 13px;
    }

    .testimonial-slider-container {
        padding: 0 15px;
    }

    .testimonial-card {
        padding: 20px;
        margin: 0 5px;
    }

    .testimonial-image {
        width: 70px;
        height: 70px;
    }

    .testimonial-description {
        font-size: 12px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-designation {
        font-size: 11px;
    }
}

/* ============================================
   SEE IT IN ACTION - REAL WEDDING INSPIRATION SECTION
   ============================================ */

.see-it-in-action-section {
    background-color: #ffffff;
    /* padding: 40px 0 0px; */
    position: relative;
}

.see-it-in-action-section .decorative-bg-center {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.see-it-in-action-section .decorative-bg-center img {
    width: 195px;
    height: auto;
    opacity: 1;
}

.see-it-in-action-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px !important;
    font-weight: 400;
    color: #000000;
    max-width: 1106px;
    padding-top: 20px;
    margin: 0 auto;
}

.see-it-in-action-section .section-title .title-black {
    font-family: 'Beautifully';
    font-size: 40px;
    font-weight: 400;
    /* line-height: 63px; */
}

.see-it-in-action-section .sub-heading {
    font-family: 'Jost';
    font-size: 30px;
    font-weight: 500;
    /* line-height: 63px; */
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
}

.inspiration-grid {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.inspiration-slider {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 -15px;
}

.inspiration-slider .slick-slide {
    padding: 0 15px;
}

/* Inspiration Slider Arrow Buttons */
.inspiration-slider .slick-prev,
.inspiration-slider .slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.inspiration-slider .slick-prev {
    left: -50px;
}

.inspiration-slider .slick-next {
    right: -50px;
}

.inspiration-slider .slick-prev:hover,
.inspiration-slider .slick-next:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    border-color: var(--primary-color);
}

.inspiration-slider .slick-prev img,
.inspiration-slider .slick-next img {
    width: 17px;
    height: 17px;
    transition: all 0.3s ease;
}

.inspiration-slider .slick-prev:hover img,
.inspiration-slider .slick-next:hover img {
    filter: brightness(0) invert(1);
}

.inspiration-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 29.31%, rgba(255, 213, 232, 1) 100%);
    border: 1px solid #FFD7E9;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.inspiration-card .card-image {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    padding: 20px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inspiration-card:hover .card-image {
    transform: scale(1.03);

}

.inspiration-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.inspiration-card .card-content {
    padding: 20px;
    padding-top: 0;
    text-align: left;
}

.inspiration-card .card-title {
    font-family: 'Jost';
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
}

.inspiration-card .card-description {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    margin: 0;
}

/* ============================================
   LOVED BY COUPLES ACROSS INDIA - TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background-color: #ffffff;
    padding: 70px 0 85px;
    padding-bottom: 10px !important;
    position: relative;
    overflow: hidden;
}

.testimonials-section .decorative-bg-testimonials {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.testimonials-section .decorative-bg-testimonials img {
    width: 195px;
    height: auto;
    opacity: 1;
}

.testimonials-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    max-width: 1106px;
    padding-top: 10px;
    margin: 0 auto;
}

.testimonials-section .section-title .title-black {
    font-family: 'Beautifully';
    font-size: 40px;
    font-weight: 400;
    /* line-height: 63px; */
}

.testimonials-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    /* max-width: 640px; */
    margin: 0 auto;
}

/* Testimonials Slider Wrapper */
.testimonials-slider-wrapper {
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

/* Slick Slider Customization */
.testimonials-slider {
    margin: 0 -15px;
}

.testimonial-slide {
    padding: 0 15px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #EAEAEA;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* height: 390px;
    width: 670px; */
    margin: 0px;
}

.testimonial-card:hover img {
    transform: scale(1.03);
    transition: all 0.3s ease;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 230px;
    height: 330px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    flex: 1;
    padding-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
    color: #000000;
    margin-bottom: 18px;
}

.testimonial-author {
    font-family: 'Quicksand';
    font-size: 18px;
    font-weight: 700;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.testimonial-designation {
    font-family: 'Quicksand';
    font-size: 14px;
    font-weight: 500;
    color: #CCCCCC;
}

/* Navigation Arrows Container */
.testimonial-arrows {
    /* display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px; */
}

.testimonial-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #CCCCCC;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    min-height: 45px;
}

.testimonial-arrow:hover {
    /* transform: scale(1.1); */
    color: white;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    border-color: var(--primary-color);


}

.testimonial-arrow img {
    width: 17px;
    height: 17px;
    display: block;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover img {
    filter: brightness(0) invert(1);
}

.arrow-icon {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
    pointer-events: none;
    display: block;
}

/* Slick Dots - Hide them */
.hero-section .slick-next::before,
.hero-section .slick-prev::before,
.testimonials-slider .slick-dots {
    display: none !important;
}

.hero-section .slick-next img,
.hero-section .slick-prev img {
    width: 16px;
    border-radius: 50%;
    filter: brightness(0) invert(1);

}

/* ============================================
   CURATED BY INDIA'S FINEST - DESIGNER PROFILES SECTION
   ============================================ */

.designers-section {
    background-color: #ffffff;
    padding: 60px 0 85px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.designers-section .decorative-bg-designers {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.designers-section .decorative-bg-designers img {
    width: 195px;
    height: auto;
    opacity: 1;
}

.designers-section .section-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.designers-section .section-title {
    font-family: 'Beautifully';
    font-size: 85px;
    font-weight: 400;
    line-height: 60px;
    color: #1a1b1c;
    margin-bottom: 20px;
}

.designers-section .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    max-width: 676px;
    margin: 0 auto;
}

/* Designer Slider */
.designer-slider {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    /* padding: 0 100px; */
    z-index: 2;
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
}

.designer-slider-container {
    width: 100%;
    margin: 0 -15px;
}

/* Hide scrollbar for Chrome/Safari */
.designer-slider-container::-webkit-scrollbar {
    display: none;
}

.designer-slide {
    padding: 0 15px;
    box-sizing: border-box;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-arrow:hover {
    background: var(--primary-color);
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    border-color: var(--primary-color);
}

.slider-arrow.prev-arrow {
    left: -50px;
}

.slider-arrow.next-arrow {
    right: -50px;
}

.slider-arrow.next-arrow:hover {
    background: var(--primary-color);
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
}

.slider-arrow img,
.slider-arrow svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    object-fit: contain;
    pointer-events: none;
}

.slider-arrow:hover img,
.slider-arrow:hover svg {
    filter: brightness(0) invert(1);
}

.slider-arrow-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.designer-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    padding: 15px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.designer-card:hover {
    background: linear-gradient(180deg, #EF5E5F, #C13373);
}

.designer-card:hover .designer-name,
.designer-card:hover .designer-specialty,
.designer-card:hover .designer-templates {
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: white !important;
}

.designer-card:hover .designer-location {
    filter: brightness(0) invert(1);
}

.designer-card:hover .designer-divider {
    border-color: white !important;
}

.designer-avatar {
    width: 100px;
    height: 100px;
    margin-top: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.designer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.designer-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-weight: 600;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.designer-location {
    font-family: 'Quicksand';
    font-size: 14px;
    color: #797979;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.designer-specialty {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ED5C60;
    line-height: 170%;
    margin-bottom: 15px;
}

.designer-divider {
    border: none;
    border: 1px solid #E5E7EB !important;
    margin-top: 23px;
    margin-bottom: 30px;
    width: auto;
}

.designer-templates {
    font-family: 'Quicksand';
    font-size: 14px;
    font-weight: 500;
    color: #ED5C60;
    line-height: 170%;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .designer-slider {
        padding: 0 50px;
    }
}

@media (max-width: 991px) {
    .designer-slider {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .designer-slider {
        padding: 0 30px;
    }

    .designer-avatar {
        width: 100px;
        height: 100px;
    }

    .designer-name {
        font-size: 1.125rem;
    }
}

@media (max-width: 575px) {
    .designer-slider {
        padding: 0 20px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }
}

.designer-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.designer-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 500px;
    object-fit: cover;
}

.designer-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #C13373;
    margin-bottom: 8px;
}

.designer-name-featured {
    color: #ffffff;
}

.designer-location {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #797979;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.designer-location-featured {
    color: #ffffff;
}

.location-icon {
    width: 16px;
    height: 16px;
}

.designer-specialty {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ED5C60;
    margin-bottom: 15px;
}

.designer-specialty-featured {
    color: #ffffff;
}

.designer-divider {
    border: none;
    border-top: 1px solid #E5E7EB;
    margin: 15px 0;
}

.designer-templates {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ED5C60;
    margin: 0;
}

.designer-templates-featured {
    color: #ffffff;
}

.btn-designer-cta {

    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 40px;
    margin-top: 50px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;   
    border-radius: 30px;
    font-size: 14px;
    color: #ff5c7a;
    background: #fff;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    text-decoration: none;
}

.btn-designer-cta:hover {
  
    /* transition: all 0.5s ease; */
    color: #ffffff;
    background: linear-gradient(180deg, #EF5E5F, #C13373);
    border: 1px solid #EF5E5F;
}

/* Responsive Styles */
@media (max-width: 1199px) {

    .see-it-in-action-section .section-title,
    .testimonials-section .section-title {
        font-size: 40px;
    }

    .designers-section .section-title {
        font-size: 40px;
        line-height: 50px;
    }

    .testimonial-avatar img {
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 991px) {

    .see-it-in-action-section .section-title,
    .testimonials-section .section-title {
        font-size: 40px;
        line-height: 55px;
    }

    .designers-section .section-title {
        font-size: 40px;
        line-height: 45px;
    }

    .inspiration-slider .slick-prev {
        left: 10px;
    }

    .inspiration-slider .slick-next {
        right: 10px;
    }

    .inspiration-card .card-image {
        height: 200px;
    }

    .testimonial-avatar img {
        width: 200px;
        height: 250px;
    }

    .testimonial-card {
        padding: 25px;
        gap: 18px;
    }

    .testimonial-content {
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    .designer-slider-container {
        margin: 0px;
    }

    .see-it-in-action-section .section-title .title-black,
    .testimonials-section .section-title .title-black {
        font-size: 50px !important;
        line-height: 1;
        margin: 0px;
    }

    .see-it-in-action-section .sub-heading {
        font-size: 24px;
        line-height: 1.5;
    }

    .see-it-in-action-section {
        padding: 0px;
    }

    .hype-slider .slick-slide {
        height: auto !important;
    }

    .see-it-in-action-section .section-title,
    .testimonials-section .section-title {
        font-size: 38px;
        line-height: 45px;
    }

    .designers-section .section-title {
        font-size: 38px;
        line-height: 40px;
    }

    .see-it-in-action-section .section-subtitle,
    .testimonials-section .section-subtitle,
    .designers-section .section-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    .inspiration-card .card-image {
        height: auto;
    }

    .inspiration-card .card-image img {
        object-fit: cover;
    }

    .inspiration-card .card-title {
        font-size: 18px;
    }

    .inspiration-card .card-description {
        font-size: 13px;
    }

    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
    }

    .testimonial-content {
        padding-top: 0;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }

    .side-decoration-flower {
        display: none;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 20px;
    }

    .testimonial-author {
        font-size: 16px;
        line-height: 28px;
    }

    .testimonial-designation {
        font-size: 16px;
        line-height: 28px;
    }

    .testimonial-arrows {
        margin-top: 30px;
        gap: 15px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .designer-card {
        padding: 30px 15px 15px;
        margin: 0px 10px;
    }

    .designer-name {
        font-size: 20px;
    }

    .btn-designer-cta {
        font-size: 16px;
        padding: 12px 30px;
    }

    .btn-designer-cta {
        margin-top: 40px;
    }

    .designers-section {
        padding-bottom: 60px;
    }

    header .navbar-brand img {
        width: 60%;
    }
}

@media (max-width: 480px) {

    .see-it-in-action-section .section-title,
    .testimonials-section .section-title {
        font-size: 50px;
        line-height: 35px;
    }

    .designers-section .section-title {
        font-size: 36px;
        line-height: 32px;
    }

    .inspiration-card .card-title {
        font-size: 16px;
    }

    .designer-name {
        font-size: 18px;
    }

    .testimonial-avatar img {
        width: 100%;
        height: 100%;
    }

    .testimonial-arrows {
        gap: 12px;
    }


    .testimonial-arrow {
        width: 35px;
        height: 35px;
    }
}


#videoPopup {
    display: none;
}

.popup-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
   background-color: #fefefe;
    padding: 20px;
    border-radius: 6px;
    position: relative;
}

.close-button {
    position: absolute;
    top: -5px;
    right: 5px;
    font-size: 25px;
    cursor: pointer;
}

/* Login & signup style starts */

.auth-modal-wrapper {
    font-family: 'Poppins', sans-serif;
}

.auth-modal-wrapper .modal-content {
    border-radius: 20px;
    padding: 25px;
}

.auth-modal-wrapper .auth-tabs {
    background: #f3f3f3;
    border-radius: 5px;
    display: flex;
    overflow: hidden;
}

.auth-modal-wrapper .auth-tabs button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px;
    font-weight: 500;
}

.auth-modal-wrapper .auth-tabs .active {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border-radius: 30px;
}

.auth-modal-wrapper .auth-tabs button {
    padding: 10px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
}

.auth-modal-wrapper .auth-tabs button:first-child {
    border-radius: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.auth-modal-wrapper .auth-tabs button:last-child {
    border-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.auth-modal-wrapper .form-control {
    font-size: 14px;
    padding: 10px 14px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #66666659;
}

.auth-modal-wrapper .login-btn {
    border-radius: 40px;
    color: #ED5C60;
    background: transparent;
    padding: 10px;
    width: 100%;
    border: 1px solid #ED5C60;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
}

.auth-modal-wrapper .login-btn:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
}




.auth-modal-wrapper .divider {
       display: flex;
    align-items: center;
    margin: 20px 0;
    width: 100%;
    background: none;   
}

.auth-modal-wrapper .divider::before,
.auth-modal-wrapper .divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.auth-modal-wrapper .divider span {
    margin: 0px 15.5px;
    color: #666666;
    font-weight: 400;
    font-style: Roman;
    font-size: 16px;
}

.auth-modal-wrapper .social-btn {
    border-radius: 40px;
    padding: 10px;
    width: 100%;
    border: 1px solid #333333;
    background: #fff;
    color: #333333;
    font-family: Avenir;
    font-weight: 400;
    font-style: Roman;
    font-size: 16px;
}

.auth-modal-wrapper .social-btn:hover {
    background-color: #ebebeb;
}




.auth-modal-wrapper .forgot-pass {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    text-align: right;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #111111;
}

.auth-modal-wrapper i {
    color: #999;
}

.auth-modal-wrapper .toggle-pass {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    gap: 8px;
    color: #666666CC;
    align-items: center;
    right: 0;
    top: 0;
    cursor: pointer;
}

#authModal .modal-dialog,
#otpModal .modal-dialog {
    max-width: 500px;
}

#authModal .auth-modal-wrapper {
    padding: 50px 64px 57px;
    border-radius: 24px;
}

#otpModal .auth-modal-wrapper {
    padding: 109px 102px 82px;
    border-radius: 24px;
}

#authModal .btn-close,
#otpModal .btn-close {
    top: -50px !important;
    right: -50px !important;
    color: #fff !important;
    filter: invert(1) brightness(1);
    opacity: 1;
    font-size: 18px;
}

#authModal label {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin-bottom: 8px;
}

#registerForm label a,
#registerForm .switch-login {
    color: #111;
}

.auth-modal-wrapper .form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
        margin-right: 10px;
    position: relative;
    top: -4px;
}

.auth-modal-wrapper .form-check-input:checked {
    background-color: #111;
    border-color: #111;
}

.auth-modal-wrapper .form-check-input:checked::before {
    color: #fff;
}

/* OTP verify modal start */
#otpModal .auth-modal-wrapper .otp-input {
    width: 60px;
    height: 60px;
    border-radius: 7px;
    font-size: 18px;
    border: 1px solid #cccccc;
}

#otpModal p.d6-text {
    color: #666666;
    margin-bottom: 48px;
}

#otpModal .resend-otp {
    margin-bottom: 52px;
}

#otpModal .resend-otp a {
    color: #415FBF;
    text-decoration: none;
}

/* OTP verify modal end */

/* Responsive Modal Width */
@media (max-width: 767px) {

    #authModal .btn-close,
    #otpModal .btn-close {
        top: 0px !important;
        right: 0px !important;
        color: #000 !important;
        filter: unset;
        opacity: 1;
        font-size: 14px;
    }

    .auth-modal-wrapper {
        padding: 40px !important;
    }

    #otpModal .auth-modal-wrapper .otp-input {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {

    .auth-modal-wrapper .modal-content {
        border-radius: 15px;
    }

    .auth-modal-wrapper .auth-tabs button {
        font-size: 14px;
        padding: 8px;
    }

    .auth-modal-wrapper label {
        font-size: 13px;
    }

    .auth-modal-wrapper .form-control {
        font-size: 14px;
        padding: 10px 14px;
        height: 40px;
        border-radius: 12px;
        border: 1px solid #66666659;
    }

    .auth-modal-wrapper .login-btn,
    .auth-modal-wrapper .social-btn {
        font-size: 14px;
        padding: 9px;
    }

    .auth-modal-wrapper .divider span {
        font-size: 12px;
    }
}

/* Login & signup style end */

/* Header icons open sub menu on hover of user icon */
.header-icons .user-dropdown {
    position: relative;
}

.header-icons .user-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 160px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.header-icons .user-submenu a {
    padding: 10px 15px;
    display: block;
    color: #333;
    text-decoration: none;
}

.header-icons .user-dropdown:hover .user-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}











/* All themed bundle page style start ====================================================================================================================*/

.all-themed-bundle-wrapper {
    background: url('./images/themed-pattern.png') center/cover no-repeat;
    padding: 60px 15px;
    position: relative;
}

.themed-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #000;
}

.themed-title span {
    color: #e66aa4;
    font-family: 'Pacifico', cursive;
}

.themed-subtitle {
    max-width: 800px;
    margin: 10px auto 0;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .themed-title {
        font-size: 30px;
    }

    .themed-subtitle {
        font-size: 14px;
    }
}



.all-themed-cards-wrapper {
    background: #fff;
}

.all-themed-cards-wrapper .themed-card {
    text-align: center;
}

.all-themed-cards-wrapper .themed-img-border {
    padding: 2px;
    border-radius: 10px;
    background: transparent;
    transition: background 0.3s ease;
}

.all-themed-cards-wrapper .themed-img-inner {
    border-radius: 8px;
    overflow: hidden;
}

.all-themed-cards-wrapper .themed-card h6 {
    transition: color 0.3s ease;
}

.all-themed-cards-wrapper .themed-card:hover .themed-img-border {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

.all-themed-cards-wrapper .themed-card:hover h6 {
    color: #C13373;
}

.all-themed-cards-wrapper .themed-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.all-themed-cards-wrapper .themed-card:hover .themed-img {
    transform: scale(1.05);
}

.all-themed-cards-wrapper .themed-title {
    font-family: Quicksand;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    color: #000;
}

.all-themed-cards-wrapper .themed-author {
    font-family: Quicksand;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    color: #5C5C5C;
}

.all-themed-cards-wrapper .themed-desc {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    color: #B3B3B3;
}

.item-themed-card-headesc {
    padding: 15px 0px 10px;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .all-themed-cards-wrapper .themed-img {
        height: 320px;
    }
}

/* All themed bundle page style end */

/* theme-listing page style starts */
.product-filter-bar-wrapper {
    margin: 30px 0;
}

.product-filter-bar-wrapper .product-filter-bar-inner {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    padding: 28px 20px;
}

.product-filter-bar-wrapper .filter-label,
.product-filter-bar-wrapper .sort-label {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    color: #797979;
}

.product-filter-bar-wrapper .filter-left {
    gap: 15px;
}

.product-filter-bar-wrapper .filter-right {
    gap: 15px;
}

.product-filter-bar-wrapper .filter-btn {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;

}

.product-filter-bar-wrapper .filter-btn:focus {
    box-shadow: none;
}

.product-filter-bar-wrapper .dropdown-toggle::after {
    margin-left: 6px;
}

.product-filter-bar-wrapper .product-count {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-filter-bar-wrapper .dropdown-toggle::after {
    display: none;
    /* Disable Bootstrap caret */
}

.product-filter-bar-wrapper .filter-btn i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.2s ease;
}

/* Rotate chevron on open */
.product-filter-bar-wrapper .dropdown.show .filter-btn i,
.product-filter-bar-wrapper .filter-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Mobile adjustments */
@media (max-width: 767px) {

    .product-filter-bar-wrapper .filter-left,
    .product-filter-bar-wrapper .filter-right {
        justify-content: flex-start;
    }

    .product-filter-bar-wrapper .product-count {
        margin-left: 0;
    }
}

/* Product showcase wrapper section style start */
.product-grid-final-wrapper {
    padding: 40px 0;
}

/* Card Base */
/* .product-grid-final-wrapper .product-card {
  position: relative;
} */

.product-grid-final-wrapper .final-product-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid-final-wrapper .image-wrap {
    border-radius: 10px;
    height: 350px;
    position: relative;
}

.product-grid-final-wrapper .image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.product-grid-final-wrapper .image-wrap:hover::before {
    opacity: 1;
}

.product-grid-final-wrapper .image-wrap img {
    width: 100%;
    border-radius: 12px;
    display: block;
    height: 100%;
    object-fit: cover;
}

.product-grid-final-wrapper .content {
    padding: 10px 9px;
}

.product-grid-final-wrapper .product-title {
    font-family: Quicksand;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    color: #000;
}

.product-grid-final-wrapper .meta {
    display: flex;
    justify-content: space-between;
    font-family: Quicksand;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    color: #666666;
}

.product-grid-final-wrapper .price {
    font-family: Quicksand;
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.product-grid-final-wrapper .heart-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5c7a;
    opacity: 0;
    transition: 0.3s ease;
    z-index: 2;
}


.heart-icon i{

background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 1px;

}
.product-grid-final-wrapper .hover-actions {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    opacity: 0;
    transition: 0.3s ease;
}

.product-grid-final-wrapper .wishlist-btn {
    position: relative;
    padding: 6px 24px;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    border: 1px solid transparent;
    border-radius: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Poppins;
    font-weight: 400;
    color: #C13373;
    font-size: 12px;
    text-transform: uppercase;
}

.product-grid-final-wrapper .wishlist-btn:hover {
       background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}









.product-grid-final-wrapper .view-btn {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 35.5px;
    border-radius: 50px;
}

.product-grid-final-wrapper .final-product-card:hover .heart-icon {
    opacity: 1;
}

.product-grid-final-wrapper .final-product-card:hover .hover-actions {
    opacity: 1;
}

.product-grid-final-wrapper .final-product-card:hover .product-title {
  background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: te xt;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product showcase wrapper section style end */
/* Explore other themes section style starts */
.explore-themes-section {
    background-color: #F3F3F3;
}

.explore-themes-section .designer-slider-container img {
    height: 284px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}

.explore-themes-section h3 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #000;
    -webkit-text-fill-color: unset;
    background: unset;
}

/* Explore other themes section style end */
@media (max-width: 767px) {
    .explore-themes-section .slider-arrow.prev-arrow {
        left: -5px !important;
    }

    .explore-themes-section .slider-arrow.next-arrow {
        right: -5px !important;
    }
}



.designer-slider1 .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    padding: 0;
}






/* theme-listing page style end =====================================================================*/











/* ------------------------------canva design-----------_______________________________--------------------------------------------------------: */




.editor-container {
    /* height: calc(100vh - 130px); */
    gap: 20px;
    margin-right: 20px;
}

.sidebar {
    width: 220px;
    height: calc(100vh - 78px);
    background: #fff;
    border-right: 1px solid #f5f5f5;
    /* box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); */
    overflow-y: auto;
    /* sidebar scrolls */
    padding: 10px 8px;
}


.sidebar-design {
    height: 80%;
    overflow: auto;
}






/* STICKY bottom buttons */
.sidebar-footer {
    position: sticky;

    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* Buttons full width */
.sidebar-footer button {
    width: 100%;
    border-radius: 20px;
    padding: 8px;
    font-size: 13px;
    cursor: pointer;
}

.btn-save {
    background: #fff;
    border: 1px solid #ccc;
}

.btn-save:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}

.btn-cart {
    background: #ff4d6d;
    color: #fff;
    border: none;
}

/* Buttons */
.btn-save,
.btn-cart {
    border-radius: 20px;
    padding: 8px;
    font-size: 12px;
    cursor: pointer;
}

.btn-save {
    background: #fff;
    border: 1px solid #ccc;
}

.btn-cart {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: none;
}


/* Thumbnail card */
.thumb {
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 14px;
    text-align: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.thumb img {
    width: 48px;
    height: 99px;
    aspect-ratio: 16/33;
}

/* Label */
.thumb small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #999;
    word-break: break-word;

}

/* Active */
.thumb.active {
    border-radius: 10px;
    border: 1px solid #ED5C60;
    background: #FFF;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
}

.thumb.active small {
    color: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);

}

/* Hover */
.thumb:hover {
    border-color: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

/* Smooth scrollbar (optional) */
.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}


/* Toolbar */
.toolbar {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.toolbar select,
.toolbar input {
    height: 32px;
}

/* Canvas */
.canvas-wrapper {
    background: #F8F8F8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}



.canvas img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text-layer {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    cursor: move;
}

.help-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 1px solid #CCC;
    background: #FFF;
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
}

.help-btn:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}

.navbar-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    color: #555555;
}

.navbtn {
    font-size: 12px;
    color: #797979;
    border-radius: 5px;
    border: 1px solid #CCC;
    background: #FFF;
}

.bi {
    font-size: 20px;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 6px;

}

.tool-btn {
    border: none;
    background: transparent;
    padding: 6px 8px;
    cursor: pointer;
    font-size: 14px;
    color: #000;
}

.tool-btn:hover {
    background: #f1f1f1;
    border-radius: 4px;
}

.divider {
    width: 1px;
    height: 22px;
    background: #ccc;
    margin: 0 6px;
}

.reset-btn {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 6px 10px;
}

.color-btn {
    position: relative;
    font-weight: 600;
}

.color-line {
    display: block;
    width: 14px;
    height: 3px;
    background: #000;
    margin: 2px auto 0;
    border-radius: 2px;
}

.color-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.addbtn {
    border-radius: 5px;
    border: 1px solid #CCC;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    color: #797979;
    font-size: 14px;
}


.canvas img {
    width: 199px;
    height: 428px;
    aspect-ratio: 199/428;
}

/* Center text on image */
.text-layer {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: move;
}

/* Text */
.text-content {
    font-size: 16px;
    font-weight: 500;
}

.delete-btn {
    position: absolute;
    top: -10px;
    right: -18px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: red;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.delete-btn:hover {
    background: red;
    color: #fff;
}

.bi-trash {
    font-size: 10px;
}

.editor-footer {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 14px;
    font-size: 12px;
}

.footer-left {
    color: #999999;
    font-size: 12px;
}

.footer-center span {
    cursor: pointer;
    color: #000;
    font-size: 12px;
}

.footer-center .active {
    color: #ff4d6d;
    font-weight: 500;
    font-size: 12;
}

.footer-center .text-green {
    color: #117A5E;
    font-weight: 500;
    font-size: 12;
}

.footer-center .text-magenta {
    color: #FD3DB5;
    font-weight: 500;
    font-size: 12;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Base range */
.footer-right input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;

    /* PROGRESS COLOR */
    background: linear-gradient(to right,
            #d2d2d2 0%,
            #d2d2d2 var(--value),
            #F0F0F0 var(--value),
            #F0F0F0 100%);
}

/* Track (transparent because background handles color) */
.footer-right input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border-radius: 2px;
}

.footer-right input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
    border-radius: 2px;
}

/* Thumb */
.footer-right input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 50%;
    margin-top: -4px;
}

.footer-right input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 1px solid #999;
    border-radius: 50%;
}

/* Percentage */
.footer-right span {
    font-size: 12px;
    color: #555;
    min-width: 32px;
}

/* Overlay */
.help-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 999;
}

/* Modal */
.help-modal {
    position: fixed;
    top: 68%;
    right: 20px;
    transform: translateY(-50%);
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;

}

/* Header */
.help-header {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.help-header h5 {
    margin: 0;
    font-size: 14px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #CCC;
}

/* Body */
.help-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.help-body input,
.help-body textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #E9E9E9;
    outline: none;
}

.help-body textarea {
    resize: none;
}

/* Footer */
.help-footer {
    padding: 16px;
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 0px;
}

.btn-cancel {
    padding: 8px 20px;
    font-size: 12px;
    border-radius: 34px;
    border: 1px solid #CCC;
    background: #FFF;
}

.btn-cancel:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}




.btn-submit {
    background: #ff4d6d;
    color: #fff;
    border: none;
    border-radius: 34px;
    padding: 14px 32px;
    font-size: 12px;

}

/* Overlay */
.rename-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 2000;
}

/* Modal */
.rename-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 512px;
    background: #fff;
    border-radius: 14px;
    padding: 74px 84px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    display: none;
    z-index: 2001;

}

/* Close */
.rename-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    font-size: 25px;
    cursor: pointer;
    color: #989898;
}

/* Title */
.rename-modal h4 {
    margin-bottom: 22px;
    font-size: 16px;
}

/* Input */
.rename-modal input {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    margin-bottom: 30px;
    border-radius: 7px;
    border: 1px solid #EBEBEB;
    background: #F3F3F3;
}

/* Buttons */
.rename-actions {
    display: flex;
    gap: 12px;
}

.rename-cancel {
    color: #676767;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 500px;
    border: 1px solid #CACACA;
    background: #FFF;
    padding: 10px 30px;
}

.rename-cancel:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
}

.rename-save {
    border-radius: 500px;
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 12px;
}






/* Overlay */
.wishlist-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 3000;
}

/* PANEL */
.wishlist-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 3001;
    display: flex;
    flex-direction: column;

}

/* Active */
.wishlist-panel.active {
    right: 0;
}

/* HEADER */
.wishlist-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-header h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.wishlist-close {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}

/* BODY */
.wishlist-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

/* COUNT */
.wishlist-count {
    font-size: 13px;
    margin-bottom: 14px;
}

/* ITEM */
.wishlist-item {
    display: flex;
    gap: 14px;
    position: relative;
    padding: 20px 0;
}

/* THUMB */
.wishlist-thumb {
    width: 70px;
    border-radius: 6px;
}

/* INFO */
.wishlist-info {
    flex: 1;
}

.wishlist-info h6 {
    font-size: 14px;
    margin: 0;
}

.wishlist-info p {
    font-size: 10px;
    color: #B3B3B3;
    margin: 5px 0 5px;
}

.bi-pencil {
    font-size: 12px;
}

.wishlist-delete .bi-trash {
    font-size: 18px;
}

/* ACTIONS */
.wishlist-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}




















/* ADD TO CART */
.btn-add-cart {

    font-size: 10px;
    padding: 4px 12px;
    cursor: pointer;
    border-radius: 500px;
    background: #fff;
    border: 1px solid #ccc;
    text-transform: uppercase;
}

.btn-add-cart:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}



/* EDIT */
.btn-edit {
    width: 26px;
    height: 26px;
    border-radius: 500px;
    border: 1px solid #CCC;
    background: #FFF;
    color: #bbbbbb;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-edit:hover {
    border: 1px solid #CCC;
    background: #818181;
    color: #ffffff;
}



/* DELETE */
.wishlist-delete {
    position: absolute;
    right: 0;
    top: 14px;
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
}

.wishlist-delete:hover {
    color: #C13373;
}

.mydesign-link {
    color: #C13373;
    text-decoration: none;
}

/* DIVIDER */
.wishlist-body hr {
    border: none;
    border-top: 1px solid #CCCCCC;
    margin: 0;
}



/* Overlay */
.textpop-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 5000;
}

/* Popup */
.textpop-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 410px;
    height: 100vh;
    background: #fff;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(-100%);
    opacity: 0;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
    z-index: 5001;
    display: flex;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 410px;
    height: 100vh;
}


/* ACTIVE STATE */
.textpop-modal.active {
    transform: translateX(0);
    opacity: 1;
}

.textpop-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.textpop-header {
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.textpop-close {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}

.tp-label {
    display: block;
    font-size: 12px;
    margin: 12px 0 6px;
}

.tp-textarea {
    width: 100%;
    padding: 7px 10px;
    font-size: 12px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    resize: none;
    /* prevent resize handle */
    font-family: inherit;
}


.tp-input,
.tp-select {
    width: 100%;
    padding: 7px 10px;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #CCC;
    background: #FFF;
}

/* Font size */
.tp-size {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tp-size-btn {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: #fff;
}

.tp-size-input {
    width: 50px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Alignment */
.tp-align {
    display: flex;
    gap: 6px;
}

.tp-align-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
}

.tp-align-btn.active {
    border-color: #ff4d6d;
    color: #ff4d6d;
}

/* Colors */
.tp-colors {
    display: flex;
    gap: 8px;
}

.tp-color {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ddd;
}

.tp-color.purple {
    background: #79165B;
}

.tp-color.pink {
    background: #ED5C60;
}

.tp-color.yellow {
    background: #FBBC05;
}



/* Scrollable body */
.textpop-body {
    flex: 1;
    overflow-y: auto;
    padding: 0px 95px 0px 30px;

}

/* Footer fixed inside popup */
.textpop-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 10px 0;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* DONE button */
.tp-done {
    width: 285px;
    margin-left: 30px;
    padding: 10px;
    border-radius: 26px;
    background: #FFCDDA;
    color: #79165B;
    border: none;
    font-size: 12px;
    font-weight: 500;
}

.btn-mydesign {
    font-size: 12px;
    color: #797979;
    border-radius: 5px;
    border: 1px solid #CCC;
    background: #FFF;
    padding: 10px 20px;
}

.btn-mydesign:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}

span.text12 {
    position: relative;
    font-size: 14px;
    bottom: 2px;
    padding: 10px 10px;
}








/*  My Designs---------------------===========================================--------------------------------- */


/* Overlay */
.mydesignmm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 3000;
}

/* PANEL */
.mydesignmm-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 380px;
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 3001;
    display: flex;
    flex-direction: column;
}

/* Active */
.mydesignmm-panel.active {
    right: 0;
}

/* HEADER */
.mydesignmm-header {
    padding: 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mydesignmm-header h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

.mydesignmm-close {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
}

/* BODY */
.mydesignmm-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}


/* END My Designs------------------------------------------------------ */








/* ------------------------------END canva design-----------_______________________________--------------------------------------------------------: 














/* Product description  page sytle start ==========================================================================================*/







.pg-product-gallery-section {
    width: 100%;
    overflow: hidden;
}

.pg-product-gallery-section .pg-gallery-wrapper {
    display: flex;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.pg-product-gallery-section .pg-thumb-slider-wrap {
    width: 90px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pg-product-gallery-section .pg-thumb-item img {
    width: 72px;
    height: 99px;
    object-fit: cover;
    border-radius: 6px;
    margin: 6px 0;
    cursor: pointer;
    opacity: 0.5;
}

.pg-product-gallery-section .pg-thumb-slider-wrap .slick-current img {
    opacity: 1;
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    text-decoration: none;
}


.pg-product-gallery-section .pg-main-slider-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    /* background: #F0F0F0; */
    /* padding: 40px 40px; */
    border-radius: 18px;
    height: 610px;
}


.pg-product-gallery-section .pg-main-slider {
    width: 100%;
    min-width: 0;

}

.pg-product-gallery-section .pg-main-item img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
}

.pg-product-gallery-section .pg-thumb-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 6px 0;
}


.pg-product-gallery-section .pg-wishlist-icon {
    position: absolute;
    top: 16px;
    right: 40px;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #EF5E5F; */
    z-index: 10;
}


.pg-product-gallery-section .pg-wishlist-icon:hover {
    background: #ffdeed;
}


.pg-wishlist-icon i {
    color: #ffffff;

}


.pg-wishlist-icon.active i {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 1px;
}




.pg-main-slider-wrap .slick-slide {

    float: left;
    height: 610px;
    min-height: 1px;
    background-color: #ffffff;
}







@media (max-width: 991px) {
    .pg-product-gallery-section .pg-main-slider-wrap {
        padding: 30px;
    }

    .pg-product-gallery-section .pg-main-item img {
        height: 420px;
    }
}


@media (max-width: 767px) {

    /* Stack main slider first, thumbs second */
    .pg-product-gallery-section .pg-gallery-wrapper {
        flex-direction: column;
        gap: 14px;
    }

    /* MAIN SLIDER */
    .pg-product-gallery-section .pg-main-slider-wrap {
        order: 1;
        padding: 20px;
        border-radius: 14px;
    }

    .pg-product-gallery-section .pg-main-item img {
        height: 400px;
        object-fit: cover;
    }

    /* THUMB WRAPPER → HORIZONTAL */
    .pg-product-gallery-section .pg-thumb-slider-wrap {
        order: 2;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }

    /* Hide up/down arrows on mobile */
    .pg-product-gallery-section .pg-thumb-nav {
        display: none;
    }

    /* Thumb slider container */
    .pg-product-gallery-section .pg-thumb-slider {
        width: 100%;
    }

    /* Thumbs spacing */
    .pg-product-gallery-section .pg-thumb-item {
        padding: 0 6px;
    }

    .pg-product-gallery-section .pg-thumb-item img {
        width: 100%;
        height: 130px;
        margin: 0;
    }

    /* Slick fixes (VERY IMPORTANT) */
    .pg-product-gallery-section .slick-track {
        display: flex !important;
    }

    .pg-product-gallery-section .slick-slide {
        height: auto !important;
    }
}





.pg-product-content-section {
    font-family: inherit;
}

.pg-product-content-section .pg-title-row {
    gap: 23px;
}

/* TITLE */
.pg-product-content-section .pg-product-title {
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
}

.pg-product-content-section .pg-share-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pg-product-content-section .pg-share-icon:hover {
    /* background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%); */
    background-color: #666666;
    color: #ffffff;
}

.pg-product-content-section .pg-share-icon:hover i {
    -webkit-text-fill-color: #ffffff;
}

.pg-product-content-section .pg-share-icon i {
    /* background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    background-clip: text;
    color: #888888;
    font-size: 12px;
}



.pg-thumb-up i,
.pg-thumb-down i {
    font-size: 12px;
}

.pg-thumb-up:hover,
.pg-thumb-down:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}



/* BADGE */
.pg-product-content-section .pg-badge {
    display: inline-block;
    padding: 4px 19px;
    background: #79165B33;
    color: #79165B;
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    border-radius: 25px;
}

/* RATING */
.pg-product-content-section .pg-rating i {
    color: #f5b301;
    font-size: 14px;
}

.pg-product-content-section .pg-review-link {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #4B4B4B;
    margin-left: 13px;
}

/* BRAND */
.pg-product-content-section .pg-brand {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    color: #1A1B1C;
}

/* DESCRIPTION */
.pg-product-content-section .pg-description,
.pg-product-content-section .pg-tax-text {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    color: #B3B3B3;
}

/* DESIGNER */
.pg-product-content-section .pg-designer span {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    /* Optional fallback */
    color: transparent;
    text-decoration: none;
}

.pg-designer {
    text-decoration: none;
}

.pg-designer:hover {
    text-decoration: underline;
    -webkit-text-fill-color: #C13373;
}

.pg-designer:hover span {
    -webkit-text-fill-color: #C13373;
}

.info12 {
    position: relative;
    display: inline;
}

.info-icon {
    position: absolute;
    right: -20px;
    top: -12px;
}

.info-icon svg {
    fill: #9b9b9b;
}

.info-icon svg:hover {
    fill: #333333;
}






.pg-product-content-section .pg-designer .pg-info-outline {
    color: transparent;
    -webkit-text-stroke: 1.2px #000;
    font-size: 10px;
    position: absolute;
    margin-left: 5px;
}

/* PRICE */
.pg-product-content-section .pg-price {
    font-family: Poppins;
    font-weight: 600;
    font-size: 24px;
    color: #79165B;
}

/* .pg-product-content-section .pg-tax-text {
    font-size: 12px;
    color: #888;
} */

/* BUTTON */
.pg-product-content-section .pg-btn-primary {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-size: 14px;
    color: #ff5c7a;
    background: #fff;
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    text-decoration: none;
}

.pg-product-content-section .pg-btn-primary:hover {

    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}

.btn-myaccount {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
    color: #ff5c7a;
    background: #fff;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;

}


.btn-myaccount:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}




/* HELP BOX */
.pg-product-content-section .pg-help-box {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    font-size: 14px;
}

.pg-product-content-section .pg-help-header {
    background: #DEDEDE;
    padding: 10px 15px;
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

.pg-product-content-section .pg-help-list {
    list-style: none;
    padding: 12px 14px;
    margin: 0;
}

.pg-product-content-section .pg-help-list li {
    margin-bottom: 8px;
    color: #555;
}

.pg-product-content-section .pg-help-list i {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 8px;
    padding-left: 1px;
}

.pg-product-content-section .pg-print-note {
    padding: 0 14px 12px;
    font-size: 14px;
    color: #777;
    font-weight: 600;
}




.pg-product-tabs-section {
    font-size: 14px;
    color: #797979;
}

.pg-product-tabs-section .pg-tabs-wrapper {
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

/* Tabs Nav */
.pg-product-tabs-section .pg-tabs-nav {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    overflow-x: auto;
    white-space: nowrap;
    overflow-y: clip;
}

.pg-product-tabs-section .pg-tabs-nav .nav-link {
    border: none;
    background: none;
    padding: 16px 20px !important;
    font-size: 14px;
    color: #797979 !important;
    font-weight: 400;
    position: relative;
}

/* Gradient text */
.pg-product-tabs-section .pg-tabs-nav .nav-link:hover,
.pg-product-tabs-section .pg-tabs-nav .nav-link.active {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Active underline */
.pg-product-tabs-section .pg-tabs-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

/* Content */
.pg-product-tabs-section .pg-tabs-content {
    padding: 35px 30px;
}

.pg-product-tabs-section .pg-row {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.pg-product-tabs-section .pg-row:last-child {
    margin-bottom: 0px;
}

.pg-product-tabs-section .pg-label {
    min-width: 160px;
    font-weight: 500;
    color: #000;
}

.pg-product-tabs-section .pg-value {
    flex: 1;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 767px) {
    .pg-product-tabs-section .pg-row {
        flex-direction: column;
        gap: 4px;
    }

    .pg-product-gallery-section .pg-main-slider-wrap {
        padding: 0;
    }
    .product-grid-final-wrapper .image-wrap {
        height: 250px;
    }
}




/* ================= FEATURE SLIDER ================= */
.feature-slider-section {
    background: #8a676f;
    padding: 40px 0;
}

.feature-slider-section .feature-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.feature-slider-section .feature-slider-container {
    width: 100%;
}

/* -------- SLIDE 1 : ICON CARDS -------- */
.feature-slider-section .feature-slide-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 50px 70px;
}


/* FIX slick width explosion */
.feature-slider-section .slick-slide {
    max-width: 100% !important;
    overflow: hidden;
}

.feature-slider-section .slick-track {
    display: flex !important;
}

/* Critical fix for first slide */
.feature-slider-section .slick-slide>div {
    width: 100%;
    box-sizing: border-box;
}

.feature-slider-section img {
    max-width: 100%;
    height: auto;
    display: block;
}


.feature-slider-section .feature-icon-card {
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-slider-section .feature-icon-card img {
width: 210px;
    height: 256px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.feature-slider-section .feature-icon-card p {
    font-size: 15px;
    margin: 0;
}

/* -------- SLIDE 2,3,4 CONTENT -------- */
.feature-slider-section .feature-slide-content {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 50px 80px;
}

.feature-slider-section .feature-text {
    max-width: 45%;
    color: #fff;
}

.feature-slider-section .feature-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-slider-section .feature-text p {
    font-size: 14px;
    line-height: 1.6;
}

.feature-slider-section .feature-image {
    max-width: 40%;
}

.feature-slider-section .feature-image img {
   width: 210px;
    height: 256px;
    border-radius: 30px;
}

/* -------- ARROWS (reuse your style) -------- */
.feature-slider-section .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.feature-slider-section .prev-arrow {
    left: -50px;
}

.feature-slider-section .next-arrow {
    right: -50px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 991px) {

    .feature-slider-section .feature-slide-icons {
        flex-direction: column;
        gap: 30px;
    }

    .feature-slider-section .feature-slide-content {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        width: 100%;
    }

    .feature-slider-section .feature-text,
    .feature-slider-section .feature-image {
        max-width: 100%;
    }

    .feature-slider-section .feature-image {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .feature-slider-section .feature-slide-icons {
        flex-direction: row;
        gap: 0px;
        width: 100% !important;
        padding: 0px;
        align-items: baseline;
    }

    .feature-slider-section .feature-icon-card img {
        width: 50px;
        height: 50px;
    }

    .feature-slider-section .feature-slide-content {
        width: 100% !important;
        padding: 0px;
    }

    .feature-slider-section .feature-image img {
        width: 100%;
        border-radius: 10px;
    }

    .feature-slider-section .feature-text,
    .feature-slider-section .feature-image img {
        padding: 0px 20px;
    }

    .feature-slider-section .prev-arrow {
        left: -10px;
    }

    .feature-slider-section .next-arrow {
        right: -10px;
    }

    .feature-slider-section .slick-slide>div {
        padding: 0px 20px;
    }
}

/* Product description  page sytle end */

/* Wishlist page style starts */
.pg-cart-section {
    /* width: 100%;
    font-family: 'Poppins', sans-serif;
    --pg-gradient: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%); */

    padding-top: 80px;
    padding-bottom: 80px;

}

.pg-cart-container {
    max-width: 1200px;
    margin: auto;
}

.pg-cart-section .pg-cart-header {
    display: grid;
    grid-template-columns: 150px 2.0fr 1.5fr 1.5fr 1fr 1fr 2.5fr 2.5fr;
    padding: 16px 0;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    column-gap: 12px;
}

.pg-cart-section .pg-cart-header div {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
}

.pg-cart-section .pg-cart-row {
    display: grid;
    grid-template-columns: 150px 2.0fr 1.5fr 1.5fr 1fr 1fr 2.5fr 2.5fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
    column-gap: 12px;
}

.pg-cart-section .pg-product-image img {
    width: 130px;
    height: 130px;
    border-radius: 6px;
    object-fit: contain;
}

.pg-cart-section .pg-product-name {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.pg-cart-section .pg-muted {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #797979;
}

.pg-cart-section .pg-price {
    font-weight: 600;
    font-size: 14px;
}

.pg-cart-section .pg-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg-cart-section .pg-btn-outline {
    text-align: center;
    padding: 6px 16.5px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #ff5c7a;
    background: #fff;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    text-decoration: none;
}

.pg-cart-section .pg-btn-fill {
    padding: 6px 40px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-cart-section .pg-btn-fill:hover {
    opacity: 0.9;
}

.pg-cart-section .pg-btn-trash {
    background: transparent;
    border: none;
    color: #777;
    font-size: 18px;
    cursor: pointer;
}

.pg-cart-section .pg-btn-trash:hover {
    color: #EF5E5F;
}

.is_desktop {
    display: none;
}

.is_mobile {
    display: block;
}

@media (max-width: 768px) {
    .is_desktop {
        display: block;
    }

    .is_mobile {
        display: none;
    }

    .pg-cart-section .pg-cart-header {
        display: none;
    }

    .pg-cart-section .pg-cart-row {
        grid-template-columns: 72px 1fr;
        gap: 12px;
        padding: 18px;
        border-radius: 14px;
        margin-bottom: 16px;
        background: #fff;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }

    .pg-cart-section .pg-product-image {
        grid-row: 1 / span 3;
    }

    .pg-cart-section .pg-price {
        margin-top: 6px;
    }

    .pg-cart-section .pg-actions {
        grid-column: 1 / -1;
        margin-top: 10px;
        justify-content: flex-start;
    }
}

.pg-cart-section-mobile {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    --pg-gradient: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    padding: 20px 0;
    box-sizing: border-box;
}

.pg-cart-section-mobile .pg-cart-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

.pg-cart-section-mobile .pg-cart-header {
    display: grid;
    grid-template-columns: 150px 1.5fr 1.5fr 1.5fr 1fr 1fr 2.5fr;
    padding: 16px 0;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    column-gap: 12px;
    font-size: 14px;
    color: #000;
}

.pg-cart-section-mobile .pg-cart-header div {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}

.pg-cart-section-mobile .pg-cart-row {
    display: grid;
    grid-template-columns: 150px 1.5fr 1.5fr 1.5fr 1fr 1fr 2.5fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    column-gap: 12px;
}

.pg-cart-section-mobile .pg-product-image img {
    width: 130px;
    height: 130px;
    border-radius: 6px;
    object-fit: cover;
}

.pg-cart-section-mobile .pg-product-name {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
}

.pg-cart-section-mobile .pg-muted {
    font-weight: 400;
    font-size: 14px;
    color: #797979;
}

.pg-cart-section-mobile .pg-price {
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.pg-cart-section-mobile .pg-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pg-cart-section-mobile .pg-btn-outline {
    text-align: center;
    padding: 6px 16.5px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    color: #ff5c7a;
    background: #fff;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-cart-section-mobile .pg-btn-outline:hover {
    opacity: 0.85;
}

.pg-cart-section-mobile .pg-btn-fill {
    padding: 6px 40px;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-cart-section-mobile .pg-btn-fill:hover {
    opacity: 0.9;
}

.pg-cart-section-mobile .pg-btn-trash {
    background: transparent;
    border: none;
    color: #777;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pg-cart-section-mobile .pg-btn-trash:hover {
    color: #EF5E5F;
}

.editbtn {
    width: 40px;
    height: 40px;
}









/* Mobile Responsive */
@media (max-width: 768px) {
    .pg-cart-section-mobile .pg-cart-header {
        display: none;
    }

    .pg-cart-section-mobile .pg-cart-row {
        grid-template-columns: 130px 1fr;
        gap: 12px;
        padding: 18px;
        border-radius: 14px;
        margin-bottom: 16px;
        background: #fff;
        align-items: start;
    }

    .pg-product-details .pg-detail-row {
        display: flex;
        justify-content: space-between;
    }

    .pg-product-details .pg-detail-row .pg-label {
        font-weight: 500;
    }

    .pg-cart-section-mobile .pg-product-image {
        grid-row: 1 / span 3;
    }

    .pg-cart-section-mobile .pg-product-name {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .pg-cart-section-mobile .pg-muted {
        font-size: 13px;
        color: #797979;
    }

    .pg-cart-section-mobile .pg-price {
        margin-top: 6px;
        font-size: 14px;
        font-weight: 600;
    }

    .pg-cart-section-mobile .pg-actions {
        grid-column: 1 / -1;
        margin-top: 10px;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .pg-cart-section-mobile .pg-btn-fill,
    .pg-cart-section-mobile .pg-btn-outline {
        font-size: 12px;
        padding: 6px 20px;
    }
}



/* Wishlist page style end */









/* 
About page start ================================================================*/

.author-modal-wrapper {
    border-radius: 20px;
    background: #ffffff;
}

/* Image wrapper */
.author-modal-wrapper .auth-img-wrapper {
    width: 128px;
    height: 128px;
}

/* Gradient Border (UPDATED) */
.author-modal-wrapper .auth-img-border {
    padding: 1px;
    border-radius: 50%;
    background: linear-gradient(180deg,
            #EF5E5F 0%,
            #C13373 100%);
}

/* Image */
.author-modal-wrapper .auth-img-border img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #fff;
    padding: 10px;
}

/* Author Name */
.author-modal-wrapper .auth-name {
    font-family: Poppins;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #000;
}

.close-icon-designname {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 99;
}

/* Description */
.author-modal-wrapper .auth-desc {
    font-family: Poppins;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #797979;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .author-modal-wrapper .auth-desc {
        font-size: 14px;
    }

    .author-modal-wrapper .auth-name {
        font-size: 20px;
    }
}


/* About us page styling starts */
.mission-text-section {
    background-color: #ffffff;
    padding-top: 50px;
}

.mission-text-section .mission-text {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #575757;
}

/* Responsive font scaling */
@media (max-width: 992px) {
    .mission-text-section .mission-text {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .mission-text-section .mission-text {
        font-size: 16px;
        line-height: 150%;
    }
}

/* About us page styling end */
.pg-curated-section {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.pg-curated-section .pg-curated-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: contain;
    height: 350px;
}

.pg-curated-section .pg-curated-content {
    /* max-width: 520px; */
}

.pg-curated-section .pg-curated-title {
    font-family: Beautifully;
    font-weight: 400;
    font-size: 32px;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-bottom: 10px;
}

.pg-curated-section .pg-curated-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #575757;
    font-size: 16px;
}

@media (max-width: 991px) {

    .pg-curated-section .pg-curated-content {
        max-width: 100%;
    }

    .pg-curated-section .pg-curated-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {

    .pg-curated-section .pg-curated-title {
        font-size: 30px;
    }

    .pg-curated-section .pg-curated-text {
        font-size: 13px;
    }

.pg-curated-image {
    margin-bottom: 10px;
}




}

.pg-founder-section .pg-curated-title {
    font-family: Jost;
    font-weight: 400;
    font-size: 30px;
    line-height: 74px;
    text-align: center;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-bottom: 30px;
}

.pg-founder-section {
    font-family: 'Poppins', sans-serif;
}

.pg-founder-section .pg-founder-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 110px 40px 40px;
    height: 100%;
    border: 1px solid #EAEAEA
}

.pg-founder-section .pg-founder-img-wrap {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 218px;
    height: 218px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
}

.pg-founder-section .pg-founder-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.pg-founder-section .pg-founder-name {
    font-family: Quicksand;
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pg-founder-section .pg-founder-desc {
    font-family: Poppins;
    font-weight: 400;
    font-size: 14px;
    line-height: 170%;
    text-align: justify;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .pg-founder-section .pg-founder-card {
        padding: 20px;
    }

    .pg-founder-section .pg-founder-desc {
        font-size: 13px;
    }

    .pg-founder-section .pg-founder-img-wrap {
        position: relative;
        top: 0px;
    }

    .pg-founder-section .pg-curated-title {
        padding-bottom: 10px;
    }
}

/* Ending point */



/* =======================Help Centre============================================= */




.accordion-collapse .card-body {
    padding: 15px;
}

.faq-div .accordion-item {
    border: none;
    border-bottom: 1px solid #fdf1ef;
}

.faq-div .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #fef5f3;
    box-shadow: none;
    border-radius: 0;
}

.faq-div .accordion-button:focus {
    box-shadow: none;
}

.accor-faq {
 height: auto;
    overflow: auto;
    max-height: 400px;
}


.contact-section {
    position: relative;
    background: #ffffff;
    padding: 60px 40px;
    overflow: hidden;
}

/* Left diagonal stripe */
.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 100%;
    background: repeating-linear-gradient(135deg,
            #cfeeff,
            #cfeeff 6px,
            #ffffff 6px,
            #ffffff 12px);
}

.contact-content {
    padding-left: 80px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.contact-text {
    color: #555;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-info i {
    color: #797979;
    font-size: 18px;
    margin-right: 12px;
    position: absolute;
    left: 0;
    top: 0;
}

.contact-info p {
    margin-bottom: 12px;
    color: #000000;
    font-size: 15px;
    position: relative;
    padding-left: 30px;
}

.contact-us-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #FAFAFA;
}

p.fill-address {
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-text-fill-color: #00000000;

}

.bi-geo-alt-fill {
    -webkit-text-fill-color: #797979;
}


.contact-form label {
    color: #666666;
    font-size: 14px;
    margin-bottom: 5px;
}

.send-btn {
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    font-size: 14px;
    color: #ff5c7a;
    background: #fff;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    text-decoration: none;
    width: 100%;
}

.send-btn:hover {

    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}









.steps-section {
    padding: 60px 0;
}

.step-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.step-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.step-icon i {
    font-size: 22px;
    color: #ff6b6b;
}

.step-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-text {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.banner-img-5 img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}


.features-section {
    padding: 60px 0;
}

.feature-card {
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
}

.feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.apply-btn {
    /* display: block; */
    text-align: center;
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 14px;
    color: #666666;
    background: #fff;
    border: 1px solid #cccccc;
   text-transform: uppercase;
    
}

.apply-btn:hover {

    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}









.share-wrapper {
    position: relative;
    display: inline-block;
}

.share-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eeeeee;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.share-btn i {
    color: #888888;
    font-size: 12px;
}

.share-wrapper .dropdown-toggle::after {
    display: none;
}

.share-btn:hover {
    background-color: #666666;
    color: #ffffff;
}

.share-btn:hover i {
    color: #ffffff;
}


.share-menu {
    min-width: 160px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid #eee;
    text-align: center;
}

.share-menu a {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.share-menu a:hover {
    background: #f5f5f5;
}

.share-menu i {
    font-size: 18px;
}

.facebook {
    color: #1877f2;
}

.instagram {
    color: #e4405f;
}

.mail {
    color: #ff6b6b;
}

.tb-div {
    display: flex;
    justify-content: center;
    justify-content: space-between;
}



.pg-cart-header1 {
    font-family: Poppins;
    font-weight: 500;
    font-size: 14px;
    color: #000000;
}

.pg-product-image1 img {
 width: 100px;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
}

.cat-img {
    /* width: 100px; */
    height: auto;
}

.product-type {
    text-align: left;
    font-size: 13px;
    color: #797979;
    margin-top: 5px;
    padding-left: 20px;
}

table.table.product-table {
    vertical-align: middle;
}

.theme-link {
    color: #C13373;
    text-decoration: none;
    font-weight: 500;
}






.printing-card {
    max-width: 900px;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.printing-header {
    background: #e0e0e0;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.printing-body {
    padding: 15px 15px;
}

.printing-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #777;
}

.printing-item i {
    font-size: 20px;
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 2px;
}







.order-summary {
    max-width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 20px;
    padding: 15px;
    background: #fff;
    margin-top: 15px;
}

.order-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 500;
}

.promo-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.promo-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.promo-row input {
    flex: 1;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px 14px;
}



.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-size: 14px;
    color: #ff5c7a;
    background: #fff;
    border: 1px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%) border-box;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    color: #fff;
    border: 1px solid #EF5E5F;
}
.designer-name a {
    text-decoration: none;
}



/* Odd cards */
.wedding-s-theme .row > div:nth-child(odd) .wedding-s-card {
 background: linear-gradient(180deg, #FFFFFF 29.31%, #FFD5D6 100%) !important;
    border-radius: 8px;
}

/* Even cards */
.wedding-s-theme .row > div:nth-child(even) .wedding-s-card {
           transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: linear-gradient(to bottom, #FFFFFF 29%, #FFD5E8 100%);
    border-radius: 8px;
}

.pd-slider .designer-slide {
  /* margin: 0 15px; */
    box-sizing: border-box;
    /* padding: 15px; */
    /* background-color: #E9E9E1; */
    /* border-radius: 10px; */
}

.pd-slider .designer-name1 {  
  font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 0;
    margin-top: 15px;
  
}
.pd-slider .designer-slide img {
background-color: #ffffff;
    /* padding: 25px 20px; */
    border-radius: 10px;
    height: 230px;
    width: 100%;
    object-fit: contain;
    
}

.main-heading.highlight{
    background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: te  xt;-webkit-background-clip: text;-webkit-text-fill-color: transparent;
    padding-right: 5px ;
}










 .apply-form-wrapper {
       margin: 40px auto;
    background: #fff;
    padding: 30px 25px;
    border: 1px solid #dddddd;
    border-radius: 10px;
 }

 .apply-note {
     font-size: 14px;
     color: #222222;
     margin-bottom: 18px;
 }

 .apply-form-wrapper .form-control {

     line-height: 2;
 }

 .apply-form-wrapper textarea {

     width: 100%;
 }
 .form-check {
    display: flex;
}







.ppre.product-grid-final-wrapper .image-wrap img {
    width: 100%;
    border-radius: 12px;
    display: block;
    height: 220px !important;
    object-fit: cover;
}
.ppre.product-grid-final-wrapper .image-wrap img {
    width: 100%;
    border-radius: 12px;
    display: block;
    height: 220px !important;
    object-fit: cover;
}
.ppre.product-grid-final-wrapper .image-wrap {
    border-radius: 10px;
    height: 220px;
    position: relative;
}




.pg-wishlist-icon1 {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9;
        width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #EF5E5F; */
    z-index: 10;
}

.pg-wishlist-icon1 i {
    background: linear-gradient(180deg, #EF5E5F 0%, #C13373 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-left: 1px;
}
.px-100{
    padding-left: 200px;
    padding-right: 200px;
}




   .testimonial-card2 {
        margin: auto;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
        }

        .testimonial-text2 {
         font-size: 14px;
    font-weight: 400;
    color: #000;
    text-align: right;
    line-height: 1.5;
        }

        .testimonial-author2 {
            margin-top: 20px;
            font-size: 16px;
            font-weight: 600;
            text-align: right;
            color: #000;
        }

       .partners-container .slick-dots {
    position: absolute;
    bottom: -60px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
    .partners-container .slick-dots li.slick-active button:before {
    opacity: .75;
    color: #FF8BAA;
}
 .partners-container .slick-dots li button:hover:before,
 .partners-container .slick-dots li button:focus:before {
      opacity: .75;
    color: #FF8BAA;
}



/* checkout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-pagecheckout-page */


.checkout-page .form-wrapper {

    background: #fff;
    border-radius: 14px;
    padding: 30px 28px;
    margin: 40px auto;
    border: 1px solid #e0e0e0;
}

.checkout-page .form-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.checkout-page label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.checkout-page .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px 14px;
    font-size: 14px;
}

.checkout-page textarea.form-control {
    resize: none;
    min-height: 110px;
}




.checkout-page .payment-wrapper {

    background: #fff;
    border-radius: 10px;
    padding: 28px;
    margin: 40px auto;
    border: 1px solid #e0e0e0;
}

.checkout-page .payment-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.checkout-page .payment-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 18px;
}

.checkout-page .radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 10px;
}

.checkout-page .radio-label img {
    height: 18px;
}

.checkout-page .helper-text {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}

.checkout-page label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.checkout-page .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 10px 14px;
    font-size: 14px;
}

.checkout-page .input-icon {
    position: relative;
}

.checkout-page .input-icon span {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #aaa;
}

.checkout-page .option-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}

.checkout-page .option-row img {
    height: 20px;
}


.checkout-page .order-box {
    /* max-width: 420px; */
    background: #fff;
    /* margin: 30px auto; */
    border-radius: 12px;

    margin-top: 40px;
}

.checkout-page .accordion-button {
    font-weight: 700;
    background: transparent;
    box-shadow: none;
    padding: 12px 0;
    width: auto;
}

.checkout-page .accordion-button:not(.collapsed) {
    background: transparent;
    color: #000;
    box-shadow: none;
}

.checkout-page .accordion-button::after {
    /* transform: scale(0.8); */
    position: absolute;
    right: -35px;
}

.checkout-page .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.checkout-page .edit-cart {
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
}

.checkout-page .order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.checkout-page .item-thumb {
    position: relative;
    flex-shrink: 0;
}

.checkout-page .item-thumb img {
    width: 80px;
    border-radius: 6px;
}

.checkout-page .qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 22px;
    height: 22px;
    background: #7a0c4f;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-page .item-name {
    flex: 1;
    font-size: 14px;
    color: #666;
}

.checkout-page .item-price {
    font-weight: 600;
    font-size: 14px;
}

.checkout-page .summary-box {
    /* max-width: 420px; */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin: auto;
    margin-bottom: 50px;
}

.checkout-page .gst-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
}

.checkout-page .gst-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.checkout-page .gst-row input {
    flex: 1;
    border: 1px solid #aaa;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}

.checkout-page .gst-row button {
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
}

.checkout-page .gst-note {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.checkout-page .divider {
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
    width: 100%;
    height: 1px;
}

.checkout-page .price-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 12px;
}

.checkout-page .price-row strong {
    font-weight: 700;
}

.checkout-page .free {
    color: #1ba94c;
    font-weight: 600;
}

.checkout-page .total-row {
    font-size: 20px;
    font-weight: 700;
}

.checkout-page .promo {
    margin-top: 8px;
    font-size: 15px;
    cursor: pointer;
}







/* END checkout-pagecheckout-pagecheckout-pagecheckout-page */




/* My DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy DashboardMy Dashboard */



.my-dashboard .dashboard-content {
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}


.my-dashboard .sidebar {
    width: 280px;
    background: #ffffff;
    height: 100vh;
    border-right: 1px solid #e0e0e0;
    position: fixed;
    left: 0;
    top: 70px;
    padding: 0;
}

        .my-dashboard .sidebar-section-title {
            background: #f0f0f0;
            padding: 14px 20px;
            font-weight: 600;
            font-size: 16px;
        }

        .my-dashboard .sidebar-menu {
            list-style: none;
            padding: 10px 0;
            margin: 0;
        }

        .my-dashboard .sidebar-menu li a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 20px;
            text-decoration: none;
            color: #777;
            font-size: 15px;
            transition: background 0.2s ease;
        }

        .my-dashboard .sidebar-menu li a i {
            font-size: 18px;
        }

        .my-dashboard .sidebar-menu li a:hover {
            background: #f9f9f9;
        }

        .my-dashboard .sidebar-menu li.active a {
            color: #ff4d6d;
            font-weight: 600;
                background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
            
        }

        .my-dashboard .sidebar-menu li.active a i {
            color: #ff4d6d;
            
        }






        .my-dashboard .orders-wrapper {     
            margin: 30px auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
        }

        .my-dashboard .order-header {        
            padding-right: 15px;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;           
        }

        .my-dashboard .order-actions  {
          display: flex;
        }

        .my-dashboard .order-info {
            font-size: 13px;
            color: #777;
        }

        .my-dashboard .order-info a {
            color: #C13373;
            text-decoration: none;
            font-weight: 500;
        }

        .my-dashboard .order-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid #eee;
        }

        .my-dashboard .order-item img {
            width: 80px;
            border-radius: 6px;
        }

        .my-dashboard .item-details {
            flex: 1;
            font-size: 14px;
        }

        .my-dashboard .item-details small {
            color: #777;
            display: block;
        }

        .my-dashboard .item-price {
            font-weight: 700;
            margin-top: 6px;
        }

        .my-dashboard .review-box {
            text-align: center;           
        }

        .my-dashboard .stars i {
            color: #ffc107;
        }

        .my-dashboard .review-btn {
            border: 1px solid #ccc;
            background: #fff;
            border-radius: 20px;
            padding: 4px 10px;
            font-size: 12px;
            margin-top: 6px;
        }

        /* Pagination */
 .my-dashboard .pagination .page-link {
    border-radius: 50% !important;
    margin: 0 4px;
    color: #000;  
    background: #FFF;
    display: flex;
    width: 32px;
    height: 32px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

        .my-dashboard .pagination .active .page-link {
            background: #ff4d6d;
            border-color: #ff4d6d;
            color: #fff;
              background: var(--1, linear-gradient(180deg, #EF5E5F 0%, #C13373 100%));
        }



 .main-content {
    margin-right: 0;
}
 .main-content {
    margin-left: 280px;
}
 .main-content {
    flex: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
}

.main-content {
    -webkit-transition-duration: .25s, .25s;
    transition-duration: .25s, .25s;
    -webkit-transition-property: margin-left, margin-right;
    transition-property: margin-left, margin-right;
}


.my-dashboard .my-line{   
    border-top: 1px #dddddd solid;
}

.my-dashboard .accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color);
    background-color: #F3F3F3;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}


.my-dashboard .accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
    margin-bottom: 10px;
    /* border-radius: 00px; */
}









.my-dashboard .accordion-button {
       background-color: #F3F3F3; 
       /* border-radius: 10px; */
}
.my-dashboard .allpdf {
    border-radius: 500px;
    border: 1px solid #CACACA;
    background: #FFF;
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    color: #767676;
}
.my-dashboard .alldeline {
    border-radius: 500px;
    border: 1px solid #CACACA;
    background: #FFF;
    display: flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    color: #767676;

}


.my-dashboard .pdf5, .deline5 {
    border-radius: 500px;
    border: 1px solid #CACACA;
    background: #FFF;
    display: inline-flex;
    padding: 5px 19px;
    justify-content: center;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.pdf5:hover, .deline5:hover, .review-btn:hover {
 background: #dddddd;
 cursor: pointer;
}




.epdf-deline {
    display: flex;
    align-items: center;
}


.allpdf:hover, .alldeline:hover {
     background: #ececec;
}



.my-dashboard .page-selectg{
    border-radius: 8px;
    border: 1px solid #DDD;
    background: #FFF;
    height: 42px;
    padding: 8px 15px;
    align-items: center;
}





.my-dashboard .pg-btn-trash {
    background: transparent;
    border: none;
    color: #777;
    font-size: 18px;
    cursor: pointer;
}




.pg-price {
    font-size: 14px;
    font-weight: 600;
}





       .changepassword1 .profile-wrapper {    
            background: #fff;           
    
            border-radius: 12px;
        }

       .changepassword1 h5 {
            font-weight: 700;
            margin-bottom: 16px;
        }

        .changepassword1 label {
            font-size: 14px;
            margin-bottom: 6px;
            color: #555;
        }

        .changepassword1 .form-control {
            border-radius: 10px;
            padding: 10px 14px;
            border: 1px solid #dcdcdc;
        }

        .changepassword1 .accordion-button {
            padding: 0;
            font-weight: 600;
            color: #0d6efd;
            background: transparent;
            box-shadow: none;
        }

        .changepassword1 .accordion-button:not(.collapsed) {
            background: transparent;
            color: #0d6efd;
            box-shadow: none;
        }

        .changepassword1 .accordion-button::after {
            display: none; /* no arrow, like your design */
        }

        .changepassword1 .btn-outline-danger {
            border-radius: 30px;
            padding: 8px 18px;
            font-size: 12px;
        }

        .changepassword1 .btn-outline-secondary {
            border-radius: 30px;
            padding: 8px 26px;
            font-size: 12px;
        }

        .changepassword1 .action-buttons {
            display: flex;
            gap: 14px;
            margin-top: 20px;
        }






.payment-method .page-wrapper{
  
    margin: 30px auto;
    background:#fff;
    padding: 20px;
    border-radius: 12px;
}

/* Section title */
.payment-method .save-title{
   color: #000;
font-family: Poppins;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
margin-bottom: 20px;
}

/* Cards */
.payment-method .info-card{
    border:1px solid #e0e0e0;
    border-radius:18px;
    padding:20px;
    height:100%;

}

.payment-method .address-name{
    font-weight:700;
}

.payment-method .badge-default{
    font-size:11px;
    padding:4px 10px;
    border-radius:20px;
    background:#f2f2f2;
    float:right;
}

.payment-method .address-text{
    font-size:14px;
    color:#555;
    margin-top:6px;
}

.payment-method .card-actions a{
    font-size:13px;
    color:#666;
    margin-right:15px;
    cursor:pointer;
}

/* Add new card */
.payment-method .add-card{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    color:#555;
    cursor:pointer;
}

/* Payment */
.payment-method .payment-card{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
}

/* GST */
.payment-method .gstin{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
}
.payment-method .gstin span{
    color:#0a8f3c;
    font-weight:600;
}




.payment-method .address-card {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px;
    color: #000000;
    height: 100%;
     display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;  
    cursor:pointer;
}
.payment-method .address-card.add-new:hover {
    background: #fafafa;
}



.payment-method .offcanvas {    
    --bs-offcanvas-width: 500px;
}

.payment-method  .rename-actions {
    display: flex;
    gap: 15px;
    width: 100%;
}




.payment-method .address-form{ 
    background:#fff;
    padding:20px;
    border-radius:12px;
}

.payment-method label{
    font-size:14px;
    color:#555;
    margin-bottom:6px;
}

.payment-method .form-control, .form-select{
    border-radius:10px;
    padding:10px 14px;
    border:1px solid #d0d0d0;
    font-size:14px;
}

.payment-method .form-check-label{
    font-size:14px;
    color:#333;
}























/* ============================================
   REAL WEDDING SECTION RESPONSIVE STYLES
   ============================================ */






/* Desktop (1200px and above) */
@media (min-width: 1200px) {
    .real-wedding-section .heading-line-1 {
        font-size: 3.5rem;
    }

    .real-wedding-section .heading-line-2 {
        font-size: 4rem;
    }

    .card-image-container {
        height: 280px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-description {
        font-size: 15px;
    }
}


@media (max-width: 1199px) {
    .real-wedding-section {
        padding: 80px 0;
    }

    .real-wedding-section .heading-line-1 {
        font-size: 2.5rem;
    }

    .real-wedding-section .heading-line-2 {
        font-size: 3rem;
    }

    .real-wedding-slider-container {
        padding: 0 60px;
    }

    .card-image-container {
        height: 220px;
    }

    .card-content {
        padding: 25px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }
}




@media (max-width: 767px) 

{
    .real-wedding-section {
        padding: 60px 0;
    }

    .real-wedding-section .section-header {
        margin-bottom: 50px;
    }

    .real-wedding-section .heading-line-1 {
        font-size: 2rem;
    }

    .real-wedding-section .heading-line-2 {
        font-size: 2.3rem;
    }

    .real-wedding-section .subtitle-text {
        font-size: 14px;
    }

    .real-wedding-slider-container {
        padding: 0 50px;
    }

    .card-image-container {
        height: 200px;
    }

    .card-content {
        padding: 20px 15px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 12px;
    }

    .play-icon {
        width: 50px;
        height: 50px;
    }

    .play-triangle {
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        margin-left: 3px;
    }
}


@media (max-width: 576px) {
    .real-wedding-section {
        padding: 40px 0;
    }

    .real-wedding-section .heading-line-1 {
        font-size: 1.8rem;
    }

    .real-wedding-section .heading-line-2 {
        font-size: 2rem;
    }

    .real-wedding-section .subtitle-text {
        font-size: 13px;
    }

    .real-wedding-slider-container {
        padding: 0 35px;
    }

    .card-image-container {
        height: 180px;
    }

    .card-content {
        padding: 15px 12px;
    }

    .card-title {
        font-size: 15px;
    }

    .card-description {
        font-size: 11px;
    }

    .wedding-card {
        margin: 0 10px;
    }
}

/* ============================================
   LOVED BY COUPLES ACROSS INDIA - TESTIMONIAL SECTION
   ============================================ */












@media (max-width: 991px) {
    .contains_mega:after {
        content: '+';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 18px;
        background: none;
    }
}






@media (max-width: 991.98px) {

    .navbar-collapse {
        padding: 1rem 0;
        background-color: #ffffff;
        margin-top: 1rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    /* IMPORTANT: mobile-only mega menu */
    .navbar-collapse .mega-menu {
        position: static !important;
        display: none;
        box-shadow: none;
        padding: 15px 0;
        opacity: 1;
        visibility: visible;
        animation: none;

        max-height: 60vh;
        overflow-y: auto;
    }

    .navbar-collapse .mega-menu.show {
        display: block !important;
    }

    .mega-menu .col-lg-2,
    .mega-menu .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}





/* Responsive Styles */
@media (max-width: 1199px) {
    .themed-bundles-slider .slick-prev {
        left: -15px;
    }

    .themed-bundles-slider .slick-next {
        right: -15px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .title-pink {
        font-size: 3rem;
    }

    .themed-bundles-slider .slick-prev {
        left: 10px;
    }

    .themed-bundles-slider .slick-next {
        right: 10px;
    }

   
}






@media (max-width: 768px) {
    .category-image {
        height: 150px;
        overflow: hidden;
    }

    .testimonials-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .main-content {
        margin-left: 0px;
    }

    .my-dashboard .sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .my-dashboard .dashboard-content {
        margin: 0px auto;
    }

.tb-div {   
    flex-direction: column;
}


   .section-title {
        font-size: 40px;
    }

    .title-pink {
        font-size: 2.5rem;
        margin-left: 5px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 20px;
    }

    .themed-bundles-slider .slide {
        padding: 0 10px;
    }

    .card-image {
        height: 200px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .price-line {
        font-size: 1.1rem;
    }

    .themed-bundles-slider .slick-prev {
        left: 0px;
    }

    .the-catss-card .category-content {
        text-align: center;
    }

    .themed-bundles-slider .slick-next {
        right: 0px;
    }

    .themed-bundles-slider .slick-prev,
    .themed-bundles-slider .slick-next {
        height: 40px;
        width: 40px;
    }

    .themed-bundles-slider .slick-prev img,
    .themed-bundles-slider .slick-next img {
        width: 17px;
        height: 17px;
    }


.product-card {
        margin: 0px;
        height: 100%
    }


.price-n-qun {
    
    flex-direction: column;
}




    .explore-categories-section {
        padding: 50px 0 0px;
    }

    img.left-side-decoration-flower {
        display: none;
    }

    .tabbed-showcase-section .sub-heading {
        font-size: 24px !important;
    }

    .explore-categories-section .section-title {
        font-size: 48px;
    }

    .explore-categories-section .decorative-bg-top img {
        width: 120px;
    }

    .explore-categories-section .section-subtitle {
        font-size: 13px;
        padding: 0 20px;
    }

    .categories-grid {
        margin-top: 30px;
    }

    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 16px;
    }

    .card-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .card-description {
        font-size: 12px;
        margin-bottom: 10px;
        min-height: 36px;
    }

    .template-count {
        font-size: 13px;
    }

.youtubevideo12 {
    width: 100%;
    height: 100%;
    margin: 0;
}



}

@media (max-width: 480px) {
    .explore-categories-section .section-title {
        font-size: 50px;
    }

    .explore-categories-section .title-pink {
        font-size: 2rem;
    }

    .card-image {
        height: 160px;
    }

    .card-content {
        padding: 14px;
    }
.hype-image{
    height: 140px;
    object-fit: contain;
    background-color: #dddddd;
}
.splide__slide{
    padding: 0
}

.designer-slide{
    padding: 0;
}

.designers-section{
        padding: 30px 0 30px;
}



}

/* Responsive Styles */
@media (max-width: 1199px) {
    .explore-categories-section .section-title {
        font-size: 70px;
    }

    .explore-categories-section .decorative-bg-top img {
        width: 160px;
    }

    .card-image {
        height: 250px;
    }
}

@media (max-width: 991px) {
    .explore-categories-section {
        padding: 30px 0 30px;
    }
.themed-bundles-section { 
    margin-top: 30px;
}




    .explore-categories-section .section-title {
        font-size: 40px;
    }

    .explore-categories-section .decorative-bg-top img {
        width: 140px;
    }

    .categories-grid {
        margin-top: 40px;
    }

    .card-content {
        padding: 16px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }

    .card-image {
        height: 220px;
    }
}

