:root {
    --primary-beige: #f8f4f0;
    --secondary-rose: #f5e9e9;
    --accent-lavender: #e6e1f5;
    --text-dark: #3a3a3a;
    --text-light: #777;
    --gold: #d4af37;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--primary-beige);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
}

.text-accent {
    color: var(--gold);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.skincare-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

/* Add this to your existing CSS */
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 100% !important;
}

/* Optional: Add a subtle animation for the active state */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)),
        url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    background-color: var(--gold);
    border: none;
    padding: 17px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #c19b2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--gold);
    bottom: -15px;
    left: 0;
}

/* About Section */
.about-content {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.highlight-box {
    background-color: var(--secondary-rose);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--gold);
}

/* Product Cards */
.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Why Choose Us */
.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.star-rating {
    color: var(--gold);
    margin-bottom: 15px;
}

.client-name {
    font-weight: 600;
    margin-top: 20px;
    color: var(--text-dark);
}

/* Beauty Tips */
.tip-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 525px;
}

.form-control {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

/* Footer */

:root {
    --gold: #d4af37;
    --dark-bg: #1b1b1b;
}

/* Footer Base */
.lux-footer {
    background: linear-gradient(135deg, #161616, #242424);
    color: #bbb;
    padding: 90px 0 35px;
    position: relative;
    overflow: hidden;
}

/* Decorative Glow */
.lux-footer::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
    border-radius: 50%;
}

.lux-footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, .5), transparent);
}

/* Titles */
.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: "";
    width: 45px;
    height: 2px;
    background: var(--gold);
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: width .4s ease;
}

.footer-title:hover::after {
    width: 70px;
}

/* Text */
.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    position: relative;
    transition: all .3s ease;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--gold);
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 6px;
    backdrop-filter: blur(8px);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 18px;
    color: #fff;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--gold), #b8962e);
    border: none;
    color: #fff;
    padding: 0 26px;
    border-radius: 30px;
    cursor: pointer;
    transition: .35s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(212, 175, 55, .45);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    position: relative;
    overflow: hidden;
    transition: .35s ease;
    text-decoration: none;
}

.footer-social a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), #b8962e);
    opacity: 0;
    transition: .35s;
}

.footer-social a i,
.footer-social a svg {
    z-index: 1;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-social a:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, .5);
}

.footer-social a:hover::before {
    opacity: 1;
}

/* Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 50px 0 25px;
}

/* Bottom */
.footer-bottom p {
    font-size: .9rem;
    color: #999;
}

.heart {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
    .lux-footer {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a::before {
        display: none;
    }
}

/* Scroll to Top Button */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#scrollToTop.active {
    opacity: 1;
    visibility: visible;
}

#scrollToTop:hover {
    background-color: #c19b2e;
    transform: translateY(-5px);
}

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

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

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

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

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

.follow-us h5 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    font-size: 18px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.05);
    color: #fff;
}

/* Brand Gradients */
.social-icons .instagram:hover {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.social-icons .facebook:hover {
    background: #1877f2;
}

.social-icons .tiktok:hover {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.social-icons .pinterest:hover {
    background: #e60023;
}

.social-icons .youtube:hover {
    background: #ff0000;
}

/* Soft glow effect */
.social-icons a:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.h4,
h4 {
    font-size: 1.2rem;
}

.product-category-filter {
    margin-bottom: 2rem;
}

.category-btn {
    border: 1px solid #ddd;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin: 0 0.5rem 0.5rem 0;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #d3b038;
}

.sort-options {
    padding: 1rem;
    border: 1px solid #d2b138;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.product-card-large {
    transition: transform 0.3s;
}

.product-card-large:hover {
    transform: translateY(-5px);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #d4b038;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 2;
}

.pagination {
    justify-content: center;
    margin-top: 3rem;
}

.page-link {
    color: #d4b038;
    border: 1px solid #ddd;
}

.page-link:hover {
    background: #d4b038;
    color: white;
    border-color: #d4b038;
}

.page-item.active .page-link {
    background: #d4b038;
    border-color: #d4b038;
}

/* Additional styles for Blog Detail page */
.blog-detail-section {
    padding-top: 100px;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.blog-detail-title {
    color: #333;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.2;
}

.blog-detail-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.blog-detail-container {
    margin-bottom: 50px;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Featured Image */
.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Article Content */
.article-content {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.article-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin: 40px 0 20px;
    font-size: 1.8rem;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 20px 30px;
    color: #444;
    line-height: 1.7;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

.tip-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.tip-box-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-caption {
    text-align: center;
    color: #777;
    font-size: 0.9rem;
    margin-top: -30px;
    margin-bottom: 30px;
    font-style: italic;
}

/* Article Footer */
.article-footer {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.article-tag {
    background: #f8f9fa;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--gold);
    color: white;
}

.share-section {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.share-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    color: #666;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook:hover {
    background: #3b5998;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn.pinterest:hover {
    background: #e60023;
    color: white;
}

.share-btn.email:hover {
    background: var(--gold);
    color: white;
}

/* Author Bio */
.author-bio {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-info h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.author-title {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.author-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Comments Section */
.comments-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.comment-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.form-control-comment {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-comment:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
    outline: none;
}

textarea.form-control-comment {
    min-height: 150px;
    resize: vertical;
}

/* Related Articles */
.related-articles {
    margin-bottom: 50px;
}

.related-article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.related-article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.related-article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-article-content {
    padding: 20px;
}

.related-article-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.related-article-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Blog Sidebar (Same as blog page) */
.blog-sidebar {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-search {
    margin-bottom: 30px;
}

.sidebar-search-input {
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    padding: 12px 20px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
    outline: none;
}

.categories-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
}

.categories-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.categories-list .category-count {
    background: #f8f9fa;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.recent-posts-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-content h6 {
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recent-post-content span {
    color: #888;
    font-size: 0.85rem;
}

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.tag {
    background: #f8f9fa;
    color: #666;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--gold);
    color: white;
}

.sidebar-newsletter {
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.sidebar-newsletter h5 {
    color: var(--gold);
    margin-bottom: 10px;
}

.sidebar-newsletter p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sidebar-newsletter-input {
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #333;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 300px;
}

.nav-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.nav-btn.prev {
    text-align: left;
}

.nav-btn.next {
    text-align: right;
    flex-direction: row-reverse;
}

.nav-btn-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.nav-btn-title {
    font-weight: 500;
    line-height: 1.3;
}

/* Blog Back to Top */
.blog-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.blog-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.blog-back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Table of Contents */
.toc-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: sticky;
    top: 120px;
}

.toc-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

.toc-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.toc-list li:before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.toc-list a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail-section {
        padding-top: 80px;
    }

    .blog-detail-title {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 25px;
    }

    .featured-image {
        height: 300px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .article-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .nav-btn {
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 120px;
    }
}

.read-more-btn {
    color: var(--gold);
    text-decoration: none;
}

/* Additional styles for cart page */
.cart-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--gold);
    color: white;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px;
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--gold);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #e9ecef;
    margin-bottom: 20px;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}

.continue-shopping:hover {
    color: var(--secondary-color);
}

.remove-item {
    color: #dc3545;
    background: none;
    border: none;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: #bd2130;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .cart-item-img {
        width: 80px;
        height: 80px;
    }

    .cart-summary {
        position: static;
        margin-top: 30px;
    }
}

.coupon-input .form-control {
    margin-bottom: 0px !important;
}

/* Additional styles for product detail page */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

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

.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-thumbnail:hover,
.product-thumbnail.active {
    opacity: 1;
    border-color: var(--gold);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-price {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
}

.review-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.product-options {
    margin-bottom: 25px;
}

.option-label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-btn {
    padding: 8px 20px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-btn:hover,
.option-btn.active {
    border-color: #d4b038;
    background: rgba(168, 123, 118, 0.05);
    color: #d4b038;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background: var(--gold);
    color: white;
}

.quantity-input {
    width: 70px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 1;
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: #dc3545;
    color: white;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555;
}

.meta-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

/* Tabs Section */
.product-tabs {
    margin: 60px 0;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.tab-link {
    padding: 15px 30px;
    background: none;
    border: none;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-link:hover,
.tab-link.active {
    color: #d4b038;
    border-bottom: 2px solid #d4b038;
}

.tab-link.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px 3px 0 0;
}

.tab-content {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ingredients-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.ingredient-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ingredient-icon {
    color: var(--accent-color);
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-body {
    color: #555;
    line-height: 1.6;
}

/* Related Products */
.related-products {
    margin-top: 80px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

/* Zoom Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.zoom-modal-content {
    max-width: 90%;
    max-height: 90%;
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .wishlist-btn {
        width: 100%;
        border-radius: 8px;
    }

    .tab-nav {
        flex-direction: column;
    }

    .tab-link {
        border-bottom: 1px solid #e9ecef;
    }

    .main-product-image {
        height: 350px;
    }
}

/* Additional styles for cart page (kept for consistency) */
.cart-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cart-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: var(--gold);
    color: white;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px;
}

.cart-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.summary-total {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--gold);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 5rem;
    color: #e9ecef;
    margin-bottom: 20px;
}

.continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
}

.continue-shopping:hover {
    color: var(--secondary-color);
}

.remove-item {
    color: #dc3545;
    background: none;
    border: none;
    transition: color 0.2s ease;
}

.remove-item:hover {
    color: #bd2130;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* NEW CHECKOUT PAGE STYLES */
.checkout-section {
    padding-top: 100px;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.checkout-title {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 30px;
}

.checkout-form-container {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.form-section-title {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-family: 'Playfair Display', serif;
}

.form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-control-checkout {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control-checkout:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

.checkout-divider {
    border-top: 2px dashed #e9ecef;
    margin: 30px 0;
}

.payment-method-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-method-card.selected {
    border-color: var(--gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.payment-icon {
    font-size: 1.8rem;
    color: #666;
    margin-right: 15px;
}

.payment-method-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.payment-method-desc {
    font-size: 0.9rem;
    color: #777;
}

.checkout-order-summary {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-name {
    font-weight: 500;
}

.order-item-qty {
    color: #777;
    font-size: 0.9rem;
}

.order-item-price {
    font-weight: 500;
}

.secure-checkout-badge {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.terms-checkbox {
    margin-top: 20px;
    font-size: 0.9rem;
}

.btn-checkout {
    background: var(--gold);
    color: white;
    font-weight: 600;
    padding: 14px;
    border-radius: 10px;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
   
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(212, 175, 55, 0.3);
}

.btn-checkout:active {
    transform: translateY(0);
}

.back-to-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
}

.back-to-cart:hover {
    color: var(--secondary-color);
}

.checkout-step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;    margin-left: 20px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #777;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.step-circle.active {
    background-color: var(--gold);
    color: white;
}

.step-circle.completed {
    background-color: #28a745;
    color: white;
}

.step-text {
    font-weight: 500;
    color: #777;
}

.step-text.active {
    color: var(--gold);
    font-weight: 600;
}

.step-connector {
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: 40px;

}

.h1,
h1 {
    font-size: 2rem;
}

.checkout-success {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cart-item-img {
        width: 80px;
        height: 80px;
    }

    .cart-summary,
    .checkout-order-summary {
        position: static;
        margin-top: 30px;
    }

    .checkout-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .step-circle {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .step-connector {
        display: none;
    }
}

.fa-chevron-down:before {
    content: "";
}

/* Additional styles for FAQ page */
.faq-section {
    padding-top: 100px;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.faq-title {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-search-container {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search-input {
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    padding: 15px 50px 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-search-input:focus {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
}

.faq-search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-search-button:hover {
    background: var(--secondary-color);
}

.faq-category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.faq-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-category-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.faq-category-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.faq-category-count {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.faq-category-desc {
    color: #666;
    margin-bottom: 20px;
}

.faq-accordion-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.faq-accordion-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.faq-accordion-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion-header {
    background-color: white;
    padding: 0;
    border: none;
}

.faq-accordion-button {
    background-color: white;
    color: #333;
    font-weight: 500;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-accordion-button:not(.collapsed) {
    background-color: rgba(212, 175, 55, 0.05);
    color: var(--gold);
    box-shadow: none;
}

.faq-accordion-button:focus {
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.25);
}

.faq-accordion-button:after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    background-image: none;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.faq-accordion-button:not(.collapsed):after {
    transform: rotate(180deg);
}

.faq-accordion-body {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.6;
}

.faq-accordion-body p:last-child {
    margin-bottom: 0;
}

.faq-help-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 12px;
    padding: 50px;
    margin: 60px 0;
    text-align: center;
}

.faq-help-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.faq-help-desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
}

.faq-contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.faq-contact-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-contact-card:hover {
    transform: translateY(-5px);
}

.faq-contact-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.faq-contact-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.faq-contact-detail {
    color: #666;
    margin-bottom: 5px;
}

.faq-contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.faq-contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.faq-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.faq-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.faq-back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.no-results {
    text-align: center;
    padding: 40px;
    color: #666;
}

.faq-highlight {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .faq-section {
        padding-top: 80px;
    }

    .faq-accordion-container {
        padding: 20px;
    }

    .faq-help-section {
        padding: 30px 20px;
    }

    .faq-contact-options {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact-card {
        width: 100%;
        max-width: 300px;
    }
}

/* Additional styles for Privacy Policy page */
.privacy-section {
    padding-top: 100px;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.privacy-title {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.privacy-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

.privacy-container {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.privacy-last-updated {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-last-updated i {
    font-size: 1.2rem;
}

.privacy-toc {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid var(--gold);
}

.privacy-toc-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.privacy-toc-list {
    list-style-type: none;
    padding-left: 0;
}

.privacy-toc-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.privacy-toc-list li:before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-toc-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-toc-list a:hover {
    color: var(--gold);
}

.privacy-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.4rem !important;
}

.privacy-section-title:first-of-type {
    margin-top: 0;
}

.privacy-content {
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-list {
    margin: 15px 0 15px 20px;
}

.privacy-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-note {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.privacy-note-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.privacy-table th,
.privacy-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.privacy-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.privacy-table tr:hover {
    background-color: #f8f9fa;
}

.privacy-contact-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.privacy-contact-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.privacy-contact-detail {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-contact-detail i {
    color: var(--gold);
    width: 20px;
}

.privacy-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.privacy-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.privacy-back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.privacy-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.privacy-print-btn:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .privacy-section {
        padding-top: 80px;
    }

    .privacy-container {
        padding: 25px 20px;
    }

    .privacy-table {
        display: block;
        overflow-x: auto;
    }

    .privacy-title {
        font-size: 1.8rem;
    }
}

@media print {
    .privacy-container {
        box-shadow: none;
        padding: 0;
    }

    .privacy-back-to-top,
    .privacy-print-btn,
    .navbar,
    footer,
    #scrollToTop {
        display: none !important;
    }

    .privacy-section {
        padding-top: 0;
        background: white;
    }
}

/* Additional styles for Terms & Conditions page */
.terms-section {
    padding-top: 100px;
    background-color: #f9f9f9;
    min-height: 100vh;
}

.terms-title {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.terms-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
}

.terms-container {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
}

.terms-last-updated {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-last-updated i {
    font-size: 1.2rem;
}

.terms-toc {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid var(--gold);
}

.terms-toc-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.terms-toc-list {
    list-style-type: none;
    padding-left: 0;
}

.terms-toc-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.terms-toc-list li:before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-toc-list a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-toc-list a:hover {
    color: var(--gold);
}

.terms-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--gold);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;font-size: 1.4rem !important;
}

.terms-section-title:first-of-type {
    margin-top: 0;
}

.terms-content {
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

.terms-content p {
    margin-bottom: 15px;
}

.terms-list {
    margin: 15px 0 15px 20px;
}

.terms-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.terms-note {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.terms-note-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-important {
    background: rgba(220, 53, 69, 0.05);
    border-left: 3px solid #dc3545;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.terms-important-title {
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.terms-table th,
.terms-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.terms-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.terms-table tr:hover {
    background-color: #f8f9fa;
}

.terms-contact-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.terms-contact-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.terms-contact-detail {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terms-contact-detail i {
    color: var(--gold);
    width: 20px;
}

.terms-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.terms-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.terms-back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.terms-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.terms-print-btn:hover {
    background: var(--secondary-color);
}

.terms-agreement-check {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
}

.acceptance-section {
    background: rgba(40, 167, 69, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

@media (max-width: 768px) {
    .terms-section {
        padding-top: 80px;
    }

    .terms-container {
        padding: 25px 20px;
    }

    .terms-table {
        display: block;
        overflow-x: auto;
    }

    .terms-title {
        font-size: 1.8rem;
    }
}

@media print {
    .terms-container {
        box-shadow: none;
        padding: 0;
    }

    .terms-back-to-top,
    .terms-print-btn,
    .terms-agreement-check,
    .navbar,
    footer,
    #scrollToTop {
        display: none !important;
    }

    .terms-section {
        padding-top: 0;
        background: white;
    }
}
        /* Additional styles for Shipping & Returns page */
        .shipping-section {
            padding-top: 100px;
            background-color: #f9f9f9;
            min-height: 100vh;
        }
        
        .shipping-title {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .shipping-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .shipping-container {
            background: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 50px;
        }
        
        .shipping-last-updated {
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .shipping-last-updated i {
            font-size: 1.2rem;
        }
        
        .shipping-toc {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 40px;
            border-left: 4px solid var(--gold);
        }
        
        .shipping-toc-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .shipping-toc-list {
            list-style-type: none;
            padding-left: 0;
        }
        
        .shipping-toc-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        
        .shipping-toc-list li:before {
            content: "•";
            color: var(--gold);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .shipping-toc-list a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .shipping-toc-list a:hover {
            color: var(--gold);
        }
        
        .shipping-section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--gold);
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;font-size: 1.4px !important;
        }
        
        .shipping-section-title:first-of-type {
            margin-top: 0;
        }
        
        .shipping-content {
            color: #444;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .shipping-content p {
            margin-bottom: 15px;
        }
        
        .shipping-list {
            margin: 15px 0 15px 20px;
        }
        
        .shipping-list li {
            margin-bottom: 10px;
            line-height: 1.6;
        }
        
        .shipping-note {
            background: rgba(212, 175, 55, 0.05);
            border-left: 3px solid var(--gold);
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .shipping-note-title {
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .shipping-important {
            background: rgba(220, 53, 69, 0.05);
            border-left: 3px solid #dc3545;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .shipping-important-title {
            font-weight: 600;
            color: #dc3545;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .shipping-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .shipping-table th, .shipping-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
        }
        
        .shipping-table th {
            background-color: #f8f9fa;
            font-weight: 600;
            color: #333;
        }
        
        .shipping-table tr:hover {
            background-color: #f8f9fa;
        }
        
        .shipping-contact-info {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-top: 30px;
        }
        
        .shipping-contact-title {
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .shipping-contact-detail {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .shipping-contact-detail i {
            color: var(--gold);
            width: 20px;
        }
        
        .shipping-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gold);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }
        
        .shipping-back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .shipping-back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .shipping-print-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .shipping-print-btn:hover {
            background: var(--secondary-color);
        }
        
        .shipping-timeline {
            position: relative;
            margin: 30px 0;
            padding-left: 20px;
        }
        
        .shipping-timeline:before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--gold);
            opacity: 0.3;
        }
        
        .shipping-timeline-item {
            position: relative;
            margin-bottom: 30px;
        }
        
        .shipping-timeline-item:last-child {
            margin-bottom: 0;
        }
        
        .shipping-timeline-dot {
            position: absolute;
            left: -20px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--gold);
        }
        
        .shipping-timeline-content {
            padding-left: 20px;
        }
        
        .shipping-timeline-title {
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .shipping-timeline-desc {
            color: #666;
            font-size: 0.95rem;
        }
        
        .shipping-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(40, 167, 69, 0.1);
            color: #28a745;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-left: 10px;
        }
        
        .shipping-badge.warning {
            background: rgba(255, 193, 7, 0.1);
            color: #ffc107;
        }
        
        .shipping-info-box {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .shipping-info-icon {
            font-size: 1.5rem;
            color: var(--gold);
            margin-top: 3px;
        }
        
        .shipping-info-content h5 {
            color: var(--gold);
            margin-bottom: 8px;
        }
        
        .shipping-step-box {
            background: white;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: all 0.3s ease;
        }
        
        .shipping-step-box:hover {
            border-color: var(--gold);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .shipping-step-number {
            background: var(--gold);
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }
        
        .shipping-step-content h5 {
            margin-bottom: 5px;
            color: #333;
        }
        
        .shipping-step-content p {
            color: #666;
            margin-bottom: 0;
            font-size: 0.95rem;
        }
        
        @media (max-width: 768px) {
            .shipping-section {
                padding-top: 80px;
            }
            
            .shipping-container {
                padding: 25px 20px;
            }
            
            .shipping-table {
                display: block;
                overflow-x: auto;
            }
            
            .shipping-title {
                font-size: 1.8rem;
            }
            
            .shipping-info-box {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        @media print {
            .shipping-container {
                box-shadow: none;
                padding: 0;
            }
            
            .shipping-back-to-top,
            .shipping-print-btn,
            .navbar,
            footer,
            #scrollToTop {
                display: none !important;
            }
            
            .shipping-section {
                padding-top: 0;
                background: white;
            }
        }
        /* Additional styles for Blog page */
        .blog-section {
            padding-top: 100px;
            background-color: #f9f9f9;
            min-height: 100vh;
        }
        
        .blog-title {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .blog-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .blog-container {
            margin-bottom: 50px;
        }
        
        /* Featured Post */
        .featured-post {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 50px;
        }
        
        .featured-post-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .featured-post:hover .featured-post-img {
            transform: scale(1.03);
        }
        
        .featured-post-content {
            padding: 40px;
        }
        
        .featured-badge {
            display: inline-block;
            background: var(--gold);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .featured-post-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            font-size: 1.4rem;
            line-height: 1.2;
        }
        
        .featured-post-excerpt {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Blog Posts Grid */
        .blog-post-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .blog-post-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-post-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-post-card:hover .blog-post-img {
            transform: scale(1.05);
        }
        
        .blog-post-content {
            padding: 25px;
        }
        
        .post-category {
            display: inline-block;
            background: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            margin-bottom: 12px;
        }
        
        .blog-post-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            font-size: 1.3rem;
            line-height: 1.3;
        }
        
        .blog-post-excerpt {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.5;
            font-size: 0.95rem;
        }
        
        .post-meta {
            display: flex;
            align-items: center;
            color: #888;
            font-size: 0.85rem;
            margin-bottom: 15px;
        }
        
        .post-meta i {
            margin-right: 5px;
        }
        
        .post-meta span {
            margin-right: 15px;
        }
        
        .read-more-btn {
            color: var(--gold);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            color: var(--secondary-color);
            gap: 10px;
        }
        
        /* Blog Sidebar */
        .blog-sidebar {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .sidebar-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .sidebar-search {
            margin-bottom: 30px;
        }
        
        .sidebar-search-input {
            border: 1px solid #e1e1e1;
            border-radius: 50px;
            padding: 12px 20px;
            width: 100%;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .sidebar-search-input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
            outline: none;
        }
        
        .categories-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 30px;
        }
        
        .categories-list li {
            margin-bottom: 10px;
        }
        
        .categories-list a {
            color: #666;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .categories-list a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
        
        .categories-list .category-count {
            background: #f8f9fa;
            color: #666;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
        }
        
        .recent-posts-list {
            list-style-type: none;
            padding-left: 0;
            margin-bottom: 30px;
        }
        
        .recent-post-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .recent-post-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .recent-post-content h6 {
            font-weight: 500;
            margin-bottom: 5px;
            line-height: 1.3;
        }
        
        .recent-post-content span {
            color: #888;
            font-size: 0.85rem;
        }
        
        .sidebar-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 30px;
        }
        
        .tag {
            background: #f8f9fa;
            color: #666;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .tag:hover {
            background: var(--gold);
            color: white;
        }
        
        .sidebar-newsletter {
            background: rgba(212, 175, 55, 0.05);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }
        
        .sidebar-newsletter h5 {
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .sidebar-newsletter p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .sidebar-newsletter-input {
            border: 1px solid #e1e1e1;
            border-radius: 50px;
            padding: 10px 15px;
            width: 100%;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }
        
        /* Pagination */
        .blog-pagination {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .page-link {
            border: none;
            color: #666;
            background: white;
            margin: 0 5px;
            border-radius: 8px;
            padding: 8px 15px;
            transition: all 0.3s ease;
        }
        
        .page-link:hover {
            background: var(--gold);
            color: white;
        }
        
        .page-link.active {
            background: var(--gold);
            color: white;
        }
        
        /* Blog Back to Top */
        .blog-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--gold);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }
        
        .blog-back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .blog-back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .blog-section {
                padding-top: 80px;
            }
            
            .featured-post-img {
                height: 250px;
            }
            
            .featured-post-content {
                padding: 25px;
            }
            
            .featured-post-title {
                font-size: 1.5rem;
            }
            
            .blog-sidebar {
                margin-top: 30px;
            }
            
            .blog-title {
                font-size: 1.8rem;
            }
        }
        
        @media (min-width: 992px) {
            .sticky-sidebar {
                position: sticky;
                top: 120px;
            }
        }
