:root {
    --primary-color: #772022;
    --swiper-theme-color: #007aff;
    --color-white: #fff;
    --color-black: #000;
    --color-blue: #0070d2;
    --color-green: #1fa042;
    --color-primary: #00a1e0;
    --color-red: #c00;
    --color-success: var(--color-green);
    --color-danger: var(--color-red);
    --color-light-blue: #7ed0ee;
    --color-grey1: #f9f9f9;
    --color-grey2: #eee;
    --color-grey3: #ccc;
    --color-grey4: #999;
    --color-grey5: #666;
    --color-grey6: #444;
    --color-grey7: #222;
    --color-grey8: #333;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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


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

/* -------------------------------------------------------------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 1000px;
    background: #f3e4d4;
    border-radius: 20px;
    padding: 20px;
}

.modal-wrapper {
    display: flex;
    gap: 30px;
}

/* LEFT */

.offer-side {
    width: 50%;
}

.offer-card {
    background: #f2e0c8;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.offer-img {
    width: 180px;
    border-radius: 50%;
}

.offer-banner {
    background: #e6d3b7;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.offer-banner h2 {
    color: #8a4b00;
}

.benefits {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* RIGHT */

.login-side {
    width: 50%;
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.login-side h1 {
    font-size: 28px;
}

.mobile-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 40px;
    overflow: hidden;
}

.flag {
    padding: 10px 15px;
}

.flag img {
    width: 22px;
}

.mobile-box input {
    border: none;
    flex: 1;
    padding: 12px;
    outline: none;
    display: inline;
}

.mobile-box button {
    background: #9e1b1f;
    color: white;
    border: none;
    /* padding: 12px 25px; */
    padding: 12px;
    border-radius: 40px;
    cursor: pointer;
    display: inline;
}

.terms {
    margin-top: 25px;
    font-size: 13px;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* ===== Tablet ===== */

@media (max-width: 992px) {

    .modal-content {
        width: 95%;
    }

    .modal-wrapper {
        gap: 20px;
    }

    .offer-side {
        width: 50%;
    }

    .login-side {
        width: 50%;
        padding: 20px;
    }

    .mobile-box input {
        padding: 0;
    }

    .mobile-box button {
        padding:7px 10px 7px 0px;
        font-size: 10px;
        border-radius: 10px;
    }

}


/* ===== Mobile ===== */

@media (max-width: 576px) {

    .modal-wrapper {
        flex-direction: column;
    }

    /* LEFT HIDE ONLY ON MOBILE */

    .offer-side {
        display: none;
    }

    /* RIGHT FULL WIDTH */

    .login-side {
        width: 100%;
        padding: 25px;
    }

    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .login-side h1 {
        font-size: 22px;
    }

    .mobile-box {
        flex-direction: column;
        align-items: stretch;
        border-radius: 15px;
        padding: 10px;
        gap: 10px;
    }
    .mobile-box input{
        padding: 10px;
        border-bottom: 1px solid var(--color-grey3);
    }

    .mobile-box button {
        padding: 5px;
        font-size: 16px;
        display: block;
    }
    .flag{
        display: none;
    }


}


/* ----------------------------------------------------------------------------------------------------- */
#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 25px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
}

#myBtn:hover {
    background-color: #555;
}

.letter {
    display: inline-block;
}

body {
    background-color: var(--color-grey7);
}

body::selection {
    background-color: var(--primary-color);
    color: var(--color-grey1);
}

::-webkit-scrollbar {
    width: 8px;

}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    border-right: 2px solid var(--color-grey1);
}

/* HEADER */

.header {
    background: var(--color-grey1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.res-tab {
    display: none;
    align-items: center;
    gap: 15px;
}

.humburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.humburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: .3s;
}


.logo img {
    cursor: pointer;
}


.search-area {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 520px;
    border: 1px solid #e2e2e2;
    border-radius: 50px;
    padding: 6px 15px;
    background: #fafafa;
    transition: .3s;
}

.search-area:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.search-area i {
    font-size: 18px;
    color: var(--primary-color);
}


.search {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
}

.search:focus {
    outline: none;
}


.search-icons {
    display: flex;
    gap: 10px;
}

.search-icons a {
    display: flex;
    align-items: center;
}

.search-icons i {
    font-size: 18px;
    color: var(--primary-color);
    transition: .3s;
}

.search-icons i:hover {
    transform: scale(1.15);
}

/* NAVBAR ICONS */

.icon {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon a {
    position: relative;
}

.icon i {
    font-size: 20px;
    color: var(--primary-color);
    transition: .3s;
}

.icon i:hover {
    transform: scale(1.2);
}

input[type="search"] {
    color: var(--primary-color);
}

/* SEARCH HEADER */

.search-header {
    display: none;
    padding: 10px 20px;
    background: #fff;
}

.search-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e3e3e3;
    border-radius: 50px;
    padding: 6px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.search-bar {
    border: none;
    flex: 1;
    font-size: 15px;
    padding: 6px 10px;
}

.search-bar:focus {
    outline: none;
}


@media (max-width:992px) {
    .search-header {
        padding: 3px;
    }

    .search-area {
        width: 350px;
    }

    .navbar {
        padding: 10px 20px;
    }

}

@media (max-width:768px) {

    .logo {
        display: none;
    }

    .search-area {
        display: none;
    }

    .search-header {
        display: block;
    }

    .res-tab {
        display: flex;
    }

    .icon {
        gap: 15px;
    }

}


@media (max-width:480px) {

    .navbar {
        padding: 10px 15px;
    }

    .icon i {
        font-size: 18px;
    }

}


/* SECOND HEADER */

.header-content {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.header-content-type {
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}


.content-type a {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 10px 14px;
    text-decoration: none;
    font-size: 14px;
    color: #444;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    border-radius: 6px;
}


.content-type a img {
    height: 18px;
}


.content-type a:hover {
    color: var(--primary-color);
    background: #f8f8f8;
}


.content-type a::after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 0;
    height: 2px;
    width: 70%;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.content-type a:hover::after {
    transform: scaleX(1.2);
}

/* CLOSE BUTTON */

.close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

.content-type a:hover img {
    transform: scale(1.1);
    transition: .3s;
}

/* TABLET */

@media(max-width:992px) {

    .header-content-type {
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-type a {
        font-size: 13px;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .header-content {
        overflow-x: auto;
    }

    .header-content-type {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 5px;
    }

    .header-content-type::-webkit-scrollbar {
        display: none;
    }

    .content-type a {
        white-space: nowrap;
        font-size: 13px;
    }

}

/* Hero Section  */
#hero {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

swiper-container {
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
    swiper-container {
        height: 430px;
        /* Mobile ke liye height kam */
    }
}

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

swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Image stretch nahi hogi */
    border-radius: 10px;
}


/* Modern Interpretations in Diamond */
#modern {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

.modern-text {
    text-align: center;
    margin-top: 50px;
}

.modern-card {
    position: relative;
}

.modern-card img {
    border-radius: 20px;
}

.modern-card-text {
    position: absolute;
    color: var(--primary-color);
    bottom: 0;
    font-size: 22px;
    font-weight: 600;
    opacity: 1;
    padding: 10px;
    /* backdrop-filter: blur(10px); */
    border-radius: 10px;

}

.modern-overly {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 60px 20px 10px;
    background: linear-gradient(to top, rgba(248, 244, 244, 0.8), rgba(238, 234, 234, 0.4), transparent);
}

/* Tanishq Collections */
#collection {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}


/* Find Your Perfect Match  */
#perfect-match {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

.product-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    transition: opacity 0.4s ease-in-out;
}

.hover-img i {
    color: white;
    font-size: 24px;
    background: black;
    padding: 10px;
    border-radius: 50%;
}

.product-container:hover .hover-img {
    opacity: 1;
}


/* Trending Now  */
#Trending-Now {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

/* Tanishq World  */
#Tanishq-World {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

.tanishq-world-img {
    position: relative;

}

.tanishq-world-img img {
    border-radius: 10px;
}

.tanishq-world-text {
    position: absolute;
    color: var(--color-grey1);
    bottom: 0;
    left: 40%;
    font-size: 30px;
    font-weight: bold;
}

.card-overly {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px 20px 90px;
    background: linear-gradient(to top, rgb(180, 0, 0, 0.8), rgb(255, 0, 0, 0.4), transparent);

}


/* NEW ARRIVALS SECTION */


#New-Arrivales {
    width: 100%;
    background: var(--color-grey1);
    padding-top: 80px;
}

/* background area */

.new-aarival-back-img {
    background: url("../images/new-arrivals-background.webp");
    background-size: cover;
    background-position: center;
    padding: 80px 0 0px 0;
    position: relative;
}

.new-aarival-item {
    max-width: 600px;
    margin-left: 100px;
}

.new-aarival-item p {
    line-height: 1.4;
}

.new-aarival-img {
    margin-top: 60px;
}

.new-aarival-img-1 {
    width: 100%;
    border: 8px solid var(--color-grey1);
    border-radius: 12px;
    transition: .4s;
}

.new-aarival-img-1:hover {
    transform: scale(1.03);
}


/* STYLING 101 with DIAMOND SECTION */


#styling {
    width: 100%;
    background: var(--color-grey1);
    padding: 0px 20px 80px 20px;
    text-align: center;
}

.mySwiper1 {
    width: 260px;
    height: 340px;
    margin-top: 40px;
}

swiper-slide {
    border-radius: 18px;
    overflow: hidden;
}


swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media(max-width:992px) {

    .new-aarival-item {
        margin-left: 40px;
    }

    .new-aarival-back-img {
        padding: 60px 0 160px 0;
    }

    .mySwiper1 {
        width: 220px;
        height: 300px;
    }

}

/* =============================
   MOBILE RESPONSIVE
============================= */

@media(max-width:768px) {

    .new-aarival-item {
        margin-left: 20px;
        padding-right: 20px;
    }

    .new-aarival-item .fs-1 {
        font-size: 28px !important;
    }

    .new-aarival-img {
        margin-top: 40px;
    }

    .new-aarival-img .col-sm-6 {
        margin-bottom: 20px;
    }

    .mySwiper1 {
        width: 200px;
        height: 280px;
    }

}

/* =============================
   SMALL MOBILE
============================= */

@media(max-width:480px) {

    .new-aarival-item {
        text-align: left;
    }

    .new-aarival-item .fs-1 {
        font-size: 24px !important;
    }

    .new-aarival-item .fs-5 {
        font-size: 14px !important;
    }

    .mySwiper1 {
        width: 180px;
        height: 260px;
    }

}

.new-aarival-img .col-lg-6::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    border-radius: 12px;
}

/* Tanishq Assurance */
#Tanishq-Assurance {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

.Tanishq-Assurance-text {
    height: 70vh;
    border-top: 1px solid var(--color-grey5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--color-grey5);
}

.Tanishq-Assurance-icon {
    height: 70vh;
    border-top: 1px solid var(--color-grey5);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

/* Exchange Program  */

#Exchange-Program {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

/* Curated-For-You  */
#Curated-For-You {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

/* SECTION */

#GiftOfChoice {
    padding: 80px 0;
    background: var(--color-grey1);
}

/* TEXT */

.modern-text {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}

.sub-text {
    opacity: .8;
    font-size: 18px;
}

/* LEFT CARD */

.GiftOfChoice-left {
    background: #f7e9eb;
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* decorative line */

.GiftOfChoice-left::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(0deg, #a83235, #631517);
}

.GiftOfChoice-left::after {
    content: "";
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, #a83235, #631517);
}

/* gift icon */

.GiftOfChoice-img {
    position: absolute;
    left: 25px;
    bottom: 20px;
    z-index: 999;
}

.GiftOfChoice-img img {
    width: 100px;
}

/* RIGHT CARD */

.GiftOfChoice-right {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}

/* TITLE */

.gift-title {
    color: brown;
    font-size: 36px;
    font-weight: 700;
}

.gift-text {
    font-size: 18px;
    margin: 10px 0;
}

.gift-price {
    color: brown;
    font-weight: 700;
}

/* RIGHT CARD TEXT */

.exchange-logo {
    width: 150px;
    margin-bottom: 15px;
}

.exchange-title {
    color: brown;
    font-size: 28px;
    line-height: 35px;
    margin-bottom: 10px;
}

.exchange-text {
    font-size: 16px;
}

/* BUTTON */

.gift-btn {
    border: 1px solid brown;
    background: transparent;
    color: brown;
    padding: 10px 20px;
    border-radius: 30px;
    width: 160px;
    transition: .3s;
}

.gift-btn:hover {
    background: brown;
    color: white;
}

/* HOVER EFFECT */

.GiftOfChoice-left,
.GiftOfChoice-right {
    transition: .4s;
}

.GiftOfChoice-left:hover,
.GiftOfChoice-right:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* TABLET */

@media(max-width:992px) {

    .gift-title {
        font-size: 28px;
    }

    .exchange-title {
        font-size: 24px;
    }

    .GiftOfChoice-img {
        display: none;
    }

}

/* MOBILE */

@media(max-width:768px) {

    .GiftOfChoice-left,
    .GiftOfChoice-right {
        text-align: center;
        align-items: center;
    }

    .GiftOfChoice-left::before,
    .GiftOfChoice-left::after {
        display: none;
    }

    .GiftOfChoice-img {
        position: static;
        margin-top: 20px;
    }

}

/* Tanishq-Experience  */
#Tanishq-Experience {
    height: auto;
    width: 100%;
    background-color: var(--color-grey1);
}

/* footer  */
#footer {
    height: auto;
    width: 100%;
    background-color: var(--primary-color);
}

.close-btn {
    display: none;
}

/* Tablet Responsive  */
@media(max-width:992px) {
    .seach-area {
        display: none;

    }

    .header-content {
        position: fixed;
        top: 0;
        left: -300px;
        /* Hidden by default */
        width: 250px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        transition: 0.4s ease;
        z-index: 1000;
        padding-top: 60px;
    }

    /* open button  */
    .header-content.active {
        left: 0;
    }

    /* Close button */
    .close-btn {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        font-weight: bold;
    }

    /* Nav links */
    .nav-link {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: black;
    }

    .nav-link:hover {
        background: #f2f2f2;
    }

    .header-content-type {
        display: flex;
        flex-direction: column;
    }

    .search-header {
        display: block;
    }

    .new-aarival-img {
        bottom: -100px;
    }

    .Tanishq-Assurance-text {
        text-align: center;
    }

    .icon {
        display: flex;
        gap: 10px;

    }

    .icon a i {
        font-size: 25px;
    }

    .diamond {
        display: none;
    }

    .logo-tan {
        display: none;
    }

    .res-tab {
        display: block;
        display: flex;
    }

    .GiftOfChoice-left::before {
        left: 20px;
    }

    .GiftOfChoice-left::after {
        bottom: 25px;
    }

    .GiftOfChoice-img {
        left: 0px;
        bottom: 80px;
        height: 20px;
    }

    .gift {
        font-size: 18px !important;
        margin-left: 20px !important;
    }

}


/* footer  */
#footer {
    background: #5b0000;
    padding: 60px 0 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* center curve */
#footer::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--color-grey1);
    transform: rotate(45deg);
}

#footer::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--color-grey1);
    /* background-color: blue; */
    transform: rotate(45deg);
}

.footer-logo img {
    width: 140px;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-box a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-box a:hover {
    color: #d8b4a0;
}

.footer-text {
    font-size: 16px;
}

.qr-code {
    width: 200px;
}

.social-icons {
    display: flex;
    gap: 25px;
    font-size: 22px;
}

.social-icons i {
    cursor: pointer;
}

.copyright {
    font-size: 14px;
    opacity: 0.8;
}