/* Google Fonts: Playfair Display for Headings, Montserrat for Body */

.body-container {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Page Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #002349;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
}

.loader-title {
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    font-size: 3rem;
    margin-bottom: 20px;
}

.loader-bar-container {
    width: 200px;
    height: 3px;
    background-color: rgba(212, 175, 55, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar-progress {
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: #D4AF37;
    animation: loading 1.5s infinite ease-in-out;
}

@keyframes loading {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

/* Top Ads Bar */
.top-ads-bar {
    background-color: #F8F9FA;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.ads-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container .logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #002349;
    text-decoration: none;
    letter-spacing: 1px;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-item {
    margin: 0 15px;
}

.desktop-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.desktop-nav .nav-link:hover {
    color: #D4AF37;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background-color: #002349;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #002349;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: #002349;
}

.final-btn {
    background-color: #D4AF37;
    border-color: #D4AF37;
}

.final-btn:hover {
    background-color: transparent;
    color: #D4AF37;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 50px;
}

.hero-text-content {
    flex: 1;
}

.hero-image-content {
    flex: 1;
}

.hero-subtitle {
    font-size: 14px;
    color: #D4AF37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #002349;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
}

.hero-price-container {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
}

.sale-price {
    font-size: 28px;
    font-weight: 700;
    color: #002349;
}

.discount-label {
    background-color: #e6f0fa;
    color: #002349;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.image-box .product-main-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.image-box .product-main-img:hover {
    transform: scale(1.02);
}

/* Sections General */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #002349;
    margin-bottom: 20px;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* Details Section */
.details-section {
    padding: 80px 0;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.details-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.details-image,
.details-text {
    flex: 1;
}

.feature-img {
    width: 100%;
    border-radius: 8px;
}

/* Gallery Section */
.gallery-section {
    padding: 40px 0;
    background-color: #fcfcfc;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: flex;
    gap: 20px;
}

.gallery-item {
    flex: 1;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.benefit-title {
    font-size: 18px;
    color: #002349;
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-desc {
    font-size: 14px;
    color: #666;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: #002349;
    color: #fff;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    color: #D4AF37;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-question {
    padding: 20px 0;
    font-weight: 600;
    color: #002349;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height: 200px;
    margin-bottom: 20px;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 35, 73, 0.95), rgba(0, 35, 73, 0.95)), url('https://assets.angara.com/ring/sr2272s/6mm-aaa-blue-sapphire-yellow-gold-ring.jpg?width=1080&quality=85&auto=webp');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background-color: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #002349;
    margin-bottom: 15px;
}

.footer-heading {
    color: #333;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.footer-link {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #002349;
}

.footer-ad-disclaimer {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.disclaimer-text {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.disclaimer-important {
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: #bbb;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #002349;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 4000;
    max-width: 400px;
    border-left: 4px solid #D4AF37;
    display: none;
}

.cookie-title {
    font-size: 18px;
    color: #002349;
    margin-bottom: 10px;
}

.cookie-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn.accept {
    background-color: #002349;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #f0f0f0;
    color: #666;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.hamburger-icon .bar {
    width: 25px;
    height: 2px;
    background-color: #002349;
    margin: 5px 0;
    transition: 0.4s;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen */
    width: 75%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    /* High enough to be above header */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px 30px;
    display: block;
    /* Ensure it is part of the layout */
}

.mobile-nav-overlay.open {
    right: 0;
}

/* Optional: Add a dark backdrop when menu is open */
.mobile-nav-overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9000;
    display: none;
    backdrop-filter: blur(2px);
}

.mobile-nav-overlay-backdrop.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #002349;
}

.menu-close-icon {
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.menu-close-icon .close-bar {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    top: 50%;
}

.bar1 {
    transform: rotate(45deg);
}

.bar2 {
    transform: rotate(-45deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.mobile-cta {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-price-container {
        justify-content: center;
    }

    .details-grid {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        flex-direction: column;
    }

    .gallery-img {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .desktop-nav,
    .header-cta-container {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .section-title {
        font-size: 26px;
    }

    .testimonials-grid {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column {
        text-align: center;
    }
}