@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: Poppins;
    margin: 0;
    font-size: 16px;
    background-color: #FEFAE0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

:root {
    --border-color: #fff5;
    --w-image: 500px;
    --calculate: calc(3 / 2);
}


/* slider */
.carousel {
    margin-top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel .list {
    height: 100%;
    position: relative;
}

.carousel .list::before {
    position: absolute;
    width: var(--w-image);
    height: 100%;
    content: '';
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    z-index: 10;
    pointer-events: none;
}

.carousel .list::after {
    position: absolute;
    top: 50px;
    left: 50px;
    content: '';
    background-color: #052D25;
    width: 400px;
    height: 300px;
    z-index: 10;
    pointer-events: none;
    border-radius: 20px 50px 110px 230px;
    filter: blur(150px);
    opacity: .6;
}

.carousel .list .item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item .image {
    width: var(--w-image);
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(100% - calc(var(--w-image) * var(--calculate)));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    font-weight: 500;
}

.carousel .list .item .image img {
    width: 90%;
    margin-bottom: 20px;
    filter: drop-shadow(0 150px 50px #9e0c0c55);
}

.carousel .list .item .image figcaption {
    font-family: 'Aboreto';
    font-weight: bold;
    font-size: 1.3em;
    text-align: right;
    margin-bottom: 30px;
    width: 70%;
}

.carousel .list .item .main-content {
    height: 100%;
    display: grid;
    grid-template-columns: calc(100% - calc(var(--w-image) * var(--calculate)));
}

.carousel .list .item .main-content .content {
    padding: 150px 20px 20px 80px;
}

.carousel .list .item .main-content .content h2 {
    font-size: 3em;
    font-family: 'Aboreto';
}

.carousel .list .item .main-content .content .FoundIn {
    font-family: 'Aboreto';
    font-size: 1.3em;
    margin: 20px 0;
}

.carousel .list .item .main-content .content .button {
    background-color: #052D25;
    color: #fff;
    padding: 10px 30px;
    font-family: Poppins;
    font-size: large;
    font-weight: 500;
    border-radius: 20px;
    border: none;
    cursor: pointer;

}

.arrows {
    position: absolute;
    bottom: 20px;
    width: calc(100% - calc(var(--w-image) * var(--calculate)));
    display: grid;
    grid-template-columns: repeat(2, 50px);
    grid-template-rows: 50px;
    justify-content: end;
    gap: 10px;
}

.arrows button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: monospace;
    font-size: large;
    font-weight: bold;
    line-height: 0;
    box-shadow: 0 10px 40px #5555;
    cursor: pointer;
    transition: 0.5s;
}

.arrows button:hover {
    background-color: #eee5;
}

.carousel .list .item {
    display: none;
}

.carousel .list .item.active,
.carousel .list .item.other_1,
.carousel .list .item.other_2 {
    display: block;
}

.carousel .list .item.active {
    z-index: 2;
}

.carousel .list .item.other_1,
.carousel .list .item.other_2 {
    pointer-events: none;
}

.carousel .list .item.active .main-content {
    animation: showContent 1s ease-in-out 1 forwards;
}

@keyframes showContent {
    from {
        clip-path: circle(0% at 70% 50%);
    }

    to {
        clip-path: circle(100% at 70% 50%);
    }
}

.next .item.other_1 {
    z-index: 1;
}

.next .item .image img,
.next .item .image figcaption {
    animation: effectNext .5s ease-in-out 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(calc(var(--transform-from)));
    }

    to {
        transform: translateX(calc(var(--transform-from) - var(--w-image)));
    }
}

.next .item.active .image {
    --transform-from: var(--w-image);
}

.next .item.other_1 .image {
    z-index: 3;
    --transform-from: 0px;
    overflow: hidden;
}

.next .item.other_2 .image {
    z-index: 3;
    --transform-from: calc(var(--w-image) * 2);
}

.arrows {
    z-index: 10;
}

/* prev */
.prev .list .item .image img,
.prev .list .item .image figcaption {
    animation: effectPrev 0.5s ease-in-out 1 forwards;
}

@keyframes effectPrev {
    from {
        transform: translateX(calc(var(--transform-from)));
    }

    to {
        transform: translateX(calc(var(--transform-from) + var(--w-image)));
    }
}

.prev .list .item.active .image {
    --transform-from: calc(var(--w-image) * -1);
    overflow: hidden;
}

.prev .list .item.other_1 .image {
    --transform-from: 0px;
    z-index: 3;
}

.prev .list .item.other_2 .image {
    z-index: 3;
    --transform-from: var(--w-image);
}

.prev .list .item.other_2 .main-content {
    opacity: 0;
}

@media screen and (max-width: 1023px) {
    :root {
        --calculate: 1;
        --w-image: 400px;
    }

    .carousel .list .item .main-content .content h2 {
        font-size: 3em;
    }
}

@media screen and (max-width: 767px) {
    .carousel .list .item .image {
        width: 100%;
        left: 0;
        justify-content: center;
    }

    .carousel .list .item .image figcaption {
        color: #fff;
        width: 100%;
        text-align: center;
    }

    .carousel .list .item .main-content .content {
        display: none;
    }

    .arrows {
        left: 50%;
        justify-content: center;
    }
}

/* most selling index page slider */
.most-selling-container {
    width: 80%;
    margin: 20px auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.most-selling-container h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #052D25;
}

.most-selling-container span {
    color: #DDA15E;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.most-selling-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: max-content;
}

.gemstone-card {
    width: 250px;
    margin: 10px;
    padding: 15px;
    background-color: #cab890;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    flex-shrink: 0;
}

.gemstone-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.gemstone-card h3 {
    margin: 10px 0;
    color: #333;
}

.gemstone-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.gemstone-card .price {
    font-weight: bold;
    color: #000807;
    margin-bottom: 10px;
}

.buy-button {
    padding: 8px 15px;
    background-color: #052D25;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.buy-button:hover {
    background-color: #DDA15E;
}

.nav-button {
    background-color: #052D25;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-button.left {
    left: 10px;
}

.nav-button.right {
    right: 10px;
}


/* 2nd section */
.gem-highlight-section {
    background-color: #FEFAE0;
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.highlight-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

/* Image Section */
.highlight-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.highlight-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.highlight-image img:hover {
    transform: scale(1.05);
}

/* Information Section */
.highlight-info {
    flex: 1;
    color: #000;
}

.highlight-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #052D25;
}

.highlight-info h2 span {
    color: #DDA15E;
}

.highlight-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
}

/* Call to Action Button */
.gem-highlight-section .button {
    background-color: #052D25;
    color: #FEFAE0;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.gem-highlight-section .button:hover {
    background-color: #DDA15E;
    color: #052D25;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .highlight-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .highlight-info {
        margin-top: 20px;
    }
}

/* about us */
.about-us-section {
    background-color: #FEFAE0;
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

/* Information Section */
.about-info {
    flex: 1;
    color: #0000;
}

.about-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #000;
}

.about-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000;
}

/* Hidden Text Section */
.hidden-text {
    display: none;
    margin-top: 20px;
    color: #000;
}

.hidden-text p {
    margin-bottom: 10px;
}

.learn-more-button {
    color: #FEFAE0;
    background-color: #052D25;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

.learn-more-button:hover {
    background-color: #DDA15E;
    color: #052D25;
    transform: scale(1.05);
}

/* Image Section */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .about-info {
        margin-top: 20px;
    }
}

/* Subscription section */
.subscribe {
    background: #052D25;
    padding: 4rem 0;
    margin-top: 4rem;
}

.subscribe :is(h2, p) {
    color: #cab890;
    text-transform: capitalize;
    text-align: center;
}

.subscribe h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

.subscribe form {
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    margin-top: 10px;
}

.subscribe form>* {
    flex: 1 1 15rem;
}

.subscribe input {
    font-weight: 500;
    font-size: 1rem;
    text-transform: lowercase;
    color: #000;
    width: 100%;
    border: 1px solid var(#cab890);
    outline: 0;
    padding: 12px;
    border-radius: 5px;
}

.subscribe input::placeholder {
    text-transform: uppercase;
}

.subscribe .page-btn {
    max-width: max-content;
    padding: 10px;
    font-size: 18px;
    font-weight: 500;
    margin: 10px auto;
    color: #052D25;
    background-color: #DDA15E;
    border: none;
    border-radius: 5px;
}

.subscribe .page-btn:hover {
    background-color: #052D25;
    color: #DDA15E;
}

/* footer */
.footer {
    background-color: #cab890;
    color: #000;
    padding-top: 40px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    flex: 1 1 250px;
    margin: 20px;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #052D25;
}

.footer-section p,
.footer-section ul,
.footer-section form {
    color: #000;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 10px 0;
}

.footer-section ul li a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #052D25;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #052D25;
    color: #cab890;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #DDA15E;
    color: #052D25;
}

.footer-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-section .social-icons a {
    color: #000;
    font-size: 18px;
    transition: color 0.3s;
}

.footer-section .social-icons a:hover {
    color: #052D25;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 12px;
    background-color: #cab890;
    border-top: 1px solid #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }
}

/* Most selling slider */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Product Card */
.slider-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #052D25;
}

.slider-container h2 span {
    color: #DDA15E;
}

.product-card {
    min-width: 300px;
    margin: 0 10px;
    background-color: #cab890;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
}

.product-card h3 {
    margin: 10px 0;
    color: #000;
}

.product-card p {
    color: #000;
    font-size: 14px;
}

.product-card .price {
    color: #000;
    font-size: 20px;

}

.product-card button {
    padding: 10px 20px;
    background-color: #052D25;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.product-card button:hover {
    background-color: #DDA15E;
    color: #052D25;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #052D25;
    border: none;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.nav-btn:hover {
    background-color: #DDA15E;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-card {
        min-width: 250px;
    }

    .nav-btn {
        padding: 8px 16px;
    }
}

/* nav start */
.navbar {
    background: linear-gradient(to right, #062d25, #02201a);
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.container-nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    margin-bottom: 0;
    margin-top: 0;
}


.nav-links {
    display: flex;
    gap: 20px;
}
.nav-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #DDA15E;
}
.nav-link svg {
    margin-right: 5px;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #02201a;
    margin: 4px 0;
    transition: all 0.3s;
}

.fa-shopping-cart {
    font-size: 1.5em;
    color: #ddd;
}


/* live chat */
.chat-widget {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    max-width: 100%;
    display: none;
    flex-direction: column;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background-color: #FEFAE0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    transform: translateY(20px);
    opacity: 0;
}

.chat-widget.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    padding: 10px;
    background-color: #052D25;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
}

.chat-header i {
    margin-right: 10px;
}

.chat-body {
    display: flex;
    flex-direction: column;
    height: 330px;
    border-top: 1px solid #ddd;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9;
}

.chat-messages p {
    margin: 5px 0;
}

.chat-input-container {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-input-container input {
    flex: 1;
    padding: 8px;
    border: none;
    outline: none;
}

.chat-input-container button {
    background-color: #052D25;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px;
    background-color: #052D25;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: bounce 1s infinite;
    transition: background-color 0.3s;
}

.chat-toggle-button:hover {
    background-color: #052D25;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}





/*
 */
 /*  */
 /*  */
