:root {
    --primary-brown: #5d4037;
    --dark-brown: #3e2723;
    --light-beige: #f5f5f5;
    --accent-gold: #c0a16b;
    --white: #ffffff;
    --black: #1a1a1a;
    --text-muted: #666666;
    --header-height: 80px;
    --transition-speed: 0.3s;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.site-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-brown);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-brand-name {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInText 1.5s ease-in-out forwards;
}

@keyframes fadeInText {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-bar-container {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar-progress {
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    transform-origin: left;
    animation: loaderProgress 2s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% {
        transform: scaleX(0);
    }

    50% {
        transform: scaleX(0.5);
    }

    100% {
        transform: scaleX(1);
    }
}

/* Ad Bar */
.top-ad-bar {
    background-color: #fce4ec;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #f8bbd0;
}

.ad-text-top {
    margin: 0;
    font-size: 0.85rem;
    color: #e91e63;
    font-weight: 600;
}

/* Header Styling */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.header-container {
    padding: 0 5%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: inline-block;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    text-decoration: none;
    letter-spacing: 1px;
}

.desktop-nav {
    display: block;
}

.nav-links-list {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: block;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.header-cta-wrapper {
    display: block;
}

.header-btn-cta {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
    font-size: 0.9rem;
}

.header-btn-cta:hover {
    background-color: var(--primary-brown);
    transform: translateY(-2px);
}

.hamburger-menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.bar-line {
    width: 30px;
    height: 3px;
    background-color: var(--dark-brown);
    border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mobile-nav-overlay.active {
    right: 0;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    padding: 40px 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

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

.mobile-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-brown);
    font-weight: 700;
}

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

.close-line {
    width: 100%;
    height: 3px;
    background-color: var(--dark-brown);
    position: absolute;
    top: 50%;
    left: 0;
}

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

.c2 {
    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: 1.2rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
}

.mobile-nav-cta-item {
    margin-top: 40px;
}

.mobile-cta-btn {
    display: block;
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 18px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 80px 5%;
    background-color: var(--light-beige);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-tagline {
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--dark-brown);
    margin: 0 0 25px 0;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-cta-box {
    display: flex;
    align-items: center;
    gap: 25px;
}

.hero-primary-btn {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.hero-primary-btn:hover {
    background-color: var(--dark-brown);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(93, 64, 55, 0.3);
}

.price-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-frame {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    position: relative;
    z-index: 1;
}

.hero-img-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    z-index: -1;
}

.hero-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

/* Common Section Styling */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin: 0 0 20px 0;
}

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

.heading-underline {
    width: 80px;
    height: 4px;
    background-color: var(--accent-gold);
    margin-bottom: 30px;
}

.section-para {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* About Section */
.about-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-side {
    flex: 1;
}

.about-img-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.about-text-side {
    flex: 1;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-beige);
}

.gallery-grid {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

/* Features/Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-brown);
}

.feature-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--dark-brown);
    color: var(--white);
}

.testimonials-section .section-heading {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-gold);
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
}

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

.faq-header {
    width: 100%;
    padding: 20px 0;
    text-align: left;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-brown);
    transition: color 0.3s;
}

.faq-header:hover {
    color: var(--accent-gold);
}

.faq-icon {
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 20px 20px 0;
    display: none;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer Styling */
.site-footer {
    background-color: #111;
    color: var(--white);
    padding: 80px 0 20px 0;
}

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

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.footer-info-text {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

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

.footer-link:hover {
    color: var(--white);
}

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

.ad-disclaimer {
    font-size: 0.8rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}

.copyright-text {
    font-size: 0.85rem;
    color: #666;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transform: translateY(200%);
    transition: transform 0.6s ease-out;
    max-width: 450px;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark-brown);
}

.cookie-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.cookie-btn {
    flex: 1;
    padding: 12px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.accept-btn {
    background-color: var(--dark-brown);
    color: var(--white);
}

.reject-btn {
    background-color: #eee;
    color: var(--black);
}

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

.modal-box {
    background-color: var(--white);
    width: 100%;
    max-width: 600px;
    padding: 50px;
    border-radius: 12px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 30px;
}

.modal-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {

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

    .hamburger-menu-icon {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-cta-box {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .heading-underline {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-primary-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .modal-box {
        padding: 30px 20px;
    }
}