@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors */
    --color-background: #1E1E1E;
    --color-text: #ffff;
    --color-text-light: #8F8F8F;
    --color-text-medium: #6a6a6a;
    --color-primary: #051e52;
    --color-secondary: #FFA500;
    --color-surface: #232326;
    --color-divider: #D4E0E7;
    --color-surface-light: #28282B;


    /* Fonts */
    --font-family-secondary: 'Poppins', sans-serif;
    --font-family: 'Source Serif 4', serif;
    --font-size: 16px;

    /* Dimensions */
    --side-nav-width: 78px;
    --top-nav-height: 90px;
    --top-nav-tablet-height: 90px;
    --top-nav-mobile-height: 90px;

    /* Borders */
    --border-radius: 6px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    /* font-family: var(--font-family); */
    color: black;
    font-size: var(--font-size);
}

input,
select,
button,
textarea {
    font-family: var(--font-family-secondary);
    font-size: var(--font-size);
    border-radius: 5px;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #D4E0E7;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #a4a3a3;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #8F8F8F;
}

.container {
    width: 98%;
    margin: 0 auto;
    position: relative;
    /* overflow-y: auto;*/
    margin-bottom: 35px;
}


#homeMenuDropdown .categoriesseaction a {
    margin-top: 5px;
    color: #051E52;
    font-family: var(--font-family-secondary);
    border-radius: 10px;
}

.wish-card {
    margin: 5px 0px;
    float: left;
    height: 285px;
    width: 250px
}

.product-img {
    object-fit: cover;
    height: 100%;
}

.app_name {
    color: #051e52;
    font-size: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.icon {
    height: 31px;
    width: 31px;
    margin-right: 212px;
}




.carthide {
    display: none;
}

/* 
    -------------------------------------
    ---------- Navigation Bar -----------
    -------------------------------------
*/
.nav-container {
    height: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    background-color: #051E52;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    /* padding: 0 25px; */
    z-index: 100;

}

.desktop-navigation {
    height: var(--top-nav-height);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.left-menu {
    width: 85%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.menu-btn {
    background-color: transparent;
    border: 0;
    color: black;
    font-size: 22px;
}

.menu-btn:hover {
    cursor: pointer;
}

.menu-btns {
    background-color: transparent;
    border: 0;
    color: black;
    font-size: 22px;
}

.menu-btns:hover {
    cursor: pointer;
}

.appoint-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.appoint-btn p {
    font-size: 16px;
    margin: 0;
    font-family: var(--font-family-secondary);
}


.icon-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* gap: 120px; */
}

#searchbar {
    width: 16%;
}

#searchbar input {
    height: 30px;
    border: none;

}


.videogallery-carousel {
    position: relative;
    overflow-x: scroll !important;
    width: 100%;
    margin: 2px;
    background-color: #ededed;
}

.carousel-track {
    margin: 2px 1px;
    display: flex;
    gap: 10px;
    /* width: max-content;  */
    animation: scrollCarousel 30s linear infinite;
}

.video-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 8px 12px;
    cursor: pointer;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}



.video-player-gallery {
    flex: 0 0 auto;
    width: 300px;
    height: 600px;
    object-fit: cover;
    border-radius: 5px;
}


.videogallery-carousel::-webkit-scrollbar {
    height: 6px;
}

.videogallery-carousel::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 4px;
}

/* Keyframes for auto-scroll  */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


.jewelryshowcase {
    height: auto;
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 15px 0;
}

.jewelryshowcase_items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #ededed;
    border-radius: 8px;
    padding-bottom: 15px;
    transition: transform 0.3s ease;
}

.jewelryshowcase_items:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.jewelryshowcase_image {
    position: relative;
    width: 100%;
}

.jewelryshowcase_items a {
    width: 100%;
    display: block;
    margin-top: 10px;
    /* padding: 0 10px; */
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.jewelryshowcase_image div:nth-child(1) {
    /* border-radius: 8px; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 300px;
    padding: 24px 16px 40px;
    /* background-color: #ededed; */
}

.jewelryshowcase_header {
    font-family: var(--font-family-secondary);
    font-weight: 500;
    color: #051E52;
    text-align: center;
    margin-top: 10px;
}

.jewelryshowcase_image div:nth-child(2) {
    width: 80px;
    height: 80px;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 2;
}

.jewelryshowcase_image div:nth-child(1) img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.jewelryshowcase_image div:nth-child(2) img {
    width: 80px;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: 1px 1px 13px 1px #d1c5c5;
}

.jewelryshowcase_image div:nth-child(2) img:hover {
    transform: scale(1.1);
    cursor: pointer;
}


#searchbar input::placeholder {
    padding-left: 2px;
    font-size: 11px;
    ;
    color: #a8a6a6;
    /* Light gray text */
    opacity: 1;
    /* Ensures full visibility */
}

#searchbar input:focus {
    outline: none;
    /* Removes the default browser outline */
    border: none;
    /* Removes any border */
    box-shadow: none;
    /* Removes any shadow if applied */
}


.iconwidth {
    width: 55px;
}

.cart-icon {
    background-color: transparent;
    color: black;
    border: none;
    font-size: 18px;
    text-align: center;
    border-radius: 50px;
    height: 34px;
    /* width: 60px; */
    transition: 0.2s;
}

.cart-icon a {
    color: rgb(255, 255, 255);
}

.cart-icon:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.wishlist-icon {
    color: #FF869C;
    /* border: 1px solid #293541; */
}

.nav-border {
    border: 1px solid var(--color-surface-light);
}

.home-menu-dropdown {
    margin: 0;
    padding: 3px 15px;
    overflow: hidden;
    transition: max-height 0.5s linear;
    position: fixed;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    z-index: 999;
    background-color: #051E52
}

.home-menu-dropdown ul {
    margin: 0;
    /* padding: 0; */
    list-style-type: none;
    margin-top: 30px;
}

.home-menu-dropdown ul li {
    margin: 0;
    /* padding: 0; */
    /* margin-top: 12px; */
}

.home-menu-dropdown ul li a {
    font-family: var(--font-family-secondary);
    color: #051E52;
    font-size: 16px;
}

.home-menu-dropdown ul li:hover {
    cursor: pointer;
    transform: scale(1.05);
}

.home-menu-dropdown-closebtn {
    background-color: #051E52;
    color: var(--color-background);
    border: 1px solid var(--color-primary);
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
    height: 34px;
    width: 34px;
    transition: 0.2s;
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    transition: 0.2s;
    margin-left: 10px;
}

.home-menu-dropdown-closebtn:hover {
    cursor: pointer;
    transform: scale(1.05);
}


/*  -------------------- 
Responsive------------------- */


/* Tablet Navigation */
.tablet-nav-elements {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Mobile Navigation */
.mobile-nav-elements {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mobile-left-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
}

.filter-menu {
    color: #3B6E85;
    background-color: #D4E0E7;
    border: 1px solid #D4E0E7;
}

.mobile-product-stock {
    background-color: #9E0AA7;
    border: 1px solid#5E1463;
    border-radius: 6px;
    color: #ffffff;
    padding: 6px 15px;
    display: flex;
    align-items: center;
}

.mobile-product-stock h3 {
    font-size: 14px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

.mobile-right-info {
    display: flex;
    flex-direction: row;
}

.wish-icon {
    border: 1px solid #FF869C;
    color: #FF869C;
}

.search-icon {
    border: 1px solid #3E8807;
    color: #3E8807;
}

.add-icon {
    border: 1px solid #FFA500;
    background-color: #FFA500;
    color: #ffffff;
}

.mobile-product-dropdown {
    background-color: #D4E0E7;
    border: 1px solid #3B6E85;
    border-radius: 6px;
    height: 40px;
    color: #8f8f8f;
    font-size: 16px;
    padding: 0px 20px;
    font-weight: 400;
    outline: none;
}

.mobile-sort-dropdown {
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #D8E2E7;
    height: 40px;
    color: #3B6E85;
    font-size: 16px;
    padding: 0px 10px;
    height: 45px;
    font-weight: 400;
    outline: none;
}

.mobile-appoint-btn {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    z-index: 2;
    top: 0;
    border: 0;
    background-color: #FDFCFC;
    width: 100%;
}

/* 
    -------------------------------------
    ---------- Page Container -----------
    -------------------------------------
*/
.page-container {
    margin-top: var(--top-nav-height);
    background-color: #f0f2f7;
}

.aboutuspage {
    display: flex;
    flex-direction: row;
    column-gap: 40px;
}

.logo-container {
    width: 15%;
}

/* Responsive */
@media only screen and (max-width:1000px) {
    .nav-container {
        /* padding: 0 42px;
        top: 0px; */
        height: 50px;
        display: flex;
        justify-content: end;
        align-items: center;
        background-color: #051E52;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        /* padding: 0 25px; */
        z-index: 100;
    }

    .carousel-track {
        margin: 2px 1px;
        display: flex;
        gap: 10px;
        transition: transform 0.4s ease;

        /* animation: scrollCarousel 30s linear infinite; */
    }

    .appoint-btn {
        display: none;
    }

    .page-container {
        margin-top: var(--top-nav-tablet-height);
    }

    .mobile-appoint-btn {
        display: flex;
        position: fixed;
        z-index: 2;
    }

    .menu-btn {
        display: flex;
    }



    .videogallery-carousel::-webkit-scrollbar {
        height: 6px;
    }

    .videogallery-carousel::-webkit-scrollbar-thumb {
        background: #aaa;
        border-radius: 4px;
    }



}

@media only screen and (max-width: 820px) {
    .logo {
        margin-left: 0px;
    }

    .logo img {
        width: 100%;
        /* height:68px; */
    }

    .aboutuspage {
        display: flex;
        flex-direction: row;
        column-gap: 40px;
    }

    .logo-container {
        width: 15%;
    }

    .carousel-track {
        margin: 2px 1px;
        display: flex;
        gap: 10px;
        /* animation: scrollCarousel 30s linear infinite; */
    }



    .videogallery-carousel::-webkit-scrollbar {
        height: 6px;
    }

    .videogallery-carousel::-webkit-scrollbar-thumb {
        background: #aaa;
        border-radius: 4px;
    }
}

@media only screen and (max-width: 600px) {
    .aboutuspage {
        display: flex;
        flex-direction: column;
        /* column-gap: 73px; */
        gap: 47px;
        align-items: center;
    }






    .videogallery-carousel {

        overflow-x: scroll !important;
        display: flex;
        /* overflow: hidden; */
        width: 100%;
        background-color: #ededed;
        padding: 10px 0;
    }

    .carousel-track {
        display: flex;
        gap: 10px;
        white-space: nowrap;
        animation: scrollCarousel 30s linear infinite;
    }

    .video-player-gallery {
        flex: 0 0 auto;
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 5px;
    }


    .videogallery-carousel::-webkit-scrollbar {
        height: 6px;
    }

    .videogallery-carousel::-webkit-scrollbar-thumb {
        background: #aaa;
        border-radius: 4px;
    }

    /* KEYFRAMES – Smooth infinite scroll */
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .logo-container {
        width: 50%;
    }

    .left-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: start;
        gap: 10px;
    }

    .jewelryshowcase {
        height: auto;
        width: 246px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 15px 0;
    }

    /* .categoriesseaction {
    flex-direction: column;
} */



    .logoimg {
        width: 141px !important;
        height: 81px !important;
        margin-left: -20px;
    }
}

@media only screen and (max-width:500px) {
    .nav-container {
        height: var(--top-nav-mobile-height);
        padding: 0 16px;
        justify-content: center;
        gap: 40px;



    }




    #homeMenuDropdown .categoriesseaction .dropdown-content li a,
    #homeMenuDropdown .categoriesseaction .dropdown-content1 li a,
    #homeMenuDropdown .categoriesseaction .dropdown-content2 li a {
        color: #051E52;
        font-size: 11px;
    }

    .page-container {
        margin-top: var(--top-nav-mobile-height);
        margin-left: 0;
    }

    .appoint-btn,
    .notification-btn {
        display: none;
    }

    .icon-menu {
        gap: 9px;
        margin-left: auto;
        /* margin-right: auto;
    }

    .cart-icon {
        width: 30px;
        height: 30px;
    }

    .logo {
        width: 30vw;
        /* margin-left: 40px; */
    }

    .logo img {
        width: 100%;
        /* display: block; */
        position: absolute;
        /* top: 50%; */
        left: 50%;
        transform: translate(-50%, -50%);
        margin-left: auto;
        margin-right: auto;

    }

    .home-menu-dropdown {
        width: 100%;
    }

    .jewelryshowcase_image div:nth-child(2) {
        position: absolute;
        left: 50%;
        bottom: 4rem;
        transform: translateX(-50%);
        z-index: 2;
    }

    .jewelryshowcase_image div:nth-child(1) {
        width: 360px;
    }

    .jewelryshowcase_image div:nth-child(1) img {
        width: 300px !important;
    }



}
