/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove all outlines and tap highlights globally */
*:focus,
*:active,
*:visited {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

a, button, input, textarea, select {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Top Banner */
.top-banner {
    background-color: #6B7C32; /* Dark olive green */
    color: white;
    padding: 8px 0;
    position: relative;
    z-index: 1000;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
}

.close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background-color: #F5F5F0; /* Light gray/off-white */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-left {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 20px;
}

.nav-link {
    text-decoration: none;
    color: #2C2C2C; /* Dark gray/black */
    font-weight: 400;
    font-size: 13px;
    transition: color 0.3s ease;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.nav-link:hover {
    color: #8B4513;
}

.nav-link:focus {
    outline: none !important;
    color: #8B4513;
}

.nav-link:active {
    outline: none !important;
    color: #8B4513;
}

.nav-link:visited {
    outline: none !important;
}

/* Current page highlighting */
.nav-link.current-page {
    color: #8B4513;
    font-weight: 600;
}

.logo {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 28px;
    font-weight: 600;
    color: #2C2C2C;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 20px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #2C2C2C;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 20px;
    background-color: #E4BB9F;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 200px;
    z-index: 1000;
}

.mobile-nav.active {
    display: block !important;
    animation: slideDown 0.3s ease;
}

/* Temporary: Make mobile nav always visible for testing */
.mobile-nav.test-visible {
    display: block !important;
    border: 3px solid #000000;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mobile-nav-link {
    display: block;
    text-decoration: none;
    color: white;
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: #F5F5F0;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:focus {
    outline: none !important;
    color: #F5F5F0;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:active {
    outline: none !important;
    color: #F5F5F0;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:visited {
    outline: none !important;
}

/* Current page highlighting for mobile */
.mobile-nav-link.current-page {
    color: #F5F5F0;
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 600;
}


.search-btn, .cart-btn {
    background: none;
    border: none;
    color: #2C2C2C;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.search-btn:hover, .cart-btn:hover {
    background-color: rgba(107, 124, 50, 0.1);
}

/* Search Input Styling */
.search-input {
    width: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    font-size: 14px;
    color: #2C2C2C;
    outline: none;
    transition: width 0.3s ease, opacity 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    opacity: 0;
    margin-left: 0;
    visibility: hidden;
    pointer-events: none;
}

.search-input.show {
    width: 250px;
    padding: 8px 12px;
    border: 1px solid #6B7C32;
    border-radius: 4px;
    background-color: #FFFFFF;
    opacity: 1;
    margin-left: 8px;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    border-color: #8B9A4A;
    box-shadow: 0 0 0 2px rgba(107, 124, 50, 0.2);
    outline: none;
}

.search-input::placeholder {
    color: #8B8B8B;
    font-style: italic;
}

/* Search match highlighting */
.product-listing-card.search-match,
.product-card.search-match {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(107, 124, 50, 0.3) !important;
    border: 2px solid #6B7C32;
    transition: all 0.3s ease;
}

.product-listing-card,
.product-card {
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, display 0.3s ease;
}

/* Mobile responsive for search matching */
@media (max-width: 768px) {
    .product-listing-card.search-match,
    .product-card.search-match {
        transform: scale(1.01);
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .product-listing-card.search-match,
    .product-card.search-match {
        transform: none;
        border-width: 1.5px;
    }
}

/* No Results Message - Mobile Responsive */
.no-results-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

@media (max-width: 768px) {
    .no-results-message {
        padding: 30px 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .no-results-message {
        padding: 25px 10px;
        font-size: 13px;
    }
    
    .no-results-message p {
        margin: 0;
        line-height: 1.5;
    }
}

/* Mobile search input */
@media (max-width: 768px) {
    .search-input.show {
        width: 200px;
        padding: 6px 10px;
        font-size: 13px;
        margin-left: 5px;
    }
    
    .nav-right {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .search-input.show {
        width: 140px;
        padding: 6px 8px;
        font-size: 12px;
        margin-left: 4px;
    }
    
    .nav-right {
        gap: 8px;
    }
    
    .search-btn {
        padding: 6px;
    }
}



/* Hero Section */
.hero-section {
    height: 75vh;
    background-color: #F5F5F0; /* Light off-white background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0 20px;
    margin-bottom: 0;
}

/* Shop page hero section - no bottom padding */
.shop-page .hero-section {
    padding-bottom: 0;
    margin-bottom: 0;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-top: 30px;
    height: 75vh;
    background-image: url('bg1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Shop page specific hero image */
.shop-page .hero-image-container {
    background-image: url('landingshopimg.jpeg');
    position: relative;
    height: 70vh;
    margin-top:10px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.shop-page .hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

/* Remove gap between hero and filter on shop page */
.shop-page .hero-section {
    margin-bottom: 0;
    padding-bottom: 0;
}

.shop-page .product-nav-section {
    margin-top: 0;
}

/* Bundles page specific hero image */
.bundles-page .hero-image-container {
    background-image: url('bundlesimg.jpeg');
    position: relative;
    height: 70vh;
    margin-top: -90px;
}

.bundles-page .hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.hero-content {
    position: absolute;
    top: 30%;
    left: 33.5%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: auto;
    max-width: 600px;
}

.hero-content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: auto;
    max-width: 600px;
}

.hero-subtitle {
    
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 4px;
    opacity: 0.9;
}

.hero-title {
    margin-bottom: 0;
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.hero-description {
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-top: 8px;
    line-height: 1.6;
    max-width: 300px;
    text-align: center;
}

.script-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: -10px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.serif-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 45px;
    font-weight: 700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.shop-now-btn {
    background-color: white;
    color: #2C2C2C;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
}

.shop-now-btn:hover {
    background-color: #F5F5F0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-branding {
    display: none; /* Remove branding text as it's not in the minimalist design */
}

/* Featured Product Styling */
.featured-product {
    border: 2px solid #E4BB9F;
    box-shadow: 0 4px 20px rgba(228, 187, 159, 0.2);
    transform: scale(1.02);
}

.product-buy-btn {
    background-color: #E4BB9F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: 'Worry-Free', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.product-buy-btn:hover {
    background-color: #D4A68F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 187, 159, 0.3);
}

/* Blog Post Page Styling */
.blog-post-page {
    background-color: #F8F8F8;
}

.blog-post-main {
    padding: 40px 0;
    min-height: 80vh;
}

.blog-post-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #E4BB9F;
    text-decoration: none;
}

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

.blog-post-article {
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.blog-post-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.blog-post-category {
    background-color: #E4BB9F;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

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

.blog-post-excerpt {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.blog-post-featured-image {
    margin: 40px 0;
    text-align: center;
}

.blog-post-featured-image img {
    max-width: 30%;
    height: auto;
    border-radius: 8px;
}

.blog-post-content {
    line-height: 1.8;
    color: #333;
}

.blog-post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #E4BB9F;
    padding-bottom: 10px;
}

.blog-post-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 30px 0 15px 0;
}

.blog-post-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.blog-post-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
    font-size: 16px;
}

.ingredients-table, .pricing-table {
    margin: 30px 0;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.ingredient-row, .pricing-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #E0E0E0;
    padding: 20px;
    align-items: start;
}

.pricing-row {
    grid-template-columns: 1fr 1fr 1fr;
}

.ingredient-row:last-child, .pricing-row:last-child {
    border-bottom: none;
}

.featured-pricing {
    background-color: #F8F6F0;
    border-left: 4px solid #E4BB9F;
}

.ingredient-name, .pricing-package {
    font-weight: 600;
    color: #2C2C2C;
    font-size: 16px;
}

.ingredient-benefits, .pricing-extras {
    color: #666;
    font-size: 15px;
}

.pricing-price {
    font-weight: 600;
    color: #E4BB9F;
    font-size: 18px;
    text-align: center;
}

.blog-post-cta {
    background: linear-gradient(135deg, #E4BB9F, #D4A68F);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.blog-post-cta h3 {
    color: white;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.blog-post-cta p {
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.9;
}

.cta-button {
    background-color: white;
    color: #E4BB9F;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Worry-Free', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.related-posts {
    margin-top: 40px;
}

.related-posts h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 30px;
    text-align: center;
}

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

.related-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.related-post-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.related-post-content h4 a {
    color: inherit;
    text-decoration: none;
}

.related-post-content h4 a:hover {
    color: #E4BB9F;
}

.related-post-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Featured Blog Card */
.featured-blog {
    border: 2px solid #E4BB9F;
    box-shadow: 0 4px 20px rgba(228, 187, 159, 0.2);
    transform: scale(1.02);
}

/* Pros and Cons Table */
.pros-cons-table {
    margin: 30px 0;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
}

.pros-cons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.pros-column, .cons-column {
    padding: 30px;
}

.pros-column {
    background-color: #F8F9FA;
    border-right: 1px solid #E0E0E0;
}

.cons-column {
    background-color: #FFF8F0;
}

.pros-column h3, .cons-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.pros-column ul, .cons-column ul {
    margin: 0;
    padding-left: 20px;
}

.pros-column li, .cons-column li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .pros-cons-row {
        grid-template-columns: 1fr;
    }
    
    .pros-column {
        border-right: none;
        border-bottom: 1px solid #E0E0E0;
    }
    
    .pros-column, .cons-column {
        padding: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent zooming on mobile */
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    .header {
        margin-bottom: -140px;
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }
    
    .nav-left {
        display: none;
    }
    
    .nav-center {
        order: 2;
        flex: 1;
        text-align: center;
    }
    
    .nav-right {
        order: 3;
    }
    
    .logo {
        font-size: 24px;
    }
    
    
    /* Hero Section Responsive */
    .hero-section {
        height: 80vh;
        padding: 0 10px;
    }
    
    .hero-image-container {
        width: 100%;
        height: 55vh;
        margin-top: 30px;
    }
    
    .product-section {
        padding: 10px 0;
        margin-top: -50px;
    }
    
    .hero-content {
        top: 30%;
        left: 12%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
        padding: 0 20px;
    }
    
    .script-text {
        font-size: 36px;
    }
    
    .serif-text {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .shop-now-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .hero-branding {
        bottom: 20px;
        left: 20px;
        right: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .script-text {
        font-size: 28px;
    }
    
    .serif-text {
        font-size: 32px;
    }
    
    .shop-now-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Hidden banner class */
.top-banner.hidden {
    display: none;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
button:focus,
.nav-link:focus {
    outline: 2px solid #6B7C32;
    outline-offset: 2px;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Product Section */
.product-section {
    background-color: #F5F0E8;
    padding: 10px 0;
}

.product-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.product-title {
    text-align: left;
}

.season-text {
    font-family: 'Playfair Display', serif !important;
    font-size: 14px;
    font-weight: 300;
    color: #999;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.essentials-text {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
}

.see-all-btn {
    background-color: #E4BB9F;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.see-all-btn:hover {
    background-color: #D4A68F;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image1 {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #F5F0E8;
    display: flex;
    align-items: center;
    justify-content: center;
}

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


.product-image1 img {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0 0 8px 0;
}

.product-size {
    font-family: 'Playfair Display', serif !important;
    font-size: 14px;
    color: #555;
    margin: 0 0 16px 0;
    font-weight: 500;
}

.product-price {
    margin-bottom: 12px;
}

.current-price {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px;
    font-weight: 700;
    color: #2C2C2C;
    margin-right: 8px;
}

.old-price {
    font-family: 'Playfair Display', serif !important;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.bestseller-tag {
    font-family: 'Playfair Display', serif !important;
    font-size: 12px;
    font-weight: 600;
    color: #FF6B35;
    background-color: rgba(255, 107, 53, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Responsive Design for Product Section */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .essentials-text {
        font-size: 32px;
    }
}

/* Explore Section */
.explore-section {
    background-color: #F5F0E8;
    padding: 40px 40px;
    min-height: 500px;
}

.explore-container {
    display: flex;
    min-height: 650px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.explore-left {
    flex: 1;
    background-color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.explore-image {
    width: 100%;
    max-width: 700px;
    height: 600px;
    background-color: #F5F0E8;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.explore-right {
    flex: 1;
    background-color: #E4BB9F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.explore-content {
    max-width: 400px;
    text-align: center;
}

.explore-subtitle {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 10px;
    font-weight: 300;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.explore-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 33px;
    font-weight: 400;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.explore-title-normal {
    display: block;
    font-weight: 400;
}

.explore-title-italic {
    display: block;
    font-style: italic;
    font-weight: 600;
}

.explore-description {
    font-family: 'Playfair Display', serif !important;
    font-size: 12px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.shop-products-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 25px;
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-products-btn:hover {
    background-color: white;
    color: #E4BB9F;
}

/* Responsive Design for Explore Section */
@media (max-width: 768px) {
    .explore-container {
        flex-direction: column;
    }
    
    .explore-left,
    .explore-right {
        flex: none;
        min-height: 300px;
    }
    
    .explore-title {
        font-size: 32px;
    }
    
    .explore-content {
        text-align: center;
    }
}

/* Premier Wellness Section */
.premier-wellness-section {
    background-color: #F5F0E8;
    padding: 60px 40px;
    min-height: 500px;
}

.premier-wellness-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
    background-image: url('premierimg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.premier-wellness-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 600px;
    padding: 0 20px;
}

.premier-title {
    margin-bottom: 0px;
}

.premier-text-small {
    font-family: 'Playfair Display', serif !important;
    font-size: 30px;
    font-weight: 400;
    display: block;
    margin-bottom: -12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.premier-text-large {
    font-family: 'Playfair Display', serif !important;
    font-size: 40px;
    font-weight: 700;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.premier-tagline {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 15px;
    font-weight: 300;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.premier-shop-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 11px 20px;
    border-radius: 25px;
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premier-shop-btn:hover {
    background-color: white;
    color: #2C2C2C;
    transform: translateY(-2px);
}

/* Responsive Design for Premier Wellness Section */
@media (max-width: 768px) {
    .premier-text-small {
        font-size: 28px;
    }
    
    .premier-text-large {
        font-size: 36px;
    }
    
    .premier-tagline {
        font-size: 16px;
    }
    
    .premier-shop-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Journal Section */
.journal-section {
    background-color: #F5F5F0;
    padding: 40px 20px;
}

.journal-container {
    max-width: 1160px;
    margin: 0 auto;
}

.journal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.journal-title-group {
    display: flex;
    flex-direction: column;
}

.journal-subtitle {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 14px;
    font-weight: 300;
    color: #999;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.journal-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.1;
}

.journal-see-more-btn {
    background-color: #E4BB9F;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.journal-see-more-btn:hover {
    background-color: #D4A68F;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.journal-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.journal-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.journal-image img {
    width: 70%;
    height: 80%;
    margin-left: 15%;
    margin-top: 15%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.journal-content {
    padding: 24px;
}

.journal-date {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.journal-article-title {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Journal Section */
@media (max-width: 768px) {
    .journal-section {
        padding: 60px 20px;
    }
    
    .journal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .journal-title {
        font-size: 36px;
    }
    
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .journal-image {
        height: 250px;
    }
}


/* Product Navigation Section */
.product-nav-section {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 80px; /* Position below the navbar */
    z-index: 998;
    transition: all 0.3s ease;
    margin-top: 0; /* No gap - directly below hero */
}

.product-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-nav-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-tab {
    background: none;
    border: none;
    padding: 8px 16px;
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-tab.active {
    background-color: #2C2C2C;
    color: white;
}

.nav-tab:hover:not(.active) {
    color: #2C2C2C;
}

.nav-tab:active {
    transform: scale(0.95);
}

/* Responsive Design for Product Navigation */
@media (max-width: 768px) {
    .product-nav-section {
        top: 60px;
        padding: 15px 0;
        margin-top: -50px;
    }
    
    .product-nav-container {
        padding: 0 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .product-nav-tabs {
        display: inline-flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        padding: 5px 20px;
        scroll-snap-type: x proximity;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-nav-tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .nav-tab {
        padding: 8px 14px;
        font-size: 11px;
        min-width: fit-content;
        flex-shrink: 0;
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .product-nav-section {
        top: 55px;
        padding: 12px 0;
        margin-top: -45px;
    }
    
    .product-nav-container {
        padding: 0 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .product-nav-tabs {
        display: inline-flex;
        gap: 8px;
        justify-content: center;
        align-items: center;
        padding: 5px 15px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .nav-tab {
        padding: 7px 12px;
        font-size: 10px;
    }
}

/* Product Listing Section */
.product-listing-section {
    padding: 60px 0;
    background-color: white;
}

.product-listing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 12px;
    font-weight: 400;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Responsive Design for Product Listing */
@media (max-width: 768px) {
    .product-listing-section {
        padding: 40px 0;
    }
    
    .product-listing-container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-listing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .product-listing-image {
        height: 250px;
    }
    
    .product-listing-info {
        padding: 20px;
    }
    
    .product-listing-name {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .product-listing-section {
        padding: 30px 0;
    }
    
    .product-listing-container {
        padding: 0 10px;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-subtitle {
        font-size: 10px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .product-listing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-listing-image {
        height: 200px;
    }
    
    .product-listing-info {
        padding: 15px;
    }
    
    .product-listing-name {
        font-size: 16px;
    }
    
    .product-listing-volume {
        font-size: 12px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .original-price {
        font-size: 14px;
    }
    
    .product-buy-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.product-listing-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-listing-image {
    height: 300px;
    background: linear-gradient(135deg, #F5F5F0 0%, #E8E8E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-listing-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-listing-info {
    padding: 25px;
}

.product-listing-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-listing-volume {
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
    font-weight: 500;
}

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

.current-price {
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
}

.original-price {
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.bestseller-badge {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 10px;
}

/* Product Grid Section */
.product-grid-section {
    padding: 80px 0;
    background-color: #F5F5F0;
}

.product-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #F5F5F0 0%, #E8E8E0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 18px;
    font-weight: 500;
    color: #8B4513;
    margin-bottom: 20px;
}

.product-btn {
    background-color: #8B4513;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Worry-Free', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-btn:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Footer - Desktop Styles */
.footer {
    background-color: #E0E0D8;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-navigation {
    display: flex;
    gap: 50px;
    margin-left: auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.footer-logo {
    font-family: 'Playfair Display', serif !important;
    font-size: 36px;
    font-weight: 700;
    color: #2C2C2C;
    margin: 0;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 300px;
}

.footer-address,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-address p,
.footer-contact p {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 14px;
    color: #2C2C2C;
    margin: 0;
    line-height: 1.4;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.footer-column-title {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 14px;
    color: #2C2C2C;
    text-decoration: none;
    transition: color 0.3s ease;
    text-align: left;
}

.footer-links a:hover {
    color: #E4BB9F;
}

.footer-bottom {
    border-top: 1px solid #CCC;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left,
.footer-bottom-right {
    font-family: 'Worry-Free', 'Arial', sans-serif !important;
    font-size: 12px;
    color: #666;
}

.footer-bottom-left p,
.footer-bottom-right p {
    margin: 0;
}

/* Footer - Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        text-align: center;
        gap: 15px;
        order: 1;
        margin-bottom: 20px;
    }
    
    .footer-navigation {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        order: 2;
        margin-left: 0;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-address,
    .footer-contact {
        gap: 2px;
    }
    
    .footer-address p,
    .footer-contact p {
        font-size: 13px;
    }
    
    .footer-column {
        text-align: center;
        gap: 12px;
        order: 2;
    }
    
    .footer-column-title {
        font-size: 11px;
        font-weight: 600;
        color: #999;
        text-transform: uppercase;
        text-align: center;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }
    
    .footer-links {
        gap: 8px;
        align-items: center;
    }
    
    .footer-links a {
        font-size: 12px;
        color: #2C2C2C;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding-top: 20px;
        order: 3;
        border-top: 1px solid #D0D0D0;
        margin-top: 20px;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        font-size: 11px;
    }
}

/* Footer - Small Mobile Styles */
@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-navigation {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 15px;
        order: 2;
    }
    
    .footer-brand {
        text-align: center;
        gap: 12px;
        order: 1;
        margin-bottom: 15px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 13px;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-address p,
    .footer-contact p {
        font-size: 12px;
    }
    
    .footer-column {
        text-align: center;
        gap: 10px;
        order: 2;
    }
    
    .footer-column-title {
        font-size: 10px;
        margin-bottom: 10px;
    }
    
    .footer-links {
        gap: 6px;
    }
    
    .footer-links a {
        font-size: 11px;
        text-align: center;
    }
    
    .footer-bottom {
        gap: 8px;
        padding-top: 15px;
        order: 3;
        margin-top: 15px;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        font-size: 10px;
    }
    
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Blog Listing Styles */
.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.blog-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-listing-image {
    width: 50%;
    height: 200px;
    margin-left: 100px;
    overflow: hidden;
}

.blog-listing-image img {
    width: 46%;
    height: 70%;
    margin-left: 15%;
    margin-top: 15%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-listing-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-listing-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #2C2C2C;
    line-height: 1.3;
    margin: 0;
}

.blog-listing-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.blog-read-more-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2C2C2C;
    background: transparent;
    border: 2px solid #2C2C2C;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.blog-read-more-btn:hover {
    background: #8B4513;
    border-color: #8B4513;
    color: #fff;
}

/* Blog Listing - Mobile Styles */
@media (max-width: 768px) {
    .blog-listing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .blog-listing-image {
        height: 160px;
    }
    
    .blog-listing-content {
        padding: 20px;
    }
    
    .blog-listing-name {
        font-size: 20px;
    }
    
    .blog-listing-excerpt {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .blog-listing-grid {
        gap: 15px;
        margin-top: 20px;
    }
    
    .blog-listing-image {
        height: 140px;
    }
    
    .blog-listing-content {
        padding: 15px;
    }
    
    .blog-listing-name {
        font-size: 18px;
    }
    
    .blog-listing-excerpt {
        font-size: 13px;
    }
    
    .blog-read-more-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
