/*body {
    background-color: #fffdfa;
    opacity: 0.12;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    opacity: 0.15;
}*/

:root {
    --primary-color: #C5A880;
    --primary-light: #8B2E20;
    --primary-dark: #3D1108;
    --accent-color: #D4AF37;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FAF9F7;
    --shadow-sm: 0 2px 8px rgba(91, 26, 18, 0.08);
    --shadow-md: 0 4px 16px rgba(91, 26, 18, 0.12);
    --shadow-lg: 0 8px 32px rgba(91, 26, 18, 0.16);
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 65px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    background: transparent;
    backdrop-filter: blur(3px);
    transition: background 0.3s ease;
    z-index: 999;
}

    .navbar:hover {
        background: #1C0605 !important;
    }

.logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.menu {
    display: none;
    flex-direction: column;
    background: #C5A880;
    position: absolute;
    top: 80px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 10px;
}

    .menu a {
        color: white;
        text-decoration: none;
        font-size: 18px;
        padding: 10px 0;
        display: block;
    }

/* Merged .burger class */
.burger {
    display: block;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-logo {
    width: 300px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    animation: fadeInDown 1.5s ease;
}

.hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 8px;
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.right-section {
    display: flex;
    align-items: center;
    gap: 18px;
}

.user-icon {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.demo-btn {
    position: fixed;
    top: 30px;
    left: 30px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #8B1538 0%, #6B0F2A 100%);
    color: white;
    border: 2px solid #D4AF37;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    font-weight: 600;
    letter-spacing: 1px;
}

    .demo-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    }

/* Overlay Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 10, 30, 0.98) 0%, rgba(35, 12, 24, 0.98) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
    overflow-y: hidden;
    overflow-x: hidden;
}

    .menu-overlay::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
        pointer-events: none;
    }

    .menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Close Button */
.close-btn {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

    .close-btn:hover {
        transform: rotate(90deg) scale(1.1);
        background: rgba(212, 175, 55, 0.15);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }

    .close-btn::before,
    .close-btn::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 2px;
        background: #D4AF37;
    }

    .close-btn::before {
        transform: rotate(45deg);
    }

    .close-btn::after {
        transform: rotate(-45deg);
    }

/* Menu Header */
.menu-header {
    text-align: center;
    padding-top: 37px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
    position: relative;
    z-index: 1;

}

.menu-overlay.open .menu-header {
    opacity: 1;
    transform: translateY(0);
}

.company-name {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E5B8 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.company-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 300;
    font-style: italic;
}

/* Menu Container */
.menu-container {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-section {
    margin-bottom: 50px;
    opacity: 0;
    animation: slideIn 0.6s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-overlay.open .menu-section {
    animation: slideIn 0.6s ease forwards;
}

.menu-section:nth-child(1) {
    animation-delay: 0.3s;
}

.menu-section:nth-child(2) {
    animation-delay: 0.4s;
}

.menu-section:nth-child(3) {
    animation-delay: 0.5s;
}

.menu-section:nth-child(4) {
    animation-delay: 0.6s;
}

.menu-section:nth-child(5) {
    animation-delay: 0.7s;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .section-title::after {
        content: '';
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, #D4AF37, transparent);
    }

.submenu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding-left: 0;
    list-style: none;
    margin-top: 15px;
}

.submenu-item {
    list-style: none;
}

.submenu-link {
    display: block;
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: rgba(212, 175, 55, 0.02);
    border-radius: 4px;
}

    .submenu-link:hover {
        color: #F4E5B8;
        background: rgba(212, 175, 55, 0.1);
        border-left-color: #D4AF37;
        padding-left: 25px;
        transform: translateX(5px);
    }

.single-link {
    padding: 12px 15px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    background: rgba(212, 175, 55, 0.02);
    border-radius: 4px;
}

    .single-link:hover {
        color: #F4E5B8;
        background: rgba(212, 175, 55, 0.1);
        border-left-color: #D4AF37;
        padding-left: 25px;
    }

/* Responsive */
@media (max-width: 768px) {
    .menu-container {
        padding: 40px 20px;
    }

    .company-name {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .submenu-items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .close-btn {
        right: 20px;
        top: 20px;
    }

    header {
        padding: 15px 20px;
    }
}

@media (max-width: 600px) {
    .company-name {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .menu-header {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .menu-container {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 1rem;
    }

    .submenu-link,
    .single-link {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}

/* Footer Brand Section */
.footer-brand {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 0;
    position: relative;
}

    .footer-brand::before,
    .footer-brand::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    }

    .footer-brand::before {
        top: 0;
    }

    .footer-brand::after {
        bottom: 0;
    }

.footer-brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    background: linear-gradient(135deg, #D4AF37 0%, #F4E5B8 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.6;
    color: #D4AF37;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .menu-footer {
        margin-top: 60px;
        padding-top: 40px;
    }

    .footer-brand {
        padding: 30px 0;
        margin-bottom: 30px;
    }

    .footer-brand-name {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 600px) {
    .menu-footer {
        margin-top: 50px;
        padding-top: 30px;
    }

    .footer-brand {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .footer-brand-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}
/*-------------------------Footer css----------------------------*/
.ekaiva-footer {
    background-color: #5A0717;
    color: #ddd;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px 20px;
    position: relative;
    background-size: cover;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f8c471;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-section ul li {
        margin-bottom: 8px;
        display: flex; /* Added from .links section */
        align-items: center; /* Added from .links section */
        font-size: 18px; /* Merged */
    }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
        }

            .footer-section ul li a:hover,
            .footer-section.links a:hover {
                color: #f8c471;
            }

.footer-section.contact p {
    font-size: 18px;
    margin: 5px 0;
}

.footer-section.contact i,
.footer-section.links i {
    margin-right: 8px;
    color: #f8c471;
    font-size: 18px; /* Merged from .links */
}

.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        display: inline-block;
        color: #fff;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 50%;
        margin-right: 8px;
        transition: all 0.3s;
    }

        .social-icons a:hover {
            background: #fff;
            color: #111;
        }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}

    .footer-bottom span {
        color: #f8c471;
        font-weight: 600;
    }

.heading-component-main-container {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Cinzel', serif;
}

    .heading-component-main-container h1 {
        font-size: 42px;
        font-weight: 700;
        color: #5A0717;
        margin-bottom: 10px;
    }

    .heading-component-main-container h2 {
        font-size: 20px;
        font-weight: 400;
        color: #555;
    }

@media (max-width: 992px) {
    .heading-component-main-container h1 {
        font-size: 34px;
    }

    .heading-component-main-container h2 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .heading-component-main-container h1 {
        font-size: 28px;
    }

    .heading-component-main-container h2 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .heading-component-main-container h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .heading-component-main-container h2 {
        font-size: 15px;
        line-height: 1.4;
    }
}

.category-section {
    position: relative;
    overflow: hidden;
    padding: 10px 0 10px 0;
}

.category-scroll {
    display: flex;
    white-space: nowrap;
    overflow-x: hidden;
    scroll-behavior: auto;
}

    .category-scroll::-webkit-scrollbar {
        display: none;
    }

.category-card {
    flex: 0 0 auto;
    width: 220px;
    text-align: center;
    margin: 0 10px;
}

    .category-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .category-card:hover img {
        transform: scale(1.05);
    }

    .category-card h5 {
        margin-top: 10px;
        font-size: 16px;
        font-family: 'Cinzel', serif;
        color: #4b2e05;
    }

.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, transparent 60%, transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, transparent 60%, transparent);
}

@media (max-width: 768px) {
    .category-card {
        width: 150px;
    }

        .category-card img {
            height: 150px;
        }
}

/* Loading Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #d4af37;
    border-top: 6px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* HP Collections */
.hp-tq-collections-outer {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    padding-bottom: 45px;
}

.hp-tq-collections-inner-one {
    width: 50%
}

.hp-tq-collections-inner-two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 50%
}

.hp-tq-collections-heading {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgb(131,39,41);
    background: linear-gradient(360deg, rgba(131,39,41,1) 0%, rgba(131,39,41,0.95) 5%, rgba(131,39,41,0) 100%);
    border-radius: 10px;
    height: 120px;
}

.hp-tq-collections-heading-h2 {
    font-family: "Fraunces", serif;
    font-size: 30px;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: capitalize;
    bottom: 30px;
    position: absolute;
    display: flex;
    width: 100%;
    justify-content: center;
}

.m-six {
    margin: 6px;
}

.br-12 {
    border-radius: 12px;
}

.tqc-imgone {
    aspect-ratio: 0.84;
}

.tqc-imgtwo {
    aspect-ratio: 1.7;
}

@media (max-width:768px) {
    .hp-tq-collections-two-div {
        width: 100%;
    }

    .hp-tq-collections-heading-h2 {
        margin-left: 0;
        font-size: 14px;
        margin-bottom: 0;
        bottom: 10px;
    }

    .tqc-imgone {
        aspect-ratio: 1;
    }
}

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

    .title-container::before,
    .title-container::after {
        content: "";
        flex: 1;
        border-bottom: 1px solid #3d3d3d;
        margin: 0 20px;
    }

    .title-container h3 {
        color: #5A0717;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 24px;
    }

/* Royal Certified */
.container-fluid {
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 20px 0;
    width: 100%;
}

    .scroll-container::-webkit-scrollbar {
        display: none;
    }

/* Buttons */
.scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid maroon;
    background-color: white;
    color: maroon;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .scroll-btn:hover {
        background-color: maroon;
        color: white;
        transform: scale(1.05);
    }

/* Product Cards */
.product-card {
    flex: 0 0 calc((100% - 75px) / 4);
    text-align: center;
    background: #fff;
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-image {
    position: relative;
    overflow: hidden;
    width: 412px;
    height: 412px;
    margin: 0 auto;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.4s ease-in-out;
    }

        .product-image img.hover-img {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
        }

    .product-image:hover img.hover-img {
        opacity: 1;
    }

    .product-image:hover img.default-img {
        opacity: 0;
    }

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e48f76;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 3px;
}

/* Text & Button */
.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    color: #333;
}

.product-price {
    font-size: 14px;
    margin-top: 4px;
    color: #111;
}

    .product-price del {
        color: #999;
        margin-right: 5px;
    }

.add-to-cart {
    background-color: #e48f76;
    color: white;
    border: none;
    width: 100%;
    padding: 8px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    margin-top: 8px;
    transition: background-color 0.3s ease;
}

    .add-to-cart:hover {
        background-color: #c86e4e;
    }

.ekaiva-video-slider-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0;
}

.ekaiva-video-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    height: 600px;
}

.ekaiva-video-slide {
    position: absolute;
    width: 310px;
    height: 530px;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, visibility 0.6s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    background: #000;
}

    .ekaiva-video-slide video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .ekaiva-video-slide iframe {
        position: absolute;
        top: -16%;
        left: -16%;
        width: 132%;
        height: 132%;
        border: none;
        pointer-events: none;
    }

.ekaiva-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background: transparent;
    cursor: pointer;
}

.ekaiva-btn {
    background: #5A0717;
    color: white;
    border: 1px solid rgba(200, 162, 90, 0.4);
    font-size: 1.1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
}

    .ekaiva-btn:hover {
        background: #7A0C1E;
        color: white;
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 6px 20px rgba(90, 7, 23, 0.6);
    }

.ekaiva-prev-btn {
    left: 0px;
}

.ekaiva-next-btn {
    right: 0px;
}

@media (max-width: 768px) {
    .ekaiva-video-slider-wrapper {
        height: 420px;
    }

    .ekaiva-video-slide {
        width: 260px;
        height: 400px;
    }

    .ekaiva-prev-btn {
        left: 5px;
    }

    .ekaiva-next-btn {
        right: 5px;
    }
}

#shopByGender {
    background-color: #fff;
    padding: 60px 0;
}

    #shopByGender .heading-section h1 {
        color: #5A0717;
        font-weight: 600;
        font-size: 2.5rem;
    }

    #shopByGender .heading-section h3 {
        color: #56544e;
        font-size: 1.5rem;
        font-weight: 600;
    }

    #shopByGender .category-cards {
        text-align: center;
        background: transparent;
        border: none;
        box-shadow: none;
    }

        #shopByGender .category-cards img {
            width: 100%;
            height: 420px;
            border-radius: 12px;
            object-fit: cover;
            display: block;
        }

    #shopByGender .category-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #3a3a3a;
        margin-top: 15px;
        text-align: center;
    }

@media (min-width: 992px) {
    #shopByGender .col-lg-3 {
        flex: 0 0 28%;
        max-width: 28%;
    }
}

/* Merged Our Story Section */
.our-story-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0; /* Updated priority */
}

    .our-story-section .container {
        position: relative;
        z-index: 2;
    }

.story-subtitle {
    color: #b48c54;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Merged Story Title */
.story-title {
    font-size: 48px;
    font-weight: 700;
    color: #C5A880;
    line-height: 1.2;
}

/* Merged Story Text */
.story-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 10px;
    max-width: 600px;
}

.know-more-btn {
    border: 1px solid #C5A880;
    color: #C5A880;
    padding: 10px 25px;
    margin-top: 20px;
    transition: 0.3s;
}

    .know-more-btn:hover {
        background-color: #C5A880;
        color: #fff;
    }

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Merged Stats Section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px; /* Added from 2nd definition */
}

/* Merged Stat Box */
.stat-box {
    position: relative;
    width: 260px;
    height: 160px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #642d0f;
    font-weight: 600;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; /* Added from 2nd definition */
}

    .stat-box::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.6);
        z-index: 1;
    }

.stat-number,
.stat-text {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 700;
}

.stat-text {
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.box1 {
    background-color: #F9EED5;
}

.box2 {
    background-color: #F9EED5;
}

.box3 {
    background-color: #F9EED5;
}

.box4 {
    background-color: #F9EED5;
}

@media (max-width: 991px) {
    .stats-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .stat-box {
        width: 220px;
        height: 140px;
    }
}

.collection-section {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

.collection-subtitle {
    color: #b48c54;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
}

.collection-title {
    font-size: 36px;
    color: #C5A880;
    font-weight: 600;
    margin-bottom: 40px;
}

.collection-card {
    text-align: center;
    transition: transform 0.3s ease;
}

    .collection-card img {
        width: 100%;
        border-radius: 3px;
        transition: transform 0.4s ease;
    }

.collection-name {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
}

.collection-divider {
    background-color: #C5A880;
    height: 300px;
    margin-top: -253px;
}

.crafting-section {
    position: relative;
    background-image: url('https://assets.aboutamazon.com/dims4/default/2d4d868/2147483647/strip/true/crop/1283x722%2B159%2B0/resize/1240x698%21/quality/90/?url=https%3A%2F%2Famazon-blogs-brightspot.s3.amazonaws.com%2Fe9%2Fdb%2Ff14fc99340bcaccd2401793e0bdf%2Fheader.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    z-index: 1;
}

    .crafting-section .overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

.crafting-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.crafting-subtitle {
    color: #c7a76a;
    font-size: 15px;
    margin-bottom: 8px;
}

.crafting-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 15px;
}

.crafting-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.crafting-btn {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 24px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

    .crafting-btn:hover {
        background: #fff;
        color: #000;
    }

@media (max-width: 991px) {
    .collection-title {
        font-size: 28px;
    }

    .crafting-title {
        font-size: 28px;
    }

    .collection-divider {
        height: 120px;
        margin-top: -60px;
    }
}

@media (max-width: 575px) {
    .collection-title {
        font-size: 24px;
    }

    .collection-name {
        color: #5A0717;
        font-size: 16px;
    }

    .crafting-title {
        font-size: 24px;
    }

    .crafting-text {
        font-size: 14px;
    }

    .bg-decor {
        display: none;
    }

    .collection-divider {
        height: 80px;
        margin-top: -40px;
        visibility: hidden;
    }
}

/* Background Decor & Animation */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.bg-decor {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.decor1 {
    top: 8%;
    left: 3%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor2 {
    top: 20%;
    right: 8%;
    width: 200px;
    animation: floatUpDown 25s ease-in-out infinite;
}

.decor3 {
    top: 35%;
    left: 5%;
    width: 200px;
    animation: floatUpDown 25s ease-in-out infinite;
}

.decor4 {
    top: 50%;
    right: 5%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor5 {
    bottom: 8%;
    left: 5%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor6 {
    bottom: 40%;
    right: 25%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor7 {
    top: 10%;
    left: 60%;
    width: 200px;
    animation: floatUpDown 25s ease-in-out infinite;
}

.decor8 {
    top: 35%;
    right: 40%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor9 {
    bottom: 25%;
    left: 50%;
    width: 200px;
    animation: floatUpDown 25s ease-in-out infinite;
}

.decor10 {
    bottom: 10%;
    right: 5%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor11 {
    top: 8%;
    left: 15%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor12 {
    top: 8%;
    left: 15%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor13 {
    bottom: 0%;
    right: 0%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor14 {
    bottom: 2%;
    left: 10%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor15 {
    bottom: 0%;
    right: 20%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor16 {
    top: -5%;
    left: 35%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

.decor17 {
    bottom: 25%;
    left: 25%;
    width: 200px;
    animation: floatUpDown 25s ease-in-out infinite;
}

.decor18 {
    bottom: 0%;
    left: 0%;
    width: 200px;
    animation: floatLeftRight 25s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateY(-80px) rotate(8deg);
        opacity: 0.3;
    }
}

@keyframes floatLeftRight {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
        opacity: 0.15;
    }

    50% {
        transform: translateX(80px) rotate(-8deg);
        opacity: 0.3;
    }
}

/* Sections overlay handling */
.collection-sections,
.video-overlay,
.shop-by-gender-section {
    position: relative;
    overflow: hidden;
}

    .collection-sections .overlay,
    .video-overlay .overlay,
    .shop-by-gender-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        pointer-events: none; /* Applied from collection-sections */
    }

    .collection-sections .bg-decor,
    .video-overlay .bg-decor,
    .shop-by-gender-section .bg-decor {
        position: absolute;
        opacity: 0;
        z-index: 0;
    }

/* Main Banner Carousel */
#mainBannerCarousel {
    width: 100%;
    margin: 0 auto;
}

.carousel-inner {
    border-radius: 8px;
    overflow: hidden;
}

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    min-height: 300px;
}

    /* Merged Carousel Image styles */
    .carousel-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        aspect-ratio: 16/9;
        /* Removed 'height: 71vh; width: 100vw;' to prefer the banner aspect ratio */
    }

/* Mobile devices */
@media (max-width: 576px) {
    .carousel-item {
        min-height: auto;
    }

        .carousel-item img {
            max-height: auto;
        }
}

/* Tablets */
@media (min-width: 577px) and (max-width: 992px) {
    .carousel-item {
        min-height: auto;
    }

        .carousel-item img {
            max-height: auto;
        }
}

/* Large screens */
@media (min-width: 993px) {
    .carousel-item {
        min-height: auto;
    }

        .carousel-item img {
            max-height: auto;
        }
}

/* Carousel controls styling */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(1.5);
}

.ekaiva-gallery-section {
    padding: 60px 0;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

    .gallery-header h2 {
        font-size: 42px;
        color: #333;
        margin-bottom: 10px;
    }

        .gallery-header h2 span {
            color: #C5A880;
            font-weight: bold;
        }

.gallery-subtitle {
    font-size: 18px;
    color: #666;
}

.gallery-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.gallery-images {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 4/3;
}

    .gallery-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .gallery-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gallery-image:hover img {
        transform: scale(1.1);
    }

.gallery-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

    .gallery-text h3 {
        font-size: 32px;
        color: #333;
        margin-bottom: 20px;
        line-height: 1.4;
    }

        .gallery-text h3 span {
            color: #C5A880;
            font-weight: bold;
        }

    .gallery-text p {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
    }

.gallery-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #C5A880;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

    .gallery-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px #C5A880;
        /*background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 100%);*/
    }

@media (max-width: 768px) {
    .gallery-content {
        flex-direction: column;
    }

    .gallery-header h2 {
        font-size: 32px;
    }

    .gallery-text h3 {
        font-size: 24px;
    }

    .gallery-images {
        order: 2;
    }

    .gallery-text {
        order: 1;
    }
}

.user-menu-container {
    position: relative;
}

.user-icon-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-avatar {
    background: linear-gradient(135deg, #E1DBD6 0%, #E1DBD6 100%);
    color: #C5A880;
}

.user-dropdown-menu {
    position: absolute;
    top: 65px;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    z-index: 1000;
    display: none;
    animation: slideDown 0.3s ease;
}

    .user-dropdown-menu.show {
        display: block;
    }

.dropdown-header {
    padding: 16px;
    border-bottom: 1px solid white;
    background-color: #C5A880;
}

.dropdown-user-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.dropdown-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #C5A880;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
    background-color: white;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    color: white;
    font-size: 14px;
    margin-bottom: 4px;
    word-break: break-word;
}

.user-mobile {
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

.user-email {
    font-size: 11px;
    color: #bbb;
    word-break: break-word;
}

.dropdown-items {
    padding: 8px 0;
}


.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
    border: none;
}

@media (max-width: 576px) {
    .user-dropdown-menu {
        min-width: 240px;
        right: -10px;
    }

    .user-avatar,
    .dropdown-avatar {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .user-name {
        font-size: 13px;
    }

    .user-mobile,
    .user-email {
        font-size: 11px;
    }
}

/* ==========================================
   DARK BURGUNDY THEME GENERAL OVERRIDES FOR HOME & CARDS
   ========================================== */
section {
    background-color: var(--bg-white) !important;
    color: var(--text-charcoal) !important;
}

.bento-item {
    background-color: var(--light-beige) !important;
    border: 1px solid rgba(200, 162, 90, 0.2) !important;
}

.bento-item h1, .bento-item h2, .bento-item h3, .bento-item h4, .bento-item p {
    color: var(--text-charcoal) !important;
}

.bento-item .text-muted {
    color: rgba(247, 244, 239, 0.6) !important;
}

/* Override alternate light sections */
section[style*="background-color: var(--light-beige)"], 
section.bg-light,
.bg-light {
    background-color: var(--light-beige) !important;
}

section[style*="background-color: var(--bg-white)"],
section.bg-white,
.bg-white {
    background-color: var(--bg-white) !important;
}

/* Override text-muted and secondary text colors globally to be visible in dark theme */
.text-muted, .text-black-50 {
    color: rgba(247, 244, 239, 0.6) !important;
}

.text-dark {
    color: var(--text-charcoal) !important;
}
