.gradient-green{
    background:linear-gradient(135deg, #1b8b5a, #2ecc71);
}

.gradient-blue{
    background:linear-gradient(135deg, #2b6cb0, #4299e1);;
}

.gradient-orange{
    background:linear-gradient(135deg, #f7941d, #fbd38d);
}

.gradient-purple{
    background:linear-gradient(135deg, #7c3aed, #a78bfa);
}



/* ===== PAGE HERO / BREADCRUMB ===== */


.page-hero {
    background: linear-gradient(135deg, #f0faf4 0%, #e8f8f0 50%, #fef9e7 100%);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,139,90,0.06) 0%, transparent 70%);
    top: -80px;
    right: -60px;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
}

.breadcrumb-item a {
    color: #1b8b5a;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #888;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: #aaa;
}

/* ===== ABOUT PAGE ===== */
.about-hero-section {
    padding: 80px 0;
}

.about-story {
    padding: 80px 0;
    background: #f9fafb;
}

.about-story-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-story-image {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-story-image img {
    width: 100%;
    border-radius: 16px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

/* Mission/Vision Cards */
.mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1b8b5a, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: transparent;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mv-card-icon.green { background: #e8f5ee; color: #1b8b5a; }
.mv-card-icon.blue { background: #e8f0fe; color: #2b6cb0; }
.mv-card-icon.orange { background: #fff4e5; color: #f7941d; }
.mv-card-icon.purple { background: #f3e8ff; color: #7c3aed; }

.mv-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.mv-card p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* About Stats */
.about-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #1b8b5a 0%, #14714a 100%);
}

.about-stat-item {
    text-align: center;
    padding: 20px;
}

.about-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 80px 0;
}

.team-card {
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.team-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.team-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
}

.team-socials {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.team-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.team-socials a:hover {
    background: #1b8b5a;
    color: #fff;
}

/* ===== CATEGORY / SHOP PAGE ===== */
.shop-content {
    padding: 60px 0;
}

/* Sidebar Filters */
.filter-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group .form-check {
    margin-bottom: 10px;
}

.filter-group .form-check-label {
    font-size: 0.9rem;
    color: #4a4a4a;
    cursor: pointer;
}

.filter-group .form-check-input:checked {
    background-color: #1b8b5a;
    border-color: #1b8b5a;
}

.price-range-display {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
}

.form-range::-webkit-slider-thumb {
    background: #1b8b5a;
}

.btn-filter-reset {
    width: 100%;
    padding: 10px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    background: none;
    color: #666;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-filter-reset:hover {
    border-color: #e91e63;
    color: #e91e63;
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-toolbar .results-count {
    font-size: 0.9rem;
    color: #888;
}

.shop-toolbar .results-count strong {
    color: #1a1a2e;
}

.shop-sort select {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.88rem;
    color: #4a4a4a;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.shop-sort select:focus {
    border-color: #1b8b5a;
    outline: none;
    box-shadow: 0 0 0 4px rgba(27,139,90,0.1);
}

.view-toggle {
    display: flex;
    gap: 4px;
}

.view-toggle button {
    width: 36px;
    height: 36px;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-toggle button.active,
.view-toggle button:hover {
    border-color: #1b8b5a;
    color: #1b8b5a;
    background: #e8f5ee;
}

/* Pagination */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination-custom .page-btn {
    width: 42px;
    height: 42px;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4a4a;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.pagination-custom .page-btn:hover,
.pagination-custom .page-btn.active {
    background: #1b8b5a;
    border-color: #1b8b5a;
    color: #fff;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section {
    padding: 40px 0 80px;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    background: #f9fafb;
    border-radius: 16px;
    /* padding: 30px; */
    text-align: center;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-main-image img {
    /* max-height: 350px;
    width: auto; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-thumb:hover,
.product-thumb.active {
    border-color: #1b8b5a;
    box-shadow: 0 0 0 3px rgba(27,139,90,0.12);
}

.product-thumb img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Product Info */
.product-detail-info h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.product-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.product-detail-rating i {
    color: #f59e0b;
    font-size: 0.95rem;
}

.product-detail-rating span {
    font-size: 0.88rem;
    color: #888;
    margin-left: 6px;
}

.product-detail-sku {
    font-size: 0.85rem;
    color: #888;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.product-detail-price .price-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1b8b5a;
}

.product-detail-price .price-original {
    font-size: 1.2rem;
    color: #aaa;
    text-decoration: line-through;
}

.product-detail-price .price-badge {
    background: #fce4ec;
    color: #e91e63;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-detail-desc {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.quantity-selector button {
    width: 44px;
    height: 44px;
    border: none;
    background: #f9fafb;
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-selector button:hover {
    background: #e8f5ee;
    color: #1b8b5a;
}

.quantity-selector input {
    width: 50px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    background: #fff;
}

.quantity-selector input:focus { outline: none; }

.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-add-to-cart-lg {
    padding: 14px 36px;
    background: linear-gradient(135deg, #1b8b5a, #2ecc71);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(27,139,90,0.3);
}

.btn-add-to-cart-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27,139,90,0.4);
}

.btn-buy-now {
    padding: 14px 36px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: #2d2d44;
    transform: translateY(-3px);
}

.btn-wishlist-lg {
    width: 48px;
    height: 48px;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wishlist-lg:hover {
    border-color: #e91e63;
    color: #e91e63;
    background: #fce4ec;
}

/* Product Meta Info */
.product-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-meta-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.9rem;
    display: flex;
    gap: 8px;
}

.product-meta-list li strong {
    color: #1a1a2e;
    min-width: 100px;
}

.product-meta-list li span {
    color: #666;
}

/* Product Tabs */
.product-tabs {
    margin-top: 60px;
}

.product-tabs .nav-tabs {
    border-bottom: 2px solid #e5e7eb;
    gap: 4px;
}

.product-tabs .nav-tabs .nav-link {
    border: none;
    color: #888;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    border-radius: 0;
}

.product-tabs .nav-tabs .nav-link:hover {
    color: #1b8b5a;
    border-bottom-color: rgba(27,139,90,0.3);
}

.product-tabs .nav-tabs .nav-link.active {
    color: #1b8b5a;
    border-bottom-color: #1b8b5a;
    background: none;
}

.product-tabs .tab-content {
    padding: 30px 0;
}

.tab-description p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 14px;
}

.tab-description ul {
    padding-left: 20px;
}

.tab-description ul li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Review Card */
.review-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.review-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.review-date {
    font-size: 0.8rem;
    color: #aaa;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}

.review-stars i {
    color: #f59e0b;
    font-size: 0.85rem;
}

.review-text {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== BLOG LIST PAGE ===== */
.blog-list-section {
    padding: 60px 0;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    margin-bottom: 24px;
}

.sidebar-widget h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f3f4f6;
}

.sidebar-search .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
}

.sidebar-search .form-control {
    border: none;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.sidebar-search .form-control:focus {
    box-shadow: none;
}

.sidebar-search .btn {
    background: #1b8b5a;
    color: #fff;
    border: none;
    padding: 0 18px;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 8px;
}

.sidebar-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    color: #4a4a4a;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sidebar-categories li a:hover {
    background: #e8f5ee;
    color: #1b8b5a;
}

.sidebar-categories li a .count {
    background: #f3f4f6;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: #888;
    font-weight: 600;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.recent-post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #a8e6cf, #88d8a8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h6 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-info h6 a {
    color: inherit;
    text-decoration: none;
}

.recent-post-info h6 a:hover {
    color: #1b8b5a;
}

.recent-post-date {
    font-size: 0.78rem;
    color: #aaa;
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag-cloud a:hover {
    background: #1b8b5a;
    border-color: #1b8b5a;
    color: #fff;
}

/* Blog Card (List variant) */
.blog-card-lg {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.blog-card-lg:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-color: transparent;
}

.blog-card-lg .blog-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-card-lg .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-lg .blog-card-body {
    padding: 28px;
}

.blog-card-lg .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: #888;
}

.blog-card-lg .blog-card-meta i {
    margin-right: 4px;
    color: #1b8b5a;
}

.blog-card-lg .blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-lg .blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-lg .blog-card-title a:hover {
    color: #1b8b5a;
}

.blog-card-lg .blog-card-excerpt {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-card-lg .blog-read-more {
    color: #1b8b5a;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.blog-card-lg .blog-read-more:hover {
    gap: 10px;
}

/* ===== BLOG DETAIL PAGE ===== */
.blog-detail-section {
    padding: 40px 0 80px;
}

.article-header {
    margin-bottom: 32px;
}

.article-header .blog-category-badge {
    display: inline-block;
    background: #e8f5ee;
    color: #1b8b5a;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.article-header h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #888;
}

.article-meta i {
    color: #1b8b5a;
    margin-right: 4px;
}

.article-author-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-author-inline .author-avatar-sm {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
}

.article-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    max-height: 450px;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.9;
}

.article-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 36px 0 16px;
}

.article-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 28px 0 12px;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content blockquote {
    border-left: 4px solid #1b8b5a;
    padding: 20px 24px;
    background: #f9fafb;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: italic;
    color: #4a4a4a;
}

.article-content ul, .article-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

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

/* Article Footer */
.article-footer {
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tags strong {
    font-size: 0.9rem;
    color: #1a1a2e;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-share span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
}

.article-share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
    text-decoration: none;
}

.article-share a:hover {
    background: #1b8b5a;
    color: #fff;
}

/* Author Box */
.author-box {
    background: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 40px;
}

.author-box-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-box h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.author-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Comments Section */
.comments-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.comment-card {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.comment-card:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.comment-body h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.comment-body .comment-date {
    font-size: 0.78rem;
    color: #aaa;
    margin-bottom: 8px;
}

.comment-body p {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Comment Form */
.comment-form-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.comment-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: border-color 0.2s ease;
}

.comment-form .form-control:focus {
    border-color: #1b8b5a;
    box-shadow: 0 0 0 4px rgba(27,139,90,0.1);
}

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

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 60px 0 80px;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: transparent;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}

.contact-info-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: #1b8b5a;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    color: #888;
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.contact-form .form-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: border-color 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #1b8b5a;
    box-shadow: 0 0 0 4px rgba(27,139,90,0.1);
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Map Placeholder */
.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #e8f5ee, #f0faf4);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder i {
    font-size: 3rem;
    color: #1b8b5a;
    margin-bottom: 12px;
    display: block;
}

.map-placeholder p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: #f9fafb;
}

.faq-section .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.98rem;
    color: #1a1a2e;
    padding: 18px 24px;
    background: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #e8f5ee;
    color: #1b8b5a;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    color: #666;
    font-size: 0.92rem;
    line-height: 1.7;
    padding: 0 24px 18px;
}

/* ===== RESPONSIVE (Inner Pages) ===== */
@media (max-width: 991.98px) {
    .page-hero h1 { font-size: 1.9rem; }
    .filter-sidebar { position: static; margin-bottom: 30px; }
    .product-gallery { position: static; }
    .blog-sidebar { position: static; margin-top: 40px; }
    .author-box { flex-direction: column; text-align: center; }
    .contact-form-wrapper { padding: 28px; }
}

@media (max-width: 767.98px) {
    .page-hero h1 { font-size: 1.6rem; }
    .product-detail-info h1 { font-size: 1.5rem; }
    .product-detail-price .price-current { font-size: 1.8rem; }
    .product-actions { flex-direction: column; }
    .btn-add-to-cart-lg, .btn-buy-now { width: 100%; text-align: center; }
    .article-header h1 { font-size: 1.6rem; }
    .article-footer { flex-direction: column; align-items: flex-start; }
}
