/* assets/css/style.css - Modern UI styling inspired by the Lee Skincare logo */
/* Color palette from logo: Main pink (#FF69B4), lighter pink (#FFB6C1), accent rose (#DB7093), neutral gray (#808080), white (#FFFFFF), soft background (#FFF5F7) */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); /* Modern font: Poppins */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #FFF5F7; /* Soft pinkish white background */
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #f9f9f9 ); /* Gradient from logo pinks */
    color: #FF69B4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header img {
    height: 50px; /* Adjust based on logo size */
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.05); /* Subtle hover effect */
}

nav {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: #FF69B4;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #FFB6C1; /* Lighter pink underline */
    transition: width 0.3s ease;
}

main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #FF69B4; /* Main logo pink */
    margin-bottom: 1rem;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1rem;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.3); /* Pinkish glow on hover */
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product:hover img {
    transform: scale(1.05);
}

.product h2 {
    font-size: 1.5rem;
    color: #DB7093; /* Accent rose */
    margin: 0.5rem 0;
}

.product p {
    color: #808080; /* Neutral gray */
}

button {
    background: #FF69B4;
    color: #FFFFFF;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px; /* Pill-shaped */
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

button:hover {
    background: #DB7093;
    transform: scale(1.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #FFB6C1;
}

th {
    background: #FF69B4;
    color: #FFFFFF;
}

footer {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(to right, #FF69B4, #DB7093);
    color: #FFFFFF;
    margin-top: 2rem;
}

/* Responsive design: Mobile-first adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Forms styling */
form {
    max-width: 400px;
    margin: 2rem auto;
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

input, select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #FFB6C1;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

input:focus, select:focus {
    outline: none;
    border-color: #FF69B4;
    box-shadow: 0 0 0 2px rgba(255, 105, 180, 0.2);
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    background: #FFB6C1; /* Light pink placeholder */
    min-height: 200px; /* Prevent layout shift */
}

/* Hamburger menu */
#hamburger {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: #FF69B4;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

#hamburger:hover {
    color: #DB7093;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    header {
        justify-content: space-between; /* Logo left, hamburger right */
        padding: 1rem;
    }

    #nav-menu {
        display: none; /* Hide menu by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Below header */
        right: 0;
        background: #FFFFFF;
        width: 100%;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 999;
    }

    #nav-menu.active {
        display: flex; /* Show when active */
    }

    #nav-menu a {
        margin: 0.5rem 0;
        text-align: center;
    }

    #hamburger {
        display: block; /* Show hamburger on mobile */
    }
}

/* Add to end of file - Admin dashboard styling */
.admin-main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.admin-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #333;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 105, 180, 0.3);
}

.admin-card i {
    font-size: 3rem;
    color: #FF69B4;
    margin-bottom: 1rem;
}

.admin-card h2 {
    color: #DB7093;
    margin-bottom: 0.5rem;
}

/* Add - Admin section styling */
.admin-section {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.admin-section h2 {
    color: #FF69B4;
    margin-bottom: 1.5rem;
}

.admin-section form {
    display: grid;
    gap: 1rem;
}

.admin-section table {
    width: 100%;
}

admin-main a[href="/admin/logout"] {
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: #FF69B4;
    color: #FFFFFF;
    border-radius: 25px;
    transition: background 0.3s ease;
}

admin-main a[href="/admin/logout"]:hover {
    background: #DB7093;
}

/* Carousel styling (replace any previous - modern, responsive) */
.category-carousel-section {
    margin-bottom: 3rem;
    padding: 1rem;
}

.category-title {
    text-align: center;
    color: #FF69B4; /* Main pink */
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #FFB6C1; /* Lighter pink underline */
    padding-bottom: 0.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    gap: 1rem;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 20%; /* 5 items on desktop */
    box-sizing: border-box;
    text-align: center;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.carousel-item h3 {
    font-size: 1.2rem;
    color: #DB7093;
    margin: 0.5rem 0;
}

.carousel-item p {
    color: #808080;
}

.view-more {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: #FF69B4;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-more:hover {
    color: #DB7093;
}

/* Responsive: Adjust items per view */
@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 25%; /* 4 items */
    }
}

@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 33.33%; /* 3 items */
    }
}

@media (max-width: 768px) {
    .carousel-item {
        flex: 0 0 50%; /* 2 items */
    }
}

@media (max-width: 480px) {
    .carousel-item {
        flex: 0 0 100%; /* 1 item */
    }
}

/* ====================== SINGLE PRODUCT DETAIL ====================== */
.product-detail-container {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2rem;
    display: flex;
    gap: 4rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    overflow: hidden;
}

.product-image-wrapper {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF5F7;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: inset 0 0 20px rgba(255, 105, 180, 0.1);
}

.product-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.no-image {
    width: 300px;
    height: 300px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #999;
    font-size: 1.1rem;
}

.product-info {
    flex: 1;
    padding-top: 1rem;
}

.product-info h1 {
    font-size: 2.4rem;
    color: #DB7093;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FF69B4;
    margin: 1.5rem 0;
}

.description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.stock {
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.stock.out {
    background: #ffebee;
    color: #c62828;
}

.add-to-cart-btn {
    background: linear-gradient(to right, #FF69B4, #DB7093);
    color: white;
    font-size: 1.2rem;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #FF69B4;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #DB7093;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .product-image-wrapper {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .product-info h1 {
        font-size: 2rem;
    }
}

/* ====================== BLOG SINGLE POST ====================== */
.blog-single {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-hero {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(255,105,180,0.25);
}

.blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content-container {
    max-width: 780px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.blog-title {
    font-size: 2.7rem;
    line-height: 1.2;
    color: #DB7093;
    text-align: center;
    margin-bottom: 1.5rem;
}

.blog-meta {
    text-align: center;
    color: #808080;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    padding-bottom: 1.8rem;
    border-bottom: 2px solid #FFE4F0;
}

.blog-meta span {
    margin: 0 10px;
}

.blog-content {
    font-size: 1.09rem;
    line-height: 1.88;
    color: #444;
}

.blog-content h1, .blog-content h2, .blog-content h3 {
    color: #FF69B4;
    margin: 2.5rem 0 1.2rem;
}

.blog-content p {
    margin-bottom: 1.6rem;
}

.blog-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-footer {
    margin-top: 4rem;
    text-align: center;
}

.back-link {
    color: #FF69B4;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.15rem;
}

.back-link:hover {
    color: #DB7093;
}

/* Mobile */
@media (max-width: 768px) {
    .blog-hero {
        max-height: 340px;
        border-radius: 16px;
    }
    .blog-content-container {
        padding: 1.8rem;
        margin-top: -40px;
    }
    .blog-title {
        font-size: 2.1rem;
    }
}

/* ====================== BLOG LISTING - COMPACT & MODERN ====================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255,105,180,0.12);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,105,180,0.25);
}

.blog-card img {
    width: 100%;
    height: 380px;           /* Large, uniform, high-quality look */
    object-fit: cover;
}

.blog-card-content {
    padding: 1.6rem;
}

.blog-category {
    display: inline-block;
    background: #FFF0F5;
    color: #FF69B4;
    font-size: 0.85rem;
    padding: 4px 14px;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.38rem;
    line-height: 1.3;
    color: #333;
    display: block;
    margin-bottom: 0.9rem;
    text-decoration: none;
    font-weight: 600;
}

.blog-card-title:hover {
    color: #FF69B4;
}

.blog-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.blog-date {
    color: #999;
    font-size: 0.92rem;
}

/* Pagination */
.pagination {
    text-align: center;
    margin: 4rem 0;
}

.pagination a {
    display: inline-block;
    padding: 12px 18px;
    margin: 0 5px;
    border: 1px solid #FFB6C1;
    border-radius: 10px;
    color: #FF69B4;
    text-decoration: none;
    font-weight: 500;
}

.pagination a.active,
.pagination a:hover {
    background: #FF69B4;
    color: white;
    border-color: #FF69B4;
}

/* ====================== NEW HOMEPAGE SECTIONS ====================== */
.hero-section {
    height: 90vh;
    min-height: 650px;
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('/assets/images/hero.jpg') center/cover no-repeat; /* Add your hero image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #FFF;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-cta {
    background: #FF69B4;
    color: white;
    padding: 18px 48px;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
}

.search-bar-container {
    position: relative;
    max-width: 700px;
    margin: -40px auto 4rem;
    z-index: 10;
    padding: 0 20px;
}

.search-form {
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 18px 24px;
    font-size: 1.1rem;
}

.search-btn {
    background: #FF69B4;
    color: white;
    border: none;
    width: 70px;
    font-size: 1.4rem;
    cursor: pointer;
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    color: #DB7093;
    margin-bottom: 2.5rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.8rem;
    padding: 0 20px;
}

.category-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.category-image-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.category-image-link {
    display: block;
    text-decoration: none;
}

.category-title-link {
    text-decoration: none;
    color: inherit;
}

.category-title-link:hover h3 {
    color: #DB7093;
}

.trust-grid, .testimonial-grid, .digital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.trust-item, .testimonial, .digital-card {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255,105,180,0.1);
}

.newsletter-section {
    background: #FFF5F7;
    text-align: center;
    padding: 4rem 20px;
}

.newsletter-form {
    max-width: 420px;
    margin: 1.5rem auto 0;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 16px;
    border: 1px solid #FFB6C1;
    border-radius: 50px 0 0 50px;
}

.newsletter-form button {
    padding: 0 32px;
    background: #FF69B4;
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
}

/* Full-width search under hero */
.search-bar-container {
    max-width: 100%;
    margin: -50px auto 4rem;
    padding: 0 20px;
    z-index: 10;
}

.search-form {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.search-input {
    flex: 1;
    border: none;
    padding: 20px 28px;
    font-size: 1.15rem;
}

.category-card img.category-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

/* Minimal fix for Best Sellers title */
.product-title-link {
    text-decoration: none;
    color: inherit;
}

.product-title-link:hover h3 {
    color: #DB7093;
}

.button {
    background: #FF69B4 !important;
    color: white !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600;
    display: inline-block;
}

.button:hover {
    background: #DB7093 !important;
}

.delivery-option {
    display: block;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #FFB6C1;
    border-radius: 12px;
    cursor: pointer;
}

.delivery-option input:checked {
    accent-color: #FF69B4;
}

.delivery-option:hover {
    border-color: #FF69B4;
}

/* ====================== MODERN FOOTER ====================== */
.main-footer {
    background: linear-gradient(to right, #FF69B4, #DB7093);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-left {
    font-size: 1rem;
}

.footer-left small {
    opacity: 0.9;
    font-size: 0.9rem;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 12px;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: #FFF;
    transform: translateY(-4px);
}

.footer-right {
    font-size: 1rem;
}

.developer-link {
    color: #FFF;
    font-weight: 600;
    text-decoration: none;
}

.developer-link:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* ====================== WHATSAPP FLOATING BUTTON ====================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    background: #FF69B4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #DB7093;
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 6px 20px rgba(255, 105, 180, 0.45); }
    70% { box-shadow: 0 6px 30px rgba(255, 105, 180, 0.75); }
    100% { box-shadow: 0 6px 20px rgba(255, 105, 180, 0.45); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* ======================== BLOG SINGLE POST ======================== */

.blog-main {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.blog-single {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-hero img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.blog-content-container {
    padding: 2.5rem 3rem;
}

.blog-title {
    font-size: 2.6rem;
    color: #FF69B4;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.blog-meta {
    text-align: center;
    color: #808080;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.blog-content {
    font-size: 1.125rem;
    line-height: 1.85;
    color: #333;
    text-align: justify;
}

.blog-content p {
    margin-bottom: 1.6rem;
}

.blog-content h2,
.blog-content h3,
.blog-content h4 {
    color: #DB7093;
    margin: 2.2rem 0 1rem;
}

.blog-content h2 { font-size: 2rem; }
.blog-content h3 { font-size: 1.6rem; }
.blog-content h4 { font-size: 1.4rem; }

.blog-content ul,
.blog-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.blog-content li {
    margin-bottom: 0.8rem;
}

.blog-content blockquote {
    border-left: 4px solid #FF69B4;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.blog-footer {
    text-align: center;
    margin-top: 3rem;
}

.back-link {
    display: inline-block;
    color: #FF69B4;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 2px solid #FF69B4;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #FF69B4;
    color: white;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .blog-content-container {
        padding: 2rem 1.5rem;
    }
    
    .blog-title {
        font-size: 2.1rem;
    }
}