/* Blog Section Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

/* Product Card Styles - Text-based design */
.product-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #1f1f1f 100%);
    border: 2px solid #333;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: #00d4aa;
    box-shadow: 0 25px 50px rgba(0, 212, 170, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.5);
}

.product-card:active {
    transform: translateY(-6px) scale(1.01);
    transition: all 0.15s ease;
}

/* Product Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(0, 184, 148, 0.02) 100%);
    border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

.product-category {
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #121212;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.product-price {
    color: #00d4aa;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 212, 170, 0.3);
    background: linear-gradient(135deg, #00d4aa, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Content */
.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-description {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
    flex-grow: 1;
}

/* Product Image Styles */
.product-image-container {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Product Features */
.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 10px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00d4aa;
    font-size: 0.85rem;
    font-weight: 500;
    text-shadow: 0 0 6px rgba(0, 212, 170, 0.3);
    line-height: 1;
}

.feature-item i {
    font-size: 0.9rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    display: flex;
    align-items: center;
    line-height: 1;
}

/* Product Footer */
.product-footer {
    padding: 0 25px 25px;
    flex-shrink: 0;
}

/* Enhanced Purchase Button */
.btn-purchase-enhanced {
    width: 100%;
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #121212;
    border: none;
    padding: 16px 24px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 56px;
}

.btn-purchase-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-purchase-enhanced:hover::before {
    left: 100%;
}

.btn-purchase-enhanced:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 170, 0.5),
        0 0 20px rgba(0, 212, 170, 0.3);
    background: linear-gradient(135deg, #00b894 0%, #00d4aa 100%);
}

.btn-purchase-enhanced:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-purchase-enhanced i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-purchase-enhanced:hover i {
    transform: scale(1.1) rotate(5deg);
}

.btn-purchase-enhanced span {
    font-size: 1.05rem;
}

/* Button Glow Effect */
.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.btn-purchase-enhanced:hover .btn-glow {
    width: 200px;
    height: 200px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.blog-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #1f1f1f 100%);
    border: 2px solid #333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #00d4aa;
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.15),
        0 6px 24px rgba(0, 0, 0, 0.4);
}

.blog-card:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.1s ease;
}

/* Blog Image */
.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #00d4aa, #00b894);
    color: #121212;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    z-index: 2;
}

/* Blog Content */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #00d4aa;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

.blog-excerpt {
    color: #f8f9fa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.2em;
    flex-grow: 1;
}

/* Blog Meta */
.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.blog-date {
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-time {
    color: #00d4aa;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(0, 212, 170, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    text-shadow: 0 0 6px rgba(0, 212, 170, 0.3);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Blog Read More Button */
.blog-read-more {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-radius: 8px;
    text-shadow: 0 0 6px rgba(0, 212, 170, 0.3);
    flex-shrink: 0;
}

.blog-read-more:hover {
    color: #00b894;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 184, 148, 0.4);
}

.blog-read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog CTA Section - Luxury Design */
.blog-cta {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-cta-btn {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 184, 148, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-cta-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 212, 170, 0.15),
            transparent);
    transition: left 0.6s ease;
}

.blog-cta-btn:hover::before {
    opacity: 1;
}

.blog-cta-btn:hover::after {
    left: 100%;
}

.blog-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 212, 170, 0.4);
    color: #00d4aa;
}

.blog-cta-btn:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.15s ease;
}

.blog-cta-btn i {
    transition: all 0.3s ease;
    font-size: 0.8rem;
    color: #00d4aa;
}

.blog-cta-btn:hover i {
    transform: translateX(3px) scale(1.1);
    color: #00d4aa;
}

/* Luxury CTA Section */
.luxury-cta {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.luxury-btn {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.luxury-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.luxury-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.luxury-btn:hover::before {
    left: 100%;
}

.luxury-btn:hover::after {
    opacity: 1;
}

.luxury-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-color: rgba(255, 255, 255, 0.2);
}

.luxury-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.luxury-btn .btn-icon {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.luxury-btn:hover .btn-icon {
    transform: translateX(3px);
}

.luxury-btn:hover .btn-text {
    color: #f8f9fa;
}

/* Blog Card Animations */
.blog-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card:nth-child(4) {
    animation-delay: 0.4s;
}

.blog-card:nth-child(5) {
    animation-delay: 0.5s;
}

.blog-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Enhanced Filter Button Styles */
.filter-button {
    padding: 12px 20px;
    border: 2px solid #374151;
    border-radius: 12px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    color: #d1d5db;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.filter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-button:hover::before {
    left: 100%;
}

.filter-button:hover {
    border-color: #00d4aa;
    color: #00d4aa;
    background: linear-gradient(145deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 184, 148, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
}

.filter-button.active {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-color: #00d4aa;
    color: #121212;
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
}

.filter-button.active::before {
    display: none;
}

.filter-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.filter-button:hover i {
    transform: scale(1.1);
}

/* Enhanced Search Box Styles */
.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.search-input:focus+.search-icon {
    color: #00d4aa;
}

.search-input {
    width: 100%;
    padding: 16px 15px 16px 45px;
    border: 2px solid #374151;
    border-radius: 16px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 4px rgba(0, 212, 170, 0.1), 0 8px 25px rgba(0, 212, 170, 0.15);
    background: linear-gradient(145deg, #111827 0%, #0f172a 100%);
    transform: scale(1.02);
}

.search-input::placeholder {
    color: #6b7280;
    transition: color 0.3s ease;
}

.search-input:focus::placeholder {
    color: #9ca3af;
}

/* Enhanced Pagination Styles */
.pagination-item {
    padding: 12px 18px;
    border: 2px solid #374151;
    border-radius: 12px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 48px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pagination-item:hover:not(.disabled) {
    border-color: #00d4aa;
    color: #00d4aa;
    background: linear-gradient(145deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 184, 148, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.15);
}

.pagination-item.active {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-color: #00d4aa;
    color: #121212;
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    transform: translateY(-2px);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Enhanced Loading and Error States */
.loading-spinner {
    text-align: center;
    padding: 80px 20px;
    color: #00d4aa;
    font-size: 2.5rem;
    grid-column: 1 / -1;
}

.loading-spinner i {
    animation: spin 1s linear infinite;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}




.no-posts-message {
    text-align: center;
    padding: 100px 20px;
    color: #6b7280;
    font-size: 1.2rem;
    grid-column: 1 / -1;
    background: linear-gradient(145deg, rgba(107, 114, 128, 0.1) 0%, rgba(75, 85, 99, 0.05) 100%);
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.no-posts-message i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #4b5563;
    text-shadow: 0 0 20px rgba(75, 85, 99, 0.3);
}

/* Responsive Design for Blog Section */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .product-card {
        min-height: 360px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .product-image {
        height: 224px;
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card {
        min-height: 340px;
    }

    .products-header {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .blog-header {
        padding: 60px 0 40px;
    }

    .blog-header .blog-title {
        font-size: 2.5rem;
    }

    .blog-header .blog-subtitle {
        font-size: 1.1rem;
    }

    .blog-tools {
        flex-direction: row;
        align-items: stretch;
        gap: 15px;
        justify-content: flex-end;
    }

    .search-box {
        max-width: 100%;
        min-width: 250px;
    }

    /* Products Header Mobile Layout */
    .products-header {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .back-home-section {
        text-align: center;
    }

    .filter-buttons {
        justify-content: center;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card {
        min-height: 380px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 1rem;
    }

    .blog-excerpt {
        font-size: 0.85rem;
    }

    .product-card {
        min-height: 300px;
    }

    .product-content {
        padding: 15px 20px;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .product-header {
        padding: 12px 20px 8px;
    }

    .product-footer {
        padding: 0 20px 15px;
    }

    .product-image {
        height: 220px;
    }

    .btn-purchase-enhanced {
        padding: 12px 20px;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .blog-cta-btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .luxury-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 6px;
    }

    .back-home-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .filter-button {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .search-input {
        padding: 14px 15px 14px 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .blog-header {
        padding: 50px 0 30px;
    }

    .blog-header .blog-title {
        font-size: 2rem;
    }

    .blog-header .blog-subtitle {
        font-size: 1rem;
    }

    .glow-circle-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }

    .glow-circle-2 {
        width: 100px;
        height: 100px;
        top: -50px;
        right: -50px;
    }

    /* Products Header Small Mobile */
    .products-header {
        gap: 12px;
    }

    .back-home-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .search-input {
        padding: 10px 12px 10px 40px;
        font-size: 0.85rem;
    }

    .blog-grid {
        gap: 18px;
    }

    .blog-card {
        min-height: 360px;
    }

    .blog-content {
        padding: 18px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-title {
        font-size: 0.95rem;
    }

    .blog-excerpt {
        font-size: 0.8rem;
    }

    .product-card {
        min-height: 280px;
    }

    .product-content {
        padding: 12px 18px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-image {
        height: 240px;
    }

    .product-header {
        padding: 10px 18px 6px;
    }

    .product-footer {
        padding: 0 18px 12px;
    }

    .btn-purchase-enhanced {
        padding: 10px 18px;
        font-size: 0.9rem;
        min-height: 42px;
    }
}

/* Extra small mobile screens */
@media (max-width: 360px) {
    .product-card {
        min-height: 260px;
    }

    .product-content {
        padding: 10px 15px;
    }

    .product-header {
        padding: 8px 15px 4px;
    }

    .product-footer {
        padding: 0 15px 10px;
    }

    .product-title {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .product-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .btn-purchase-enhanced {
        padding: 8px 15px;
        font-size: 0.85rem;
        min-height: 38px;
    }

    .product-features {
        gap: 6px;
        margin-bottom: 10px;
    }

    .feature-item {
        font-size: 0.75rem;
    }

    .feature-item i {
        font-size: 0.8rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .blog-cta-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .luxury-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 5px;
    }

    .back-home-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .filter-button {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .search-input {
        padding: 12px 15px 12px 40px;
        font-size: 0.9rem;
    }

    .pagination-item {
        padding: 10px 14px;
        font-size: 0.85rem;
        min-width: 40px;
    }
}

/* Blog Header */
.blog-header {
    background: linear-gradient(135deg, #121212 0%, #071a13 50%, #121212 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(-30px);
    margin-bottom: 40px;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.glow-circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.glow-circle-2 {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header .blog-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #00d4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header .blog-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Products Header Layout */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

/* Back Home Button */
.back-home-section {
    text-align: left;
    flex-shrink: 0;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    color: #121212;
}

.back-home-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-home-btn:hover i {
    transform: translateX(-3px);
}

/* Blog Tools */
.blog-tools {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
    min-width: 200px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.9rem;
}

.search-input {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #374151;
    border-radius: 12px;
    background: #1f2937;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #00d4aa;
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background: #111827;
}

.search-input::placeholder {
    color: #6b7280;
}

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

.filter-button {
    padding: 10px 18px;
    border: 2px solid #374151;
    border-radius: 10px;
    background: #1f2937;
    color: #d1d5db;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.filter-button:hover {
    border-color: #00d4aa;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
}

.filter-button.active {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-color: #00d4aa;
    color: #121212;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

/* Loading and Error States */
.loading-spinner {
    text-align: center;
    padding: 60px 20px;
    color: #00d4aa;
    font-size: 2rem;
}

.no-posts-message {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

.no-posts-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4b5563;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-item {
    padding: 10px 16px;
    border: 2px solid #374151;
    border-radius: 10px;
    background: #1f2937;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
}

.pagination-item:hover:not(.disabled) {
    border-color: #00d4aa;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-2px);
}

.pagination-item.active {
    background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
    border-color: #00d4aa;
    color: #121212;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.pagination-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Blog Show Page Styles */
.post-header {
    background: #121212;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.post-header .glow-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.post-header .glow-circle-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.post-header .glow-circle-2 {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
    animation-delay: 3s;
}

/* Header Back Button */
.header-back-button {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 212, 170, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-btn:hover {
    background: rgba(0, 212, 170, 0.2);
    border-color: #00d4aa;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.back-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

.post-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.post-category {
    background: #00d4aa;
    color: #121212;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-meta-item i {
    color: #00d4aa;
    font-size: 1rem;
}

.post-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #00d4aa;
}

.post-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.post-image-container:hover .post-image {
    transform: scale(1.02);
}

/* Article Section */
.article-section {
    padding: 60px 0;
    background: #121212;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
    color: white;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
}

.article-content h1 {
    font-size: 2.5rem;
    color: #00d4aa;
}

.article-content h2 {
    font-size: 2rem;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid #00d4aa;
}

.article-content a {
    color: #00d4aa;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 170, 0.3);
    transition: all 0.3s ease;
}

.article-content a:hover {
    color: white;
    border-bottom-color: white;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

.article-content blockquote {
    border-left: 4px solid #00d4aa;
    padding-left: 20px;
    margin: 2rem 0;
    font-style: italic;
    color: #00d4aa;
    background: rgba(0, 212, 170, 0.05);
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

.article-content code {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.article-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    border: 1px solid #00d4aa;
    margin: 2rem 0;
}

.article-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: white;
}

/* Back Button Section Above Comments */
.back-button-section {
    padding: 40px 0;
    background: #121212;
    border-top: 1px solid rgba(0, 212, 170, 0.2);
}

.back-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-to-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 184, 148, 0.05) 100%);
    color: #00d4aa;
    padding: 16px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 212, 170, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.back-to-blog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.5s ease;
}

.back-to-blog-btn:hover::before {
    left: 100%;
}

.back-to-blog-btn:hover {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2) 0%, rgba(0, 184, 148, 0.1) 100%);
    border-color: #00d4aa;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.3);
}

.back-to-blog-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-to-blog-btn:hover i {
    transform: translateX(-5px);
}

/* Comment Section */
.comment-section {
    padding: 60px 0;
    background: #121212;
    border-top: 1px solid #00d4aa;
}

.comment-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.comment-section-title i {
    color: #00d4aa;
    font-size: 2rem;
}

.comment-form-container {
    background: rgba(18, 18, 18, 0.8);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
    border: 2px solid #00d4aa;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.comment-form-container h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(18, 18, 18, 0.8);
    border: 2px solid #00d4aa;
    border-radius: 12px;
    font-size: 1rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: white;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 10px 30px rgba(0, 212, 170, 0.2);
    background: rgba(18, 18, 18, 0.9);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #6b7280;
}

.submit-button {
    background: #00d4aa;
    color: #121212;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.4);
    background: white;
    color: #121212;
}

.submit-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.submit-button:hover i {
    transform: translateX(3px);
}

/* Comments List */
.comments-list {
    margin-top: 40px;
}

.comment-item {
    display: flex;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(18, 18, 18, 0.6);
    border-radius: 16px;
    border: 1px solid #00d4aa;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: white;
}

.comment-avatar {
    margin-right: 20px;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    background: #00d4aa;
    color: #121212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
    border: 2px solid #00d4aa;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.comment-author {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 212, 170, 0.3);
}

.comment-date {
    color: #00d4aa;
    font-size: 0.9rem;
    font-weight: 500;
}

.comment-body p {
    margin: 0;
    line-height: 1.7;
    color: white;
    font-size: 1rem;
}

.no-comments {
    text-align: center;
    padding: 60px 40px;
    background: rgba(18, 18, 18, 0.6);
    border-radius: 16px;
    color: #00d4aa;
    border: 2px solid #00d4aa;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.no-comments i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00d4aa;
    display: block;
}

/* Related Posts Section */
.related-posts-section {
    padding: 80px 0;
    background: #121212;
    border-top: 1px solid #00d4aa;
}

.related-posts-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.related-posts-title i {
    color: #00d4aa;
    font-size: 2rem;
}

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

.related-post-card {
    background: #121212;
    border: 2px solid #00d4aa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.related-post-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00d4aa;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.related-post-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: white;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15), 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-post-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #00d4aa;
    color: #121212;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    z-index: 2;
}

.related-post-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-post-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.related-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #00d4aa;
    text-shadow: 0 0 8px rgba(0, 212, 170, 0.5);
}

.related-post-meta {
    margin-bottom: 20px;
}

.related-post-meta-item {
    color: #00d4aa;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-post-link {
    color: #00d4aa;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-radius: 8px;
    text-shadow: 0 0 6px rgba(0, 212, 170, 0.3);
    align-self: flex-start;
}

.related-post-link:hover {
    color: white;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.related-post-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.related-post-link:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Blog Show Page */
@media (max-width: 768px) {
    .post-header {
        padding: 60px 0 40px;
        margin-top: -30px;
    }

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

    .post-meta {
        flex-direction: column;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comment-form-container {
        padding: 30px 20px;
    }

    .comment-section-title,
    .related-posts-title {
        font-size: 2rem;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comment-item {
        padding: 20px;
        flex-direction: column;
    }

    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Header Back Button Responsive */
    .header-back-button {
        top: 20px;
        left: 20px;
    }

    .back-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Back Button Above Comments Responsive */
    .back-button-section {
        padding: 30px 0;
    }

    .back-to-blog-btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .post-header {
        padding: 50px 0 30px;
    }

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

    .post-category {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .comment-form-container {
        padding: 25px 15px;
    }

    .comment-section-title,
    .related-posts-title {
        font-size: 1.75rem;
    }

    .related-post-card {
        min-height: 320px;
    }

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

    .avatar-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Header Back Button Responsive */
    .header-back-button {
        top: 15px;
        left: 15px;
    }

    .back-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .back-btn span {
        display: none;
    }

    /* Back Button Above Comments Responsive */
    .back-button-section {
        padding: 25px 0;
    }

    .back-to-blog-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
}
