 
/* Blog Detail Page Styles */
.blog-details-section {
    padding: 60px 0;
    background: #fff;
}

.blog-detail-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Featured Image */
.blog-featured-image {
    width: 100%;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Meta Info */
.blog-meta {
    padding: 30px 40px 0;
}

.blog-date {
    display: inline-block;
    color: #999;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.blog-date i {
    margin-right: 8px;
    font-size: 16px;
    vertical-align: middle;
    color: #e1a994;
}

/* Blog Content */
.blog-content {
    padding: 20px 40px 30px;
    line-height: 1.8;
    color: #444;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    font-family: 'Playfair Display', serif;
    margin: 30px 0 15px;
    color: #222;
}

.blog-content h1 { font-size: 36px; }
.blog-content h2 { font-size: 32px; }
.blog-content h3 { font-size: 28px; }
.blog-content h4 { font-size: 24px; }
.blog-content h5 { font-size: 20px; }
.blog-content h6 { font-size: 18px; }

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
    margin: 15px 0 15px 25px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-content a {
    color: #e1a994;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-content a:hover {
    color: #222;
    text-decoration: underline;
}

.blog-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #e1a994;
    padding: 20px 30px;
    margin: 25px 0;
    font-style: italic;
    color: #666;
    font-size: 18px;
}

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

.blog-content th,
.blog-content td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.blog-content th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Share Section */
.blog-share {
    padding: 20px 40px 30px;
    border-top: 1px solid #eee;
}

.blog-share h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

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

.share-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s;
    text-decoration: none;
}

.share-links li a:hover {
    transform: translateY(-3px);
}

.share-facebook {
    background: #3b5998;
    color: #fff;
}

.share-twitter {
    background: #1DA1F2;
    color: #fff;
}

.share-whatsapp {
    background: #25D366;
    color: #fff;
}

/* Blog Navigation */
.blog-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 30px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.blog-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.blog-navigation a:hover {
    color: #e1a994;
}

.nav-prev i,
.nav-next i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-meta {
        padding: 25px 30px 0;
    }
    
    .blog-content {
        padding: 15px 30px 25px;
    }
    
    .blog-share {
        padding: 15px 30px 25px;
    }
    
    .blog-navigation {
        padding: 15px 30px 25px;
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .blog-details-section {
        padding: 30px 0;
    }
    
    .blog-meta {
        padding: 20px 20px 0;
    }
    
    .blog-content {
        padding: 10px 20px 20px;
        font-size: 14px;
    }
    
    .blog-content h1 { font-size: 28px; }
    .blog-content h2 { font-size: 24px; }
    .blog-content h3 { font-size: 22px; }
    .blog-content h4 { font-size: 20px; }
    
    .blog-share {
        padding: 15px 20px 20px;
    }
    
    .blog-navigation {
        padding: 15px 20px 20px;
    }
    
    .share-links li a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-8 {
    width: 66.666%;
}

.col-md-10 {
    width: 83.333%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .col-lg-8 {
        width: 100%;
    }
    .col-md-10 {
        width: 100%;
    }
}


/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
    background: #fff;
}

/* Contact Info Card */
.contact-info-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e1a994;
    font-family: 'Playfair Display', serif;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: #e1a994;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: #fff;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-content p {
    color: #666;
    line-height: 1.5;
}

.info-content a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s;
}

.info-content a:hover {
    color: #e1a994;
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e1a994;
    font-family: 'Playfair Display', serif;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e1a994;
    outline: none;
    box-shadow: 0 0 0 3px rgba(225, 169, 148, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #e1a994;
}

.submit-btn i {
    font-size: 18px;
}

/* Map Container */
.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Dynamic Content */
.contact-dynamic-content {
    margin-top: 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 15px;
    line-height: 1.8;
    color: #444;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-card,
    .contact-form-card {
        padding: 30px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    .info-item {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .info-content h4 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
}

.col-lg-5 {
    width: 41.666%;
}

.col-lg-6 {
    width: 50%;
}

.col-lg-7 {
    width: 58.333%;
}

.col-lg-12 {
    width: 100%;
}

@media (max-width: 992px) {
    .col-md-6 {
        width: 50%;
    }
    .col-md-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .col-sm-12 {
        width: 100%;
    }
}


/* Page Content Styles */
.page-content-section {
    padding: 60px 0;
    background: #fff;
}

.page-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

/* Headings */
.page-content-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #222;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1a994;
}

.page-content-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #222;
    margin: 25px 0 15px;
}

.page-content-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #222;
    margin: 20px 0 15px;
}

.page-content-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #222;
    margin: 15px 0 10px;
}

.page-content-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #222;
    margin: 15px 0 10px;
}

.page-content-card h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #222;
    margin: 15px 0 10px;
}

/* Paragraphs */
.page-content-card p {
    margin-bottom: 20px;
}

/* Lists */
.page-content-card ul,
.page-content-card ol {
    margin: 15px 0 15px 25px;
}

.page-content-card li {
    margin-bottom: 8px;
}

/* Links */
.page-content-card a {
    color: #e1a994;
    text-decoration: none;
    transition: all 0.3s;
}

.page-content-card a:hover {
    color: #222;
    text-decoration: underline;
}

/* Images */
.page-content-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* Tables */
.page-content-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-content-card th,
.page-content-card td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.page-content-card th {
    background: #f5f5f5;
    font-weight: 600;
}

/* Blockquotes */
.page-content-card blockquote {
    background: #f9f9f9;
    border-left: 4px solid #e1a994;
    padding: 20px 25px;
    margin: 20px 0;
    font-style: italic;
    color: #666;
}

/* Buttons inside content */
.page-content-card .btn,
.page-content-card button {
    display: inline-block;
    padding: 10px 25px;
    background: #e1a994;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.page-content-card .btn:hover,
.page-content-card button:hover {
    background: #222;
}

/* Responsive */
@media (max-width: 992px) {
    .page-content-card {
        padding: 30px;
    }
    
    .page-content-card h1 { font-size: 32px; }
    .page-content-card h2 { font-size: 26px; }
    .page-content-card h3 { font-size: 22px; }
}

@media (max-width: 768px) {
    .page-content-section {
        padding: 30px 0;
    }
    
    .page-content-card {
        padding: 20px;
        font-size: 14px;
    }
    
    .page-content-card h1 { font-size: 28px; }
    .page-content-card h2 { font-size: 24px; }
    .page-content-card h3 { font-size: 20px; }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-10 {
    width: 83.333%;
}

.col-md-12 {
    width: 100%;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .col-lg-10 {
        width: 100%;
    }
}



/* Page Title Styles */
.page-title {
    position: relative;
    padding: 120px 0 80px;
    background: #FEF3EF;
    text-align: center;
    overflow: hidden;
    margin-bottom:  50px;
}
.page-title .pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}
.page-title .auto-container {
    position: relative;
    z-index: 2;
}
.page-title .content-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #FBB8A3;
    margin-bottom: 15px;
}
.bread-crumb {
    display: inline-flex;
    background: rgba(255,255,255,0.9);
    padding: 10px 25px;
    border-radius: 30px;
    list-style: none;
    gap: 5px;
}
.bread-crumb li {
    display: inline-block;
    font-size: 14px;
    color: #666;
}
.bread-crumb li a {
    color: #666;
    transition: all 0.3s;
}
.bread-crumb li a:hover {
    color: #e1a994;
}
.bread-crumb li:not(:last-child):after {
    content: '/';
    margin-left: 8px;
    color: #ccc;
}
.bread-crumb li i {
    margin-right: 5px;
    font-size: 14px;
}

/* Sidebar Styles */
.sidebar-widget {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}
.widget-title h3 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e1a994;
}
.categories-list {
    list-style: none;
    padding: 0;
}
.categories-list li {
    margin: 5px 0;
}
.categories-list .subcategories {
    padding-left: 15px;
    margin-top: 5px;
    border-left: 2px solid #f0f0f0;
}
.categories-list a {
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
    color: #333;
    font-size: 14px;
}
.categories-list a:hover {
    background-color: #e1a994;
    color: #fff;
    padding-left: 15px;
}
.categories-list a.active-path {
    color: #e1a994;
    font-weight: bold;
    background-color: #fff9e6;
    border-left: 3px solid #e1a994;
}

/* Filter Styles */
.filter-group {
    margin-bottom: 20px;
}
.filter-group h4 {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}
.filter-group input,
.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}
.filter-btn {
    width: 100%;
    padding: 10px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover {
    background: #e1a994;
}
.clear-filters {
    display: block;
    text-align: center;
    color: #e1a994;
    font-size: 14px;
    margin-top: 10px;
}

/* Products Header */
.products-header {
    margin-bottom: 30px;
}
.products-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}
.products-header p {
    color: #666;
}

/* Subcategories Grid */
.subcategories-grid {
    margin-bottom: 40px;
}
.subcategories-grid h3 {
    font-size: 18px;
    margin-bottom: 20px;
}
.subcategory-card {
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.subcategory-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.subcategory-card h4 {
    padding: 10px;
    font-size: 14px;
    margin: 0;
}
.subcategory-card .explore-link {
    display: block;
    padding: 8px;
    background: #e1a994;
    color: #fff;
    font-size: 12px;
    transition: all 0.3s;
}
.subcategory-card:hover .explore-link {
    background: #222;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.product-price {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e1a994;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}
.product-info {
    padding: 15px;
    text-align: center;
}
.product-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}
.product-info p {
    font-size: 12px;
    color: #999;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 15px;
}
.no-products i {
    font-size: 60px;
    color: #ccc;
}
.no-products h3 {
    margin: 20px 0 10px;
}
.no-products .theme-btn-one {
    display: inline-block;
    margin-top: 20px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
}
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-5 { width: 41.666%; }
.col-lg-7 { width: 58.333%; }
.col-lg-8 { width: 66.666%; }
.col-lg-9 { width: 75%; }
.col-lg-12 { width: 100%; }

@media (max-width: 992px) {
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-12 { width: 100%; }
}

@media (max-width: 768px) {
    .col-sm-6 { width: 50%; }
    .col-sm-12 { width: 100%; }
}

.mb-3 { margin-bottom: 15px; }
.mb-4 { margin-bottom: 20px; }
.mt-2 { margin-top: 10px; }
.p-2 { padding: 10px; }
.p-3 { padding: 15px; }
.text-center { text-align: center; }



.size-btn:hover {
    border-color: #e1a994 !important;
}
.product-card {
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}