* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html, body {
    max-width: 100vw;
    overflow-x: hidden
}

.handcrafted-section {
    padding: 80px 0;
    background: #fff
}

.handcrafted-title {
    font-size: 3rem;
    color: #333;
    font-weight: 300;
    margin-bottom: 50px
}

.category-tabs {
    margin-bottom: 50px
}

.category-tab {
    background: #fff0;
    border: 3px solid #ddd;
    color: #666;
    padding: 8px 22px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
    font-weight: 500;
    transition: all 0.3s ease
}

    .category-tab.active {
        background: #90ee90;
        border-color: #90ee90;
        color: #333;
        padding: 8px 22px;
        border: 3px solid gold;
        border-bottom: 3px solid brown;
        background: #fff4cf !important;
        transform: scale(1) rotate(0deg)
    }

.product-grid {
    margin-bottom: 50px
}

.product-card:hover {
    transform: translateY(-5px)
}

.product-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #80592d;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600
}

.product-info {
    padding: 25px
}

.product-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500
}

.product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    gap: 18px
}

    .product-price .price {
        font-size: 18px;
        font-weight: 600;
        color: #333
    }

.whatsapp-price-btn {
    color: #525252;
    border: 1px solid #242424;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    display: inline-block;
    font-weight: 600
}

    .whatsapp-price-btn i {
        color: #25d366;
        font-size: 20px;
        font-weight: 600
    }

    .whatsapp-price-btn:hover i {
        color: #fff;
        font-size: 20px;
        font-weight: 600
    }

    .whatsapp-price-btn:hover {
        background: #25d366;
        color: #fff;
        border: none
    }

.Top-picks-section {
    padding: 80px 10px
}

@media (max-width:500px) {
    .hero-background {
        background: url(/Assets/MobileModel.webp) no-repeat center center/cover !important
    }
}

@media (max-width:991.98px) {
    .hero-background {
        height: 100vh;
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed
    }
}

@media (max-width:991.98px) {
    .hero {
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .hero-content {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        z-index: 2;
        gap: 2vw
    }

    .hero-text {
        align-items: flex-start !important;
        text-align: left !important;
        width: 60%;
        max-width: 100%
    }
}

@media (max-width:767.98px) {
    .hero {
        min-height: 50vh
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1vw
    }

    .hero-text {
        width: 65%;
        font-size: .95rem
    }
}

@media (max-width:575.98px) {
    .hero {
        min-height: 40vh
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: .5vw
    }

    .hero-text {
        width: 70%;
        font-size: .9rem;
        padding-right: .5rem
    }

    .hero-title {
        font-size: 4.5rem !important;
        line-height: normal !important
    }
}

.top-header-content {
    background: #ffefe5;
    /*background: #fde9ea*/
}

#top-header-scroll {
    display: flex;
    flex-wrap: nowrap !important;
    white-space: nowrap
}

    #top-header-scroll span {
        flex: 0 0 auto
    }

.top-header-right {
    color: var(--primary-gold);
    font-weight: 500
}

@media (max-width:768px) {
    #top-header-scroll::-webkit-scrollbar {
        display: none
    }

    .Top-picks-section {
        padding: 0 10px
    }
}

@media (min-width:769px) {
    #top-header-scroll {
        overflow-x: visible !important;
        white-space: normal !important
    }
}

#main-header {
    width: 95%;
    height: 70px;
    background: rgb(255 255 255 / .8);
    backdrop-filter: blur(9px);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: fixed;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease
}

    #main-header.scrolled {
        background: rgb(255 255 255 / .8);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 20px rgb(0 0 0 / .3)
    }

.mobile-icons {
    display: none;
    gap: 12px;
    align-items: center
}

    .mobile-icons .icon-img {
        cursor: pointer
    }

    .mobile-icons .icon-link {
        font-size: 1.3rem;
        color: #303030;
        transition: color 0.3s ease
    }

        .mobile-icons .icon-link:hover {
            color: #a87c4f
        }

.logo {
    font-size: 1.5em;
    font-weight: 500
}

@media (max-width:1024px) {
    .logo {
        gap: 0.5rem !important
    }

    .logo-text {
        font-size: 1rem !important
    }

    .logo-img {
        height: 30px !important
    }

    #main-header {
        padding: 10px
    }

    .nav-links {
        display: flex;
        gap: 6px !important
    }
}

.nav-links {
    display: flex;
    gap: 20px
}

    .nav-links a {
        color: #303030;
        text-decoration: none;
        font-weight: 400;
        position: relative;
        transition: 0.3s;
        font-size: .9rem
    }

@media (min-width:1025px) {
    .nav-links a {
        font-size: 1.1rem
    }

    .logo-text {
        font-size: 1.6rem !important
    }
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #685e5e;
    transition: width 0.3s ease
}

.nav-links a:hover::after {
    width: 100%
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001
}

    .menu-toggle .bar {
        width: 100%;
        height: 3px;
        background-color: #6f6f6f;
        border-radius: 5px
    }

.content {
    padding: 120px 5%;
    text-align: center
}

    .content h1 {
        font-size: 3em;
        margin-bottom: 20px
    }

    .content .filler-text {
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1em;
        line-height: 1.6;
        text-align: left
    }

        .content .filler-text p {
            margin-bottom: 20px
        }

@media (max-width:768px) {
    #main-header {
        height: 54px;
        padding: 0 10px
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 78vw;
        max-width: 340px;
        height: 100vh;
        background: rgb(255 255 255 / .99);
        backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 0 0;
        transition: right 0.4s cubic-bezier(.77,0,.18,1);
        box-shadow: -2px 0 15px rgb(0 0 0 / .15);
        border-radius: 8px;
        z-index: 2000;
        overflow: hidden
    }

    .mobile-icons {
        display: flex;
        align-items: center;
        position: absolute;
        right: 54px;
        top: 42%;
        transform: translateY(-50%)
    }

    .nav-links-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        max-height: 70vh;
        padding: 0 0 10px 0;
        margin: 0;
        scrollbar-width: thin;
        scrollbar-color: #eee #fff
    }

        .nav-links-list::-webkit-scrollbar {
            width: 6px;
            background: #fff
        }

        .nav-links-list::-webkit-scrollbar-thumb {
            background: #eee;
            border-radius: 4px
        }

    .nav-links a {
        font-size: 1em;
        font-weight: 500;
        color: #4b4b4b;
        width: 100%;
        padding: 10px 18px;
        border-bottom: 1px solid #f2f2f2;
        margin: 0;
        text-align: left;
        background: none;
        transition: background 0.2s,color 0.2s
    }

        .nav-links a:last-child {
            border-bottom: none
        }

        .nav-links a.active, .nav-links a:focus, .nav-links a:hover {
            background: #f7e7ce;
            color: #5b0e09;
            transition: left 0.4s cubic-bezier(.77,0,.18,1)
        }

    .nav-links .nav-links-list {
        margin-top: 0
    }

    .nav-links.active {
        left: 0
    }

    .menu-toggle {
        display: flex;
        width: 28px;
        height: 22px
    }

        .menu-toggle .bar {
            height: 2.5px;
            transition: transform 0.4s ease,opacity 0.4s ease
        }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 8px rgb(0 0 0 / .15);
        transition: left 0.4s ease-in-out;
        z-index: 1000
    }

        .nav-links.active {
            left: 0
        }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px,5px)
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px,-6px)
    }

    .new-arrivals-carousel > div {
        flex: 0 0 auto;
        scroll-snap-align: center;
        margin-right: 16px
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/Assets/Hero section 5.svg") no-repeat center center/cover;
    z-index: -2
}

.hero-content {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 57vh
}

.hero-text {
    z-index: 2
}

.hero-subtitle {
    font-family: "Prata",serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.508px;
    color: #5b0e09;
    margin-bottom: 20px
}

.hero-title {
    font-family: "EB Garamond",serif;
    font-size: 6.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 114px;
    letter-spacing: 4px;
    color: #5b0e09;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards
}

.hero-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff
}

    .hero-heading .icon {
        width: 74px;
        height: 95px;
        flex-shrink: 0
    }

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 243.936px;
    height: 65.789px;
    padding: 20.698px 41.395px;
    gap: 7.392px;
    flex-shrink: 0;
    border: none;
    border-radius: 0 14px;
    background: #5b0e09;
    color: #fff;
    font-family: "Prata",serif;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.2s forwards
}

    .btn-primary:hover {
        background: #3e0904;
        color: #fff;
        transform: scale(1.05);
        border-radius: 14px 0;
        box-shadow: 0 4px 31px 0 #fff5d8
    }

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards
}

.ico {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 44%;
    bottom: 100px;
    cursor: pointer
}

.circle {
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.circle-main {
    width: 50px;
    height: 50px;
    top: 0
}

.circle-top {
    width: 15px;
    height: 15px;
    top: 0;
    animation: blob-1-anim 3s cubic-bezier(.77,0,.175,1) infinite
}

.svg {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px
}

.st-arrow {
    fill: #55544f;
    animation: scrolly 3s cubic-bezier(.77,0,.175,1) infinite;
    transform-origin: bottom center;
    will-change: transform,opacity;
    height: 20px;
    width: 20px
}

@keyframes blob-1-anim {
    0%,24%,100% {
        transform: translateX(-50%) translateY(0)
    }

    14% {
        transform: translateX(-50%) translateY(-8px)
    }
}

@keyframes blob-2-anim {
    0%,30%,70%,100% {
        transform: translateX(-50%) translateY(10px)
    }

    95% {
        transform: translateX(-50%) translateY(26px)
    }
}

@keyframes scrolly {
    0% {
        transform: translate3d(0,-150%,0) rotateX(90deg) scale(.5) skewX(3deg);
        opacity: 0
    }

    30% {
        transform: translate3d(0,0,0) rotateX(0deg) scale(1) skewX(0deg);
        opacity: 1
    }

    70% {
        transform: translate3d(0,0,0) rotateX(0deg) scale(1) skewX(0deg);
        opacity: 1
    }

    95% {
        transform: translate3d(0,50%,0) rotateX(-90deg) scale(.5) skewX(-3deg);
        opacity: 0
    }

    100% {
        transform: translate3d(0,50%,0) rotateX(-90deg) scale(.5) skewX(-3deg);
        opacity: 0
    }
}

@media (prefers-reduced-motion:reduce) {
    .circle-top, .circle-bottom, .st-arrow {
        animation: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes float {
    0%,100% {
        transform: translate(-50%,-50%) translateY(0) rotate(0deg)
    }

    50% {
        transform: translate(-50%,-50%) translateY(-20px) rotate(180deg)
    }
}

@keyframes pulse {
    0%,100% {
        opacity: .3;
        transform: translate(-50%,-50%) scale(1)
    }

    50% {
        opacity: .6;
        transform: translate(-50%,-50%) scale(1.1)
    }
}

@keyframes floatRandom {
    0%,100% {
        transform: translateY(0) rotate(0deg)
    }

    25% {
        transform: translateY(-10px) rotate(90deg)
    }

    50% {
        transform: translateY(-5px) rotate(180deg)
    }

    75% {
        transform: translateY(-15px) rotate(270deg)
    }
}

@keyframes scrollMove {
    0% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(40px)
    }
}

@media (max-width:1200px) {
    .hero-content {
        gap: 60px
    }

    .hero-title {
        font-size: 56px;
        line-height: 70px
    }

    .hero-heading svg {
        display: none
    }
}

@media (max-width:968px) {
    .floating-nav {
        padding: 12px 20px
    }

    .nav-container {
        gap: 20px
    }

    .nav-menu {
        gap: 20px
    }

    .nav-link {
        font-size: 13px
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center
    }

    .hero-text {
        text-align: left !important;
        align-items: start !important;
        gap: 1rem !important
    }

    .hero-title {
        font-size: 48px
    }

    .jewelry-showcase {
        width: 300px;
        height: 300px
    }

    .main-piece {
        width: 250px;
        height: 250px
    }
}

@media (max-width:768px) {
    .floating-nav {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        border-radius: 0;
        background: var(--white);
        box-shadow: 0 2px 10px var(--shadow-light)
    }

    .nav-menu {
        display: none
    }

    .hero {
        padding-top: 80px
    }

    .hero-title {
        font-size: 36px
    }

    .hero-description {
        font-size: 16px
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px
    }

    .hero-heading {
        align-items: left !important
    }
}

@media (max-width:480px) {
    .hero-content {
        padding: 0 15px
    }

    .hero-title {
        font-size: 3.5rem !important
    }

    .jewelry-showcase {
        width: 250px;
        height: 250px
    }

    .main-piece {
        width: 200px;
        height: 200px
    }

    .accent-piece-1 {
        width: 60px;
        height: 60px
    }

    .accent-piece-2 {
        width: 50px;
        height: 50px
    }
}

@media (max-width:375px) {
    .hero-title {
        font-size: 2.5rem !important;
        line-height: normal !important
    }
}

.common_hero {
    background: #f7e7ce;
    height: 220px;
    padding-top: 104px;
    padding-left: 45px;
    padding-right: 45px
}

.forces-section {
    padding: 80px 10px
}

.forces-title {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 15px
}

.forces-subtitle {
    font-size: 2rem;
    color: #333;
    font-weight: 400;
    margin-bottom: 30px
}

.forces-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 500px
}

.forces-cards-wrapper {
    width: 100%;
    padding: 0 10px 0 10px
}

.celebrity-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 500px;
    margin-bottom: 30px;
    box-shadow: 0 10px 10px rgb(0 0 0 / .2);
    transition: transform 0.3s ease
}

    .celebrity-card:hover {
        transform: translateY(-10px)
    }

    .celebrity-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease
    }

    .celebrity-card:hover img {
        transform: scale(1.05)
    }

.celebrity-name {
    position: absolute;
    bottom: 10px;
    left: 28%;
    transform: translateX(-50%);
    background: rgb(255 255 255 / .95);
    padding: 6px 28px;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase
}

@media (max-width:1024px) {
    .celebrity-name {
        position: absolute;
        bottom: 10px;
        left: 10%;
        transform: translateX(-25%);
        background: rgb(255 255 255 / .95);
        padding: 6px 28px;
        border-radius: 25px;
        font-weight: 600;
        color: #333;
        font-size: 10px;
        letter-spacing: 1px;
        text-transform: uppercase
    }
}

.our-story-section {
    min-height: 100vh
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgb(37 211 102 / .3);
    transition: transform 0.3s ease;
    text-decoration: none
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        color: #fff;
        text-decoration: none
    }

@media (max-width:991.98px) {
    .forces-cards-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem
    }

    #forces-cards-row {
        flex-wrap: nowrap !important;
        min-width: 600px
    }

    .forces-section .col-lg-8 {
        padding-left: 0;
        padding-right: 0
    }

    .forces-cards-wrapper::-webkit-scrollbar {
        display: none
    }
}

@media (max-width:768px) {
    .forces-section {
        margin: 0 !important;
        padding: 40px 10px !important
    }

    .hero-content h1 {
        font-size: 2.5rem
    }

    .hero-content h2 {
        font-size: 1.2rem
    }

    .ico {
        bottom: 35px
    }

    .forces-title {
        font-size: 2rem
    }

    .forces-subtitle {
        font-size: 1.5rem
    }

    .celebrity-card {
        height: 400px
    }

    .navbar-nav {
        text-align: center
    }

        .navbar-nav .nav-link {
            margin: 5px 0
        }

    .handcrafted-section {
        padding: 80px 0 0 0
    }
}

@media (max-width:576px) {
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 1px
    }

    .hero-content h2 {
        font-size: 1rem;
        color: #fff
    }

    .celebrity-card {
        height: 350px
    }
}

.new-arrivals-section {
    background: #f8f6f2;
    border-radius: 24px;
    margin: 40px 0;
    position: relative
}

.new-arrivals-title {
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px
}

.new-arrivals-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 16px
}

.new-arrivals-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77,0,.18,1);
    will-change: transform
}

.new-arrivals-carousel-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth
}

.new-arrivals-carousel {
    display: flex;
    flex-wrap: nowrap
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    box-shadow: 0 2px 12px rgb(0 0 0 / .08);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d95858;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    opacity: .92
}

    .carousel-arrow.left {
        left: 8px
    }

    .carousel-arrow.right {
        right: 8px
    }

    .carousel-arrow:hover {
        background: #ffeaea
    }

.chip-new {
    position: absolute;
    top: 18px;
    left: 18px;
    background: #d95858;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgb(217 88 88 / .08);
    letter-spacing: .5px;
    z-index: 2;
    display: inline-block
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%
}

.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgb(0 0 0 / .07);
    border: none;
    transition: box-shadow 0.2s,transform 0.2s;
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

    .product-card:hover {
        box-shadow: 0 8px 32px rgb(217 88 88 / .13);
        transform: translateY(-6px) scale(1.03)
    }

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 0;
    box-shadow: 0 2px 10px rgb(0 0 0 / .04)
}

.product-info {
    padding: 0;
    width: 100%
}

.product-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 8px;
    min-height: 48px;
    line-height: 1.3;
    font-display: 'Playfair Display',serif !important
}

.product-price {
    font-size: 1.1rem;
    color: #d95858;
    font-weight: 700;
    margin-bottom: 0
}

@media (max-width:991.98px) {
    .new-arrivals-carousel-wrapper {
        padding: 0 4px
    }

    .product-card {
        padding: 1.2rem .8rem 1rem .8rem;
        gap: 1rem
    }

    .product-image {
        height: 110px
    }
}

@media (max-width:575.98px) {
    .new-arrivals-section {
        padding: 40px 0 20px 0;
        border-radius: 12px;
        margin: 20px 0
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.1rem
    }

    .chip-new {
        top: 10px;
        left: 10px;
        font-size: .78rem;
        padding: 4px 10px
    }

    .product-card {
        padding: .8rem .5rem .7rem .5rem;
        gap: .7rem
    }

    .product-image {
        height: 60px
    }
}

.content-left {
    padding: 10%
}

.Feature-section-heading {
    color: #d4af37 !important;
    font-family: "Amiri",serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.8px;
    margin-bottom: 10px
}

.feature-card {
    display: flex;
    padding: 0 24px 24.8px 24px;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    width: 100%;
    border-bottom: 1px solid #e5e5e5
}

.feature-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 6px
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 7.6px;
    width: 308px;
    justify-content: center
}

.feature-title {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #262626
}

.f-section {
    font-family: 'Playfair Display',serif !important
}

.feature-price {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #262626
}

.Feature-cta-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: #d95858;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    text-transform: uppercase;
    cursor: pointer
}

.Feature-bg {
    background: #fef2f3
}

.Feature-object-fit-cover {
    object-fit: cover;
    height: 100%;
    width: 100%
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgb(255 215 0 / .9);
    border-radius: 50%;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    transform: translate(-50%,-50%)
}

.pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    background: gold;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    cursor: pointer;
    transform: translate(-50%,-50%)
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(255 215 0 / .6)
    }

    70% {
        box-shadow: 0 0 0 25px #fff0
    }

    100% {
        box-shadow: 0 0 0 0 #fff0
    }
}

.pulse:hover::after {
    content: "Gold Necklace • ₹25,000";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    white-space: nowrap
}

.features-section {
    padding: 80px 0;
    background: #fff
}

.feature-item {
    text-align: center;
    padding: 0 0px;
    margin-bottom: 5px;
    /*padding: 0 20px;
    margin-bottom: 40px;*/
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d4af37;
    border-radius: 50%;
    color: #d4af37;
    font-size: 30px
}

.feature-title {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6
}

@media (max-width:768px) {
    .collection-card {
        height: 400px;
        padding: 30px
    }

        .collection-card h3 {
            font-size: 2rem
        }

    .handcrafted-title, .celeb-picks-title {
        font-size: 2.5rem
    }

    .product-image {
        height: 300px
    }
}

.footer {
    background: url("/assets/footer shape.svg") center center/cover no-repeat;
    padding: 150px 30px;
    padding-bottom: 50px;
    color: #666
}

.footer-logo img {
    width: 200px;
    height: auto;
    max-width: 100%
}

.footer-links h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gold-color)
}

.footer-links a {
    color: #dadada;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease
}

    .footer-links a:hover {
        color: var(--gold-color)
    }

.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--gold-color)
}

.footer-contact p, .footer-contact a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px
}

    .footer-contact a:hover {
        color: var(--gold-color)
    }

.footer-contact-icons i {
    cursor: pointer;
    transition: transform 0.3s ease
}

    .footer-contact-icons i:hover {
        transform: scale(1.2)
    }

.footer-social a {
    color: #ccc;
    font-size: 1.5rem;
    transition: all 0.3s ease
}

    .footer-social a:hover {
        color: var(--gold-color);
        transform: translateY(-2px)
    }

.footer-payments {
    text-align: center;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap
}

    .footer-payments img {
        height: 30px;
        transition: opacity 0.3s ease
    }

        .footer-payments img:hover {
            opacity: 1
        }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: .9rem
}

    .footer-bottom a {
        color: #ccc;
        text-decoration: none
    }

        .footer-bottom a:hover {
            color: var(--gold-color)
        }

.text-green {
    color: #25d366
}

.mr-01 {
    margin-right: .1rem
}

.mr-02 {
    margin-right: .2rem
}

.ml-01 {
    margin-left: .1rem
}

.ml-02 {
    margin-left: .2rem
}

.btn-whatsapp-order {
    border: 2px solid #25d366;
    border-radius: 50px;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.3s ease
}

    .btn-whatsapp-order:hover {
        background: #25d366;
        color: white !important;
        border: 2px solid #25d366;
        transition: background 0.3s ease
    }

        .btn-whatsapp-order:hover i {
            color: #fff !important
        }

.no-link {
    all: unset;
    cursor: pointer
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Playfair Display',serif !important;
    color: #efefef !important
}
.chip-container {
    position: absolute;
    top: 18px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 85%;
    z-index: 2;
}
.chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    white-space: nowrap;
}
.chip-new {
    background: #800080;
}
.chip-discount {
    background: #dc3545;
}
.chip-comingsoon {
    background: #ffc107;
}
.chip-soldout {
    background: #6c757d;
}
.chip-bestseller {
    background: linear-gradient(135deg, #d4af37, #ffd700, #d4af37);
    color: black;
    font-weight: 400;
}
.chip-topseller {
    background: linear-gradient(135deg, #a8c8ec, #f0f8ff, #dda0dd, #98fb98);
    color: black;
    font-weight: 400;
}
.chip-limited {
    background: #fd7e14;
}
.chip-featured {
    background: #20c997;
}
.product-price ins {
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

.product-price del {
    font-size: 0.85rem;
    margin-left: 4px;
}

.product-action .btn {
    margin-top: 5px;
    font-size: 0.85rem;
}

.ptheme-1 {
    object-fit: cover;
}

.theme1-text {
    color: #d95858 !important;
}

.product-info {
    padding: 0px !important;
}
