/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animation delays for cards */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.blog-card-clean:nth-child(1) { animation-delay: 0.1s; }
.blog-card-clean:nth-child(2) { animation-delay: 0.2s; }
.blog-card-clean:nth-child(3) { animation-delay: 0.3s; }

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.certification-item:nth-child(1) { animation-delay: 0.1s; }
.certification-item:nth-child(2) { animation-delay: 0.2s; }
.certification-item:nth-child(3) { animation-delay: 0.3s; }
.certification-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }

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

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    font-weight: 400;
    min-width: 320px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(2, 62, 115, 0.08);
    min-height: 80px;
    box-sizing: border-box;
}

.hamburger {
    display: none;
}

.logo {
    flex: 0 0 120px;
    margin-right: 40px;
}

.logo-image {
    width: 100%;
    height: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
}

.cart {
    margin-left: auto;
}

.menu a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #023e73;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #023e73;
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

.menu a.active {
    color: #023e73;
    font-weight: 600;
}

.menu a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.track-order {
    position: relative;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.track-order:hover {
    transform: translateY(-2px);
}

.track-order svg {
    transition: all 0.3s ease;
}

.track-order:hover svg {
    stroke: #1a5490;
}

.cart {
    position: relative;
}

.cart-icon-container {
    position: relative;
    cursor: pointer;
}

.cart-item-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #023e73;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* Tablet Menu Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .header {
        padding: 20px 40px;
    }
    
    .header .menu {
        gap: 25px;
        margin-left: -20px;
    }
    
    .header .menu a {
        font-size: 0.95rem;
        padding: 6px 12px;
}

.logo-image {
        height: 55px;
        width: auto;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        min-height: 70px;
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
        order: 1;
        z-index: 1001;
    }
    
    .logo {
        order: 2;
        margin-left: 15px;
        flex: 0 0 auto;
    }

    .header-icons {
        order: 3;
        margin-left: auto;
        z-index: 1001;
        gap: 8px;
    }
    
    .track-order,
    .cart {
        padding: 4px;
    }
    
    .track-order svg,
    .cart svg {
        width: 20px;
        height: 20px;
    }

.header .menu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 998;
    gap: 20px;
    transition: left 0.3s ease;
        margin-left: 0;
        margin-right: 0;
        order: 4;
}

.header .menu.active {
    left: 0;
}

.header .menu a {
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    display: block;
        border-radius: 0;
        background: none;
        color: #023e73;
}

.header .menu a:hover {
    color: #1a5490;
    padding-left: 10px;
        background: none;
}

.header .menu a.active {
    color: #1a5490;
    font-weight: 600;
        background: none;
    }
    
    .logo-image {
        height: 50px;
        width: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
        min-height: 65px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .cart {
        padding: 6px;
    }
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Carousel - Sophisticated with Mask Animations */
.carousel-container {
    position: relative;
    width: 100%;
    height: 75vh;
    margin-top: 90px;
    overflow: hidden;
    background: #f8fafc;
}

.carousel {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.carousel-container .slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.85);
}

.carousel-container .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    color: white;
    padding: 60px 5% 80px;
    text-align: left;
}

/* Slide Awards Wrapper */
.slide-awards-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

/* Center slide awards on mobile like slide-text-wrapper */
@media (max-width: 768px) {
    .slide-awards-wrapper {
        justify-content: center;
    }
}

.slide-award-icon {
    width: 65px;
    height: 65px;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide-award-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.slide-award-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Text Animation Wrappers */
.slide-text-wrapper {
    max-width: 650px;
    margin-bottom: 32px;
}

.slide-text-mask {
    overflow: hidden;
    margin-bottom: 20px;
}

.slide-text-mask h2,
.slide-text-mask p {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide.active .slide-text-mask:nth-child(1) h2,
.slide.active .slide-text-mask:nth-child(1) p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.3s;
}

.slide.active .slide-text-mask:nth-child(2) h2,
.slide.active .slide-text-mask:nth-child(2) p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.carousel-container .slide-content h2 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 500;
    margin: 0;
    color: white;
    font-family: sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 
                 0px 0px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.4px;
    line-height: 1.15;
}

.carousel-container .slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 0;
    max-width: 520px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 
                 0px 0px 10px rgba(0, 0, 0, 0.4);
    font-weight: 300;
}

/* Button Animation Wrapper */
.slide-button-wrapper {
    overflow: hidden;
}

.carousel-container .carousel-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #023e73;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 2px solid transparent;
    text-transform: none;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
}

.slide.active .carousel-btn {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.7s;
}

.carousel-container .carousel-btn:hover {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.35);
}

.indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Awards Chiron */
.awards-chiron {
    background: #f8fafc;
    padding: 20px 0;
    border-top: 1px solid rgba(2, 62, 115, 0.1);
    border-bottom: 1px solid rgba(2, 62, 115, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.awards-track {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.award.award-mobile-duplicate {
    display: none !important;
}

/* Responsive Awards Chiron - Loop on narrow screens */
@media (max-width: 768px) {
    .awards-chiron {
        overflow: hidden;
        position: relative;
    }
    
    .awards-track {
        animation: scroll-awards 25s linear infinite;
        justify-content: flex-start;
        width: max-content;
    }
    
    .award.award-mobile-duplicate {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@keyframes scroll-awards {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.award {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-icon {
    height: 60px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}



/* ZΣrΩ Brand Font Styling */
.zero-brand-title,
.zero-brand-text {
    font-family: "Myriad Pro", Arial, sans-serif !important;
    font-weight: 700 !important;
    margin-bottom: -2px;
    text-transform: none !important;
}

/* Mobile Horizontal Scrolling for Product Grids - DISABLED */
/* This section is disabled - now handled by specific carousel systems for index.html and shop.html */
/*
@media (max-width: 768px) {
    .product-container,
    .content-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 20px !important;
        padding: 0 20px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .product-container::-webkit-scrollbar,
    .content-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .product-card,
    .blog-minimal-card,
    .recipe-card {
        flex: 0 0 280px !important;
        scroll-snap-align: start !important;
        width: 280px !important;
        max-width: 280px !important;
        min-width: 280px !important;
    }
    
    .product-card .product-image,
    .blog-minimal-card .product-image,
    .recipe-card .product-image {
        width: 100% !important;
        aspect-ratio: 4 / 3 !important;
        height: auto !important;
    }
}
*/
    
    /* Ensure quick-add-btn img remains visible */
    .product-card .quick-add-btn img,
    .zero-product-card .quick-add-btn img,
    .quick-add-btn img {
        display: block !important;
        width: 16px !important;
        height: 16px !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: brightness(0) saturate(100%) invert(100%) !important;
    }
}

/* Additional mobile breakpoint for quick-add-btn fix */
@media (max-width: 480px) {
    .product-card .quick-add-btn img,
    .zero-product-card .quick-add-btn img,
    .quick-add-btn img {
        display: block !important;
        width: 14px !important;
        height: 14px !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: brightness(0) saturate(100%) invert(100%) !important;
    }
}

/* Product Sections */
.product-section {
    padding: 60px 20px;
    text-align: center;
    background: transparent;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #023e73;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Section Header Unified - title and description side by side */
.section-header-unified {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.section-header-unified .section-title {
    margin-bottom: 0;
    text-align: left;
    flex-shrink: 0;
}

.section-header-unified .section-description {
    margin: 0;
    text-align: right;
    max-width: none;
    flex-shrink: 0;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Product Card - Minimalist & Classy */
.product-card {
    position: relative;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    animation: scaleIn 0.6s ease-out;
    animation-fill-mode: both;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

.product-card:hover {
    transform: translateY(-2px);
}

.product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: transparent;
    position: relative;
    border-radius: 0;
    margin-bottom: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    vertical-align: middle;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-details {
    padding: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    margin-top: 0;
}

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

.product-name {
    font-size: 1rem;
    font-weight: 500;
    color: #023e73;
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-quantity {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    position: relative;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #023e73;
    margin: 0;
}

.quick-add-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #023e73;
    color: white;
    border: 1px solid #023e73;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    opacity: 1;
    transform: scale(0.95);
}

.product-card:hover .quick-add-btn {
    opacity: 1;
    transform: scale(1);
}

.quick-add-btn:hover {
    background: white;
    color: #023e73;
    border-color: #023e73;
    box-shadow: 0 4px 12px rgba(2, 62, 115, 0.2);
    transform: scale(1.05);
}

.quick-add-btn img {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(100%);
}

.quick-add-btn:hover img {
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(1500%) hue-rotate(200deg) brightness(90%) contrast(110%);
}



/* ZERΩ Section */
.zero-section {
    background: #f8fafc;
    position: relative;
}

.zero-section .section-title {
    color: #1a5490;
}

/* ZΣrΩ Product Name Styling - Match section title font on shop and index pages */
.zero-product-card .product-name {
    font-family: "Myriad Pro", Arial, sans-serif !important;
    font-size: 1.2rem !important;
    color: #1a5490 !important;
    font-weight: 700 !important;
    text-transform: none !important;
    margin-bottom: -2px !important;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    background: #fdfdfd;
    position: relative;
}

.blog-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #023e73;
    margin-bottom: 16px;
    font-family: sans-serif;
    letter-spacing: -0.3px;
}

.blog-section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.blog-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
    border-radius: 12px;
}

.blog-carousel {
    display: flex;
    transition: transform 0.4s ease;
    gap: 25px;
}

/* Blog Card - Seamless Design matching product cards */
/* Blog Card - Match Recipe Card Style Exactly */
.blog-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card .product-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: transparent;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    margin-bottom: 16px;
}

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

.blog-card:hover .product-image img {
    transform: scale(1.03);
}

.blog-card .product-details {
    padding: 0;
    text-align: left;
}

.blog-card .product-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card .badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    font-family: 'Inter', sans-serif;
    width: fit-content;
    margin-bottom: 8px;
}

.blog-card .badge.innovation {
    background: #8b5cf6;
}

.blog-card .badge.sustainability {
    background: #10b981;
}

.blog-card .badge.industry {
    background: #3b82f6;
}

.blog-card .product-name {
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #023e73;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.blog-card .product-quantity {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.blog-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

.blog-nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #023e73;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(2, 62, 115, 0.2);
}

.blog-nav-btn:hover {
    background: #1a5490;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 62, 115, 0.3);
}

.blog-nav-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.blog-nav-btn svg {
    width: 20px;
    height: 20px;
}

.blog-indicators {
    display: flex;
    gap: 8px;
}

.blog-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(2, 62, 115, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-indicator.active {
    background: #023e73;
    transform: scale(1.3);
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
    margin-top: 0;
}

.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.certification-item {
    background: transparent;
    border-radius: 0;
    padding: 30px;
    box-shadow: none;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
    border: none;
    border-bottom: 1px solid rgba(2, 62, 115, 0.08);
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.certification-item:hover {
    transform: translateY(-2px);
}

.certification-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
    border: none;
    padding: 0;
}

.certification-image {
    width: 100%;
    object-fit: contain;
}

.certification-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #023e73;
    margin-bottom: 10px;
    font-family: sans-serif;
}

.certification-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ============================================
   UNIFIED RESPONSIVE CAROUSEL SYSTEM
   ============================================ */

/* PRIMARY DESKTOP DESIGN (1025px+) */
/* REMOVED: Duplicate grid definition - consolidated in organized grid system */

/* UNIVERSAL CAROUSEL SYSTEM (≤1024px) */
@media (max-width: 1024px) {
    /* Product containers - ONLY on index.html (home page) */
    body:has(.carousel-container) .product-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 30px;
        margin: 0 20px;
        max-width: 100vw;
        cursor: grab;
        user-select: none;
        
        /* COMPLETELY HIDE ALL SCROLLBARS */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    /* Content grids - ONLY on index.html (home page) */
    body:has(.carousel-container) .content-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 30px;
        max-width: 100vw;
        margin: 0;
        cursor: grab;
        user-select: none;
        
        /* COMPLETELY HIDE ALL SCROLLBARS */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    body:has(.carousel-container) .product-container::-webkit-scrollbar,
    body:has(.carousel-container) .content-grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    body:has(.carousel-container) .product-container:active,
    body:has(.carousel-container) .content-grid:active {
        cursor: grabbing;
    }
    
    /* Universal card sizing for tablet - ONLY on index.html */
    body:has(.carousel-container) .product-card,
    body:has(.carousel-container) .blog-card-clean {
        flex: 0 0 300px;
        scroll-snap-align: start;
        min-width: 300px;
        max-width: 300px;
        box-sizing: border-box;
    }
    

}

/* MOBILE ADJUSTMENTS (≤768px) - ONLY on index.html */
@media (max-width: 768px) {
    body:has(.carousel-container) .product-container {
        gap: 16px;
        padding: 0 20px;
    }
    
    body:has(.carousel-container) .content-grid {
        gap: 16px;
        padding: 0 20px;
    }
    
    /* Cards maintain exact desktop design - no changes - ONLY on index.html */
    body:has(.carousel-container) .product-card,
    body:has(.carousel-container) .blog-card-clean {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }

}

/* SMALL MOBILE (≤480px) - ONLY on index.html */
@media (max-width: 480px) {
    body:has(.carousel-container) .product-container {
        gap: 14px;
        padding: 0 16px;
    }
    
    body:has(.carousel-container) .content-grid {
        gap: 14px;
        padding: 0 16px;
    }
    
    body:has(.carousel-container) .product-card,
    body:has(.carousel-container) .blog-card-clean {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }

}

/* MOUSE WHEEL HORIZONTAL SCROLLING - ONLY on index.html */
body:has(.carousel-container) .product-container {
    scroll-behavior: smooth;
}

body:has(.carousel-container) .content-grid {
    scroll-behavior: smooth;
}

/* Add smooth horizontal scroll with mouse wheel - ONLY on index.html */
@media (hover: hover) {
    body:has(.carousel-container) .product-container:hover {
        scroll-behavior: auto;
    }
    
    body:has(.carousel-container) .content-grid:hover {
        scroll-behavior: auto;
    }
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 40px 0 20px;
}

.contact-section {
    padding: 40px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 30px;
    padding: 0 20px;
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: white;
    font-family: sans-serif;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.contact-info a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

/* Minimalist Cart Popup */
.cart-popup {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(2, 62, 115, 0.1);
}

.cart-popup.active {
    right: 0;
}

.cart-header {
    padding: 30px 24px 24px;
    border-bottom: 1px solid rgba(2, 62, 115, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
}

.cart-header h2 {
    color: #023e73;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: #64748b;
    padding: 6px;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart-btn:hover {
    color: #023e73;
    background: rgba(2, 62, 115, 0.05);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(2, 62, 115, 0.03);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 400;
    color: #023e73;
    margin-bottom: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.cart-item-price {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 8px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-item .quantity-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(2, 62, 115, 0.03);
    border-radius: 4px;
    padding: 2px;
}

.cart-item .quantity-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    font-size: 0.8rem;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.cart-item .quantity-btn:hover {
    background: #023e73;
    color: white;
}

.cart-item .quantity-input {
    width: 30px;
    text-align: center;
    border: none;
    background: transparent;
    padding: 4px 2px;
    font-size: 0.8rem;
    color: #023e73;
    font-weight: 500;
}

.remove-item-btn {
    background: none;
    color: #64748b;
    border: none;
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.remove-item-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.cart-footer {
    padding: 20px 24px 30px;
    border-top: 1px solid rgba(2, 62, 115, 0.08);
    background: transparent;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1rem;
    font-weight: 300;
    color: #023e73;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-btn {
    width: 100%;
    background: #023e73;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 0;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.checkout-btn:hover {
    background: #034a8c;
    letter-spacing: 3px;
}

.cart-icon-container {
    position: relative;
}

.cart-item-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Add to Cart Button */
.add-to-cart-btn-card {
    width: 100%;
    background: #023e73;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn-card:hover {
    background: #1a5490;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 62, 115, 0.3);
}

/* Shop Page Styles */
.shop-banner {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.shop-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    background: rgba(2, 62, 115, 0.8);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.shop-banner-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.shop-banner-description {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 500px;
    margin: 0 auto;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #023e73, #1a5490);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 90px;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.company-story {
    padding: 80px 0;
    background: white;
}

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

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #023e73;
    margin-bottom: 30px;
    font-family: sans-serif;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.mission-values {
    padding: 80px 0;
    background: #f8fafc;
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #023e73;
    margin-bottom: 50px;
    font-family: sans-serif;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.value-card h3 {
    font-size: 1.4rem;
    color: #023e73;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Thumbnail Gallery Styles - Product Detail Pages */
.thumbnail-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    background: #f8fafc;
    border-radius: 4px;
}

.thumbnail.active {
    border: 2px solid #023e73;
}

/* Responsive Thumbnail Styles */
@media (max-width: 1024px) {
    .thumbnail-gallery {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
    
    .thumbnail {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .thumbnail-gallery {
        gap: 12px;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .thumbnail-gallery {
        gap: 8px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Product Detail Gallery Layout Responsive */
@media (max-width: 1024px) {
    .product-overview {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .product-gallery {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .main-image {
        order: -1 !important;
        min-height: 400px !important;
    }
}

@media (max-width: 768px) {
    .product-overview {
        gap: 30px !important;
    }
    
    .main-image {
        min-height: 350px !important;
    }
}

@media (max-width: 480px) {
    .product-overview {
        gap: 25px !important;
    }
    
    .main-image {
        min-height: 300px !important;
    }
}

/* Creator Section */
.creator-section {
    padding: 80px 0;
    background: white;
}

.creator-info h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #023e73;
    margin-bottom: 50px;
    font-family: sans-serif;
    font-weight: 700;
}

.creator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.creator-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

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

.creator-image:hover img {
    transform: scale(1.03);
}

.creator-details h3 {
    font-size: 2.5rem;
    color: #023e73;
    margin-bottom: 16px;
    font-family: sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.creator-title {
    color: #1a5490;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.creator-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #023e73, #1a5490);
    border-radius: 2px;
}

.creator-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.creator-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.achievement {
    text-align: center;
    padding: 24px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(2, 62, 115, 0.1);
    transition: all 0.3s ease;
}

.achievement:hover {
    background: #023e73;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(2, 62, 115, 0.2);
}

.achievement:hover .achievement-number {
    color: white;
}

.achievement:hover .achievement-label {
    color: rgba(255, 255, 255, 0.9);
}

.achievement-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #023e73;
    margin-bottom: 8px;
    font-family: sans-serif;
    transition: color 0.3s ease;
}

.achievement-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.awards-section {
    padding: 80px 0;
    background: #f8fafc;
}

.awards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #023e73;
    margin-bottom: 50px;
    font-family: sans-serif;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 30px;
}

.award-item {
    background: white;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-6px);
}

.award-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.award-item h3 {
    font-size: 1.2rem;
    color: #023e73;
    margin-bottom: 12px;
    font-family: sans-serif;
}

.award-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #023e73, #1a5490);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 90px;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.blog-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.featured-article {
    padding: 80px 0;
    background: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.featured-tag {
    background: #ef4444;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.featured-text h2 {
    font-size: 2.2rem;
    color: #023e73;
    margin-bottom: 20px;
    font-family: sans-serif;
    line-height: 1.3;
}

.featured-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #94a3b8;
}

.read-more-btn {
    background: #023e73;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: #1a5490;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 62, 115, 0.3);
}

.blog-categories {
    padding: 60px 0;
    background: #f8fafc;
}

.blog-categories h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #023e73;
    margin-bottom: 40px;
    font-family: sans-serif;
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-btn {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: #023e73;
    color: white;
    border-color: #023e73;
}

.blog-grid {
    padding: 80px 0;
    background: white;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(2, 62, 115, 0.1);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 30px;
}

.blog-category {
    background: #e0f2fe;
    color: #0369a1;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 16px;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: #023e73;
    margin-bottom: 16px;
    font-family: sans-serif;
    line-height: 1.4;
}

.blog-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #94a3b8;
}

.newsletter-section {
    padding: 80px 0;
    background: #023e73;
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-family: sans-serif;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: #023e73;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Recipes Page Styles */
.recipes-hero {
    background: linear-gradient(135deg, #023e73, #1a5490);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.recipes-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('imgs/19-06-2025-SIFR-Drinks11241.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.recipes-hero .container {
    position: relative;
    z-index: 2;
}

.recipes-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: sans-serif;
    line-height: 1.2;
}

.recipes-hero-content p {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-categories {
    padding: 80px 0;
    background: #f8fafc;
}

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

.categories-header h2 {
    font-size: 2.5rem;
    color: #023e73;
    margin-bottom: 16px;
    font-family: sans-serif;
}

.categories-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    min-width: 160px;
    justify-content: center;
}

.filter-btn:hover {
    border-color: #023e73;
    color: #023e73;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 62, 115, 0.1);
}

.filter-btn.active {
    background: #023e73;
    border-color: #023e73;
    color: white;
    box-shadow: 0 8px 24px rgba(2, 62, 115, 0.2);
}

.filter-icon {
    font-size: 1.2rem;
}

.recipes-grid {
    padding: 100px 0;
    background: white;
}

.recipe-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    gap: 40px;
}

.recipe-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

.recipe-card:hover {
    transform: translateY(-4px);
}

.recipe-card .product-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: transparent;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    margin-bottom: 16px;
}

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

.recipe-card:hover .product-image img {
    transform: scale(1.03);
}

.recipe-card .product-details {
    padding: 0;
    text-align: left;
}

.recipe-card .product-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #023e73;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recipe-card .product-quantity {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 12px;
}

.recipe-card .product-price {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #8b5cf6;
    color: white;
    font-family: 'Inter', sans-serif;
}

.recipe-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.recipe-badge.zerw {
    background: #10b981;
}

.recipe-badge.seasonal {
    background: #dc2626;
}

.difficulty-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
}

.difficulty-badge.easy {
    background: #dcfce7;
    color: #16a34a;
}

.difficulty-badge.medium {
    background: #fef3c7;
    color: #d97706;
}

.recipe-content {
    padding: 0;
    text-align: left;
}

.recipe-header {
    margin-bottom: 20px;
}

.recipe-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #023e73;
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-family: sans-serif;
}

.recipe-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: #64748b;
}

.prep-time,
.servings {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-weight: 500;
}

.prep-time svg,
.servings svg {
    opacity: 0.7;
}

.recipe-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.recipe-ingredients {
    margin-bottom: 28px;
}

.recipe-ingredients h4 {
    color: #023e73;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
}

.ingredients-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ingredient-tag {
    background: transparent;
    color: #475569;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.view-recipe-btn {
    background: #023e73;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-recipe-btn:hover {
    background: #1a5490;
    transform: translateY(-3px);
}

.view-recipe-btn svg {
    transition: transform 0.3s ease;
}

.view-recipe-btn:hover svg {
    transform: translateX(4px);
}

.pro-tips {
    padding: 100px 0;
    background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #023e73;
    margin-bottom: 16px;
    font-family: sans-serif;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

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

.tip-card {
    background: white;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #f0f9ff;
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.tip-card:hover .tip-icon {
    background: #023e73;
    color: white;
}

.tip-icon svg {
    color: #023e73;
    transition: color 0.3s ease;
}

.tip-card:hover .tip-icon svg {
    color: white;
}

.tip-card h3 {
    font-size: 1.4rem;
    color: #023e73;
    margin-bottom: 16px;
    font-family: sans-serif;
    font-weight: 600;
}

.tip-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Blog Article Template Styles */
.article-header {
    background: #f8fafc;
    padding: 40px 0 60px;
    margin-top: 90px;
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-category {
    margin-bottom: 20px;
}

.category-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-tag.innovation {
    background: #dbeafe;
    color: #1d4ed8;
}

.category-tag.sustainability {
    background: #dcfce7;
    color: #16a34a;
}

.category-tag.industry {
    background: #fef3c7;
    color: #d97706;
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: #023e73;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: sans-serif;
}

.article-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 30px; */
    padding: 20px;
    background: white;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #023e73;
    font-size: 0.95rem;
}

.author-title {
    color: #64748b;
    font-size: 0.85rem;
}

.article-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #64748b;
}

.article-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0a66c2;
    color: white;
}

.share-btn.copy {
    background: #f1f5f9;
    color: #64748b;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.article-featured-image {
    padding: 0 0 60px;
}

.featured-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.image-caption {
    text-align: center;
    margin-top: 16px;
}

.image-caption p {
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.article-content {
   /* padding: 60px 0; */
}

.content-wrapper {
    display: grid;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-body {
    max-width: none;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: #023e73;
    margin-bottom: 40px;
    line-height: 1.7;
}

.article-text h2 {
    font-size: 2rem;
    color: #023e73;
    margin: 50px 0 25px;
    font-family: sans-serif;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 25px;
}

.article-quote {
    background: #f8fafc;
    border-left: 4px solid #023e73;
    padding: 30px;
    margin: 40px 0;
    border-radius: 0 12px 12px 0;
}

.article-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #023e73;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-quote cite {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

.article-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.article-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.article-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #023e73;
    font-weight: bold;
}

.article-highlight {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 40px;
    border-radius: 16px;
    margin: 50px 0;
    border: 1px solid #e0f2fe;
}

.article-highlight h3 {
    color: #023e73;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-family: sans-serif;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 25px;
}

.highlight-item h4 {
    color: #023e73;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.article-tags h3 {
    color: #023e73;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #023e73;
    color: white;
}

.author-bio {
    background: #f8fafc;
    padding: 30px;
    border-radius: 16px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.author-bio-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio-content h3 {
    color: #023e73;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-bio-title {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.author-bio-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.author-social-link:hover {
    color: #023e73;
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.sidebar-widget h3 {
    color: #023e73;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-family: sans-serif;
}

.newsletter-widget p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.newsletter-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form-sidebar input {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
}

.newsletter-form-sidebar button {
    background: #023e73;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form-sidebar button:hover {
    background: #1a5490;
}

.popular-articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-article {
    display: flex;
    gap: 12px;
}

.popular-article-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.popular-article-content h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 6px;
}

.popular-article-content a {
    color: #023e73;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-article-content a:hover {
    color: #1a5490;
}

.popular-article-date {
    color: #64748b;
    font-size: 0.8rem;
}

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

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    color: #64748b;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.categories-list a:hover {
    color: #023e73;
}

.categories-list span {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.related-articles {
    background: #f8fafc;
    padding: 80px 0;
}

.related-articles h2 {
    text-align: center;
    color: #023e73;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-family: sans-serif;
}

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

.related-article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.article-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.related-article-content {
    padding: 25px;
}

.related-article-content h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.related-article-content a {
    color: #023e73;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-article-content a:hover {
    color: #1a5490;
}

.related-article-content p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.related-article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
}

.comments-section {
    padding: 80px 0;
}

.comments-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.comments-section h2 {
    color: #023e73;
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-family: sans-serif;
}

.comments-intro {
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.comment-form-wrapper {
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.comment-form-wrapper h3 {
    color: #023e73;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #023e73;
}

.submit-comment-btn {
    background: #023e73;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.submit-comment-btn:hover {
    background: #1a5490;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comment {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

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

.comment-author {
    color: #023e73;
    font-size: 1rem;
    font-weight: 600;
}

.comment-date {
    color: #64748b;
    font-size: 0.85rem;
}

.comment-text {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-reply-btn {
    background: none;
    border: none;
    color: #023e73;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-reply-btn:hover {
    color: #1a5490;
}

/* Product Detail Page Styles */
.breadcrumb {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.breadcrumb a {
    color: #023e73;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1a5490;
}

.breadcrumb span {
    color: #94a3b8;
    margin: 0 8px;
}

.product-detail-main {
    padding: 40px 0;
    background: white;
}

.product-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.main-image {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    width: 100%;
    height: 380px;
}

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

.image-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: #023e73;
}

.product-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.premium {
    background: #f59e0b;
    color: white;
}

.badge.new {
    background: #10b981;
    color: white;
}

.badge.organic {
    background: #8b5cf6;
    color: white;
}

.product-title {
    font-size: clamp(1.8rem, 4vw, 2rem);
    color: #023e73;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.2;
}

.product-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.4;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #fbbf24;
    font-size: 1.2rem;
}

.star.filled {
    color: #f59e0b;
}

.rating-text {
    font-weight: 600;
    color: #023e73;
    font-size: 0.9rem;
}

.review-count {
    color: #64748b;
    font-size: 0.9rem;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
}

.current-price {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #023e73;
}

.original-price {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #94a3b8;
    text-decoration: line-through;
}

.discount {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-options {
   /* margin-bottom: 24px; */
}

.size-info,
.quantity-section {
    margin-bottom: 16px;
}

.size-info label,
.quantity-section label {
    display: block;
    font-weight: 600;
    color: #023e73;
   /* margin-bottom: 8px; */
}

.size-display {
    color: #64748b;
    font-size: 1.1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #023e73;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #f8fafc;
    border-color: #023e73;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.add-to-cart-btn {
    flex: 1;
    background: #023e73;
    color: white;
    border: none;
    padding: 16px 24px;
   /* border-radius: 8px; */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
}

.add-to-cart-btn:hover {
    background: #1a5490;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 62, 115, 0.3);
}

.wishlist-btn,
.share-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #64748b;
}

.wishlist-btn:hover,
.share-btn:hover {
    background: #f8fafc;
    border-color: #023e73;
    color: #023e73;
}

.delivery-info {
    border: 1px solid #e2e8f0;
    /* border-radius: 12px; */
    padding: 24px;
    background: #f8fafc;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.delivery-option:last-child {
    margin-bottom: 0;
}

.delivery-option svg {
    color: #023e73;
    flex-shrink: 0;
}

.delivery-option strong {
    color: #023e73;
    display: block;
    margin-bottom: 4px;
}

.delivery-option p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.product-details-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 60px;
    margin-bottom: 60px;
}

.tabs-container {
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #023e73;
    border-bottom-color: #023e73;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    font-size: 1.5rem;
    color: #023e73;
    margin-bottom: 24px;
    font-family: sans-serif;
}

.tab-pane h4 {
    font-size: 1.2rem;
    color: #023e73;
    margin: 24px 0 16px;
    font-family: sans-serif;
}

.tab-pane p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tab-pane ul {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
    padding-left: 20px;
}

.specs-table,
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.specs-table td,
.nutrition-table td {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.specs-table td:first-child,
.nutrition-table td:first-child {
    font-weight: 600;
    color: #023e73;
    width: 40%;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 24px;
}

.ingredients-list ul {
    list-style: none;
    padding: 0;
}

.ingredients-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
}

.allergen-info {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.allergen-info h4 {
    color: #92400e;
    margin-bottom: 8px;
}

.allergen-info p {
    color: #92400e;
    margin: 0;
}

.related-products {
    border-top: 1px solid #e2e8f0;
    padding-top: 60px;
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    color: #023e73;
    margin-bottom: 40px;
    font-family: sans-serif;
}

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

.related-product-card {
    text-align: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-product-card:hover {
    transform: translateY(-4px);
}

.related-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.related-product-card h3 {
    font-size: 1.1rem;
    color: #023e73;
    margin-bottom: 8px;
    font-family: sans-serif;
}

.related-product-card .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #023e73;
    margin-bottom: 16px;
}

.quick-add-btn {
    background: #023e73;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-add-btn:hover {
    background: #1a5490;
    transform: translateY(-2px);
}

/* Responsive Design */
/* Medium screens - 3 blog cards per indicator */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-card {
        flex: 0 0 calc((100vw - 100px) / 3);
        min-width: 280px;
        max-width: 350px;
    }
    
    /* Carousel Tablet Optimization */
    .carousel-container .slide-content {
        padding: 40px 6% 50px;
        justify-items: center;
        text-align: center;
    }
    
    .carousel-container .slide-content h2 {
        max-width: none;
    }
    
    .carousel-container .slide-content p {
        max-width: none;
    }
    
    /* Product Detail Tablet Optimization */
    .product-overview {
        gap: 40px;
    }
    
    .main-image {
        height: 320px;
    }
    
    .product-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
    
    .product-info {
        padding-right: 0;
    }
    
    .delivery-info {
        padding: 16px;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    /* Header */

    /* Shop Banner */
    .shop-banner {
        height: 200px;
    }
    
    .shop-banner-title {
        font-size: 2rem;
    }
    
    .shop-banner-description {
        font-size: 1rem;
    }
    
    .shop-banner-content {
        padding: 30px 20px;
    }
    
    /* About Page */
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .company-story {
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-text h2 {
        font-size: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .mission-values {
        padding: 60px 0;
    }
    
    .mission-values h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    /* Creator Section Mobile */
    .creator-section {
        padding: 60px 0;
    }
    
    .creator-info h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .creator-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .creator-details h3 {
        font-size: 2rem;
        text-align: center;
    }
    
    .creator-title {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .creator-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .creator-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .creator-achievements {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    .achievement {
        padding: 20px 15px;
    }
    
    .achievement-number {
        font-size: 1.6rem;
    }
    
    .awards-section {
        padding: 60px 0;
    }
    
    .awards-section h2 {
        font-size: 2rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .award-item {
        padding: 30px 20px;
    }
    
    /* Blog Page */
    .blog-hero {
        padding: 80px 0 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero-content p {
        font-size: 1.1rem;
    }
    
    .featured-article {
        padding: 60px 0;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-text h2 {
        font-size: 1.8rem;
    }
    
    .featured-text p {
        font-size: 1rem;
    }
    
    .blog-categories {
        padding: 40px 0;
    }
    
    .blog-categories h2 {
        font-size: 1.8rem;
    }
    
    .category-filters {
        padding: 0 20px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .blog-grid {
        padding: 60px 0;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-content {
        padding: 25px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 300px;
    }
    
    /* Recipes Page */
    /* Recipes Page Mobile */
    .recipes-hero {
        padding: 80px 0 60px;
    }
    
    .recipes-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .recipes-hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .recipe-categories {
        padding: 60px 0;
    }
    
    .categories-header h2 {
        font-size: 2rem;
    }
    
    .category-filters {
        gap: 12px;
    }
    
    .filter-btn {
        min-width: 140px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .recipes-grid {
        padding: 80px 0;
    }
    
    .recipe-cards {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .recipe-content {
        padding: 28px;
    }
    
    .recipe-header h3 {
        font-size: 1.3rem;
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .ingredients-tags {
        gap: 6px;
    }
    
    .ingredient-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .pro-tips {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tip-card {
        padding: 36px 28px;
    }
    
    .tip-icon {
        width: 56px;
        height: 56px;
    }

    /* Blog Article Template Mobile */
    .article-header-content {
        text-align: left;
    }

    .article-meta {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }

    .article-stats {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 0.9rem;
    }

    .author-info {
        order: 1;
    }

    .article-stats {
        order: 2;
    }

    .featured-image-wrapper {
        margin-bottom: 30px !important;
    }

    .featured-image {
        height: 250px;
        /* border-radius: 8px; */
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-text {
        font-size: 1rem;
    }

    .lead-paragraph {
        font-size: 1.2rem;
    }

    .article-text h2 {
        font-size: 1.6rem;
    }

    .article-highlight {
        padding: 30px 20px;
    }

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

    .author-bio {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .sidebar-widget {
        padding: 25px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .related-article-image {
        height: 180px;
    }

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

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

    .comment {
        padding: 20px;
    }
    
    /* Product Detail Page */
    .product-overview {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: none;
    }
    
    .product-gallery {
        position: static;
        order: 1;
    }
    
    .product-info {
        order: 2;
    }
    
    .main-image {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .thumbnail-gallery {
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .price-section {
        gap: 12px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .wishlist-btn,
    .share-btn {
        width: 100%;
        height: 50px;
        justify-content: center;
    }
    
    .delivery-info {
        padding: 20px;
        border-radius: 12px;
        background: #f8fafc;
    }
    
    .delivery-option {
        margin-bottom: 16px;
    }
    
    .tabs-container {
        margin-top: 30px;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .tab-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Hero Carousel */
    .carousel-container {
        height: 60vh;
        min-height: 450px;
        margin-top: 40px;
    }
    
         .carousel-container .slide-content {
        padding: 40px 6% 80px;
        text-align: center;
    }

    .slide-text-wrapper {
        max-width: 100%;
        margin-bottom: 28px;
    }

    .slide-text-mask {
        margin-bottom: 16px;
     }
    
    .carousel-container .slide-content h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        letter-spacing: -0.2px;
    }
    
    .carousel-container .slide-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .carousel-container .carousel-btn {
        padding: 12px 22px;
        font-size: 13px;
    }

    /* Product Cards Mobile */
    .product-card {
        height: auto;
    }

    .product-image {
        border-radius: 0;
    }

    .product-details {
        padding: 14px 0 0 0;
    }

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

    .product-quantity {
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .product-pricing {
        margin-top: 8px;
    }

    .quick-add-btn {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }

    .quick-add-btn img {
        width: 16px;
        height: 16px;
    }
    
    /* Product Section - Mobile Carousel */
    .product-section {
        padding: 40px 20px 40px 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 16px;
        margin-bottom: 30px;
    }
    
}

/* DESKTOP STYLES (1025px and above) - Use default grid styles defined above */
@media (min-width: 1025px) {
    /* Cart - Desktop Responsive */
    .cart-popup {
        width: 380px !important;
        right: -380px !important;
    }
    
    .cart-popup.active {
        right: 0 !important;
    }
}



@media (max-width: 480px) {
    .carousel-container {
        height: 55vh;
        min-height: 400px;
    }
    
    .carousel-container .slide-content {
        padding: 35px 8% 90px;
        text-align: center;
    }

    .slide-text-wrapper {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .slide-text-mask {
        margin-bottom: 14px;
    }
    
    .carousel-container .slide-content h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        max-width: none;
        letter-spacing: -0.2px;
    }
    
    .carousel-container .slide-content p {
        font-size: 0.85rem;
        max-width: none;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    /* Creator Section Small Mobile */
    .creator-info h2 {
        font-size: 1.6rem;
    }
    
    .creator-card {
        gap: 30px;
        padding: 0 15px;
    }
    
    .creator-details h3 {
        font-size: 1.6rem;
    }
    
    .creator-title {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .creator-title::after {
        width: 60px;
    }
    
    .creator-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .achievement {
        padding: 18px 12px;
    }
    
    .achievement-number {
        font-size: 1.4rem;
    }
    
        .product-card {
        flex: 0 0 250px;
        width: 250px;
    }

    .blog-card {
        flex: 0 0 calc((100vw - 80px) / 2);
        min-width: 200px;
        max-width: 280px;
    }
    
    .blog-card-image {
        height: 140px;
    }
    
    .blog-section-title {
        font-size: 1.6rem;
    }
    
    .blog-section-description {
        font-size: 0.9rem;
    }
    
    .certifications-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .certification-item {
        padding: 20px;
    }

    /* Blog Article Template Mobile Small */
    .article-meta {
        gap: 15px;
    }

    .article-stats {
        font-size: 0.85rem;
    }

    .featured-image-wrapper {
        margin-bottom: 20px !important;
    }

    .featured-image {
        height: 200px;
    }

    .article-text h2 {
        font-size: 1.4rem;
    }

    .article-highlight {
        padding: 20px 15px;
    }

    .sidebar-widget {
        padding: 20px 15px;
    }

    .comment-form-wrapper {
        padding: 20px 15px;
    }
}

/* Blog Hero Fixed */
.blog-hero-fixed {
    padding: 60px 0;
    background: linear-gradient(135deg, #023e73 0%, #034a8c 100%);
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 0;
    display: block;
    width: 100%;
}

.blog-hero-content-fixed h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-hero-content-fixed p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
}

/* Blog Featured Article Integrated */
.blog-featured-integrated {
    padding: 50px 0;
    background: white;
}

.featured-article-card-flow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.featured-article-image-flow {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.featured-article-image-flow img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-article-card-flow:hover .featured-article-image-flow img {
    transform: scale(1.03);
}

.featured-article-content-flow {
    padding: 0;
}

.featured-badge-flow {
    display: inline-block;
    background: #023e73;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.featured-article-content-flow h2 {
    font-size: 28px;
    font-weight: 700;
    color: #023e73;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-article-content-flow p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-meta-flow {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #888;
}

.featured-meta-flow .author {
    font-weight: 600;
    color: #023e73;
}

.featured-read-btn-flow {
    background: #023e73;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
}

.featured-read-btn-flow:hover {
    background: #034a8c;
    transform: translateY(-2px);
}

/* Blog Grid Integrated */
.blog-grid-integrated {
    padding: 60px 0;
    background: #f8f9fa;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #023e73;
    margin: 0;
}

.category-filters-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.category-filters-inline .filter-btn {
    background: white;
    border: 2px solid #e8ecef;
    color: #666;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-filters-inline .filter-btn:hover {
    border-color: #023e73;
    color: #023e73;
}

.category-filters-inline .filter-btn.active {
    background: #023e73;
    border-color: #023e73;
    color: white;
}

/* Blog Grid New Design */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    gap: 32px;
    margin-top: 0;
}

.blog-card-clean {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.blog-card-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Featured blog card */
.blog-card-featured {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(2, 62, 115, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 340px;
    display: flex;
    flex-direction: column;
    border: none;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.blog-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(2, 62, 115, 0.25);
}

.featured-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #023e73, #034a8c);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-image-clean {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

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

.blog-card-clean:hover .blog-card-image-clean img {
    transform: scale(1.03);
}

.blog-card-content-clean {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.blog-card-content-clean h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #023e73;
    line-height: 1.3;
    margin: 0 0 8px 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-content-clean p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: auto;
    border-top: none;
    padding-top: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-date {
    font-weight: 500;
}

.card-read-time {
    color: #565d6b;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero-fixed {
        padding: 40px 0;
    }
    
    .blog-hero-content-fixed h1 {
        font-size: 36px;
    }
    
    .blog-hero-content-fixed p {
        font-size: 16px;
    }
    
    .blog-featured-integrated {
        padding: 40px 0;
    }
    
    .featured-article-card-flow {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .featured-article-image-flow img {
        height: 250px;
    }
    
    .featured-article-content-flow h2 {
        font-size: 24px;
    }
    
    .featured-meta-flow {
        flex-direction: column;
        gap: 8px;
    }
    
    .blog-grid-integrated {
        padding: 50px 0;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .blog-header h2 {
        font-size: 28px;
    }
    
    .category-filters-inline {
        justify-content: center;
        width: 100%;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    

}

@media (max-width: 480px) {
    .blog-hero-content-fixed h1 {
        font-size: 32px;
    }
    
    .blog-header h2 {
        font-size: 24px;
    }
    
    .category-filters-inline .filter-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .featured-article-content-flow h2 {
        font-size: 20px;
    }
    

}

/* Recipes Clean Design */

/* Recipes Hero Clean */
.recipes-hero-clean {
    padding: 60px 0;
    background: linear-gradient(135deg, #023e73 0%, #034a8c 100%);
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 0;
    display: block;
    width: 100%;
}

.recipes-hero-content-clean h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.recipes-hero-content-clean p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
}

/* Recipes Featured */
.recipes-featured {
    padding: 50px 0;
    background: white;
}

.featured-recipe-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.featured-recipe-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.featured-recipe-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-recipe-card:hover .featured-recipe-image img {
    transform: scale(1.03);
}

.featured-recipe-content {
    padding: 0;
}

.featured-recipe-badge {
    display: inline-block;
    background: #023e73;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    width: fit-content;
}

.featured-recipe-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #023e73;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-recipe-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-recipe-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #888;
}

.featured-recipe-btn {
    background: #023e73;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.featured-recipe-btn:hover {
    background: #034a8c;
    transform: translateY(-2px);
}

/* Recipes Grid Integrated */
.recipes-grid-integrated {
    padding: 60px 0;
    background: #f8f9fa;
}

.recipes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.recipes-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #023e73;
    margin: 0;
}

.recipe-filters-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.recipe-filters-inline .filter-btn {
    background: white;
    border: 2px solid #e8ecef;
    color: #666;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.recipe-filters-inline .filter-btn:hover {
    border-color: #023e73;
    color: #023e73;
}

.recipe-filters-inline .filter-btn.active {
    background: #023e73;
    border-color: #023e73;
    color: white;
}

/* Recipe Cards Grid */
.recipe-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    gap: 24px;
    margin-top: 0;
}

.recipe-card-clean {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 280px;
    display: flex;
    flex-direction: column;
    border: none;
}

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

/* Featured recipe card */
.recipe-card-featured {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(2, 62, 115, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 280px;
    display: flex;
    flex-direction: column;
    border: none;
    position: relative;
}

.recipe-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(2, 62, 115, 0.25);
}

.recipe-image-clean {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

.recipe-card-clean:hover .recipe-image-clean img {
    transform: scale(1.03);
}

.recipe-content-clean {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recipe-content-clean h3 {
    font-size: 16px;
    font-weight: 700;
    color: #023e73;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-content-clean p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-meta-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888;
    margin-top: auto;
    border-top: 1px solid #f0f2f5;
    padding-top: 12px;
}

.recipe-meta-clean .prep-time {
    font-weight: 500;
}

.recipe-meta-clean .difficulty {
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 11px;
}

.recipe-meta-clean .difficulty.easy {
    background: #e8f5e8;
    color: #4caf50;
}

.recipe-meta-clean .difficulty.medium {
    background: #fff3e0;
    color: #ff9800;
}

/* Pro Tips Clean */
.pro-tips-clean {
    padding: 50px 0;
    background: white;
}

.pro-tips-clean h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #023e73;
    margin-bottom: 40px;
}

.tips-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 350px));
    gap: 30px;
}

.tip-card-clean {
    background: #f8f9fa;
    padding: 30px 24px;
    text-align: center;
}

.tip-card-clean h3 {
    font-size: 18px;
    font-weight: 700;
    color: #023e73;
    margin-bottom: 12px;
}

.tip-card-clean p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive for Recipes */
@media (max-width: 768px) {
    .recipes-hero-clean {
        padding: 40px 0;
    }
    
    .recipes-hero-content-clean h1 {
        font-size: 36px;
    }
    
    .recipes-hero-content-clean p {
        font-size: 16px;
    }
    
    .recipes-featured {
        padding: 40px 0;
    }
    
    .featured-recipe-card {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
    }
    
    .featured-recipe-image img {
        height: 250px;
    }
    
    .featured-recipe-content h2 {
        font-size: 24px;
    }
    
    .recipes-grid-integrated {
        padding: 50px 0;
    }
    
    .recipes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .recipes-header h2 {
        font-size: 28px;
    }
    
    .recipe-filters-inline {
        justify-content: center;
        width: 100%;
    }
    
    .recipe-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recipe-card-clean {
        height: auto;
        min-height: 260px;
    }
    
    .recipe-image-clean {
        height: 140px;
    }
    
    .tips-grid-clean {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .recipes-hero-content-clean h1 {
        font-size: 32px;
    }
    
    .recipes-header h2 {
        font-size: 24px;
    }
    
    .recipe-filters-inline .filter-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .featured-recipe-content h2 {
        font-size: 20px;
    }
    
    .recipe-content-clean {
        padding: 16px;
    }
}

/* ===== UNIFIED PAGE DESIGN ===== */

/* Unified Page Hero */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #023e73 0%, #034a8c 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.page-hero::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 1000 100" fill="none"><path d="M0,50 Q250,10 500,50 T1000,50 V100 H0 Z" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat bottom center;
    background-size: cover;
}

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

.page-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

/* Unified Content Sections */
.content-section {
    padding: 60px 0;
    background: white;
    animation: fadeInUp 0.8s ease-out;
}

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

.content-section.alt-bg {
    background: #f8f9fb;
    border-bottom: 1px solid #e2e8f0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(2, 62, 115, 0.1);
    color: #023e73;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-header-minimal h2 {
    font-size: 36px;
    font-weight: 700;
    color: #023e73;
    margin: 0;
    line-height: 1.2;
}

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

.section-header-center h2 {
    font-size: 42px;
    font-weight: 300;
    color: #023e73;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header-with-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-header-with-filters h2 {
    font-size: 36px;
    font-weight: 700;
    color: #023e73;
    margin: 0;
}

/* Unified Featured Content Card */
.featured-content-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(2, 62, 115, 0.05);
}

.featured-image {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.featured-text h3 {
    font-size: 26px;
    font-weight: 700;
    color: #023e73;
    line-height: 1.3;
    margin-bottom: 16px;
}

.featured-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    font-size: 14px;
    flex-wrap: wrap;
}

.featured-meta span {
    background: #f1f3f5;
    color: #023e73;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.featured-meta .author {
    background: #023e73;
    color: white;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    background: #023e73;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 62, 115, 0.2);
}

.read-more-link:hover {
    background: #034a8c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 62, 115, 0.25);
}

/* Unified Inline Filters */
.inline-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.inline-filters .filter-btn {
    background: white;
    border: 2px solid #e8ecef;
    color: #666;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.inline-filters .filter-btn:hover {
    border-color: #023e73;
    color: #023e73;
    background: rgba(2, 62, 115, 0.05);
}

.inline-filters .filter-btn.active {
    background: #023e73;
    border-color: #023e73;
    color: white;
    box-shadow: 0 2px 8px rgba(2, 62, 115, 0.2);
}

/* Unified Content Grid */
/* REMOVED: Conflicting base content-grid definition - using organized responsive system at end of file */

/* Shop specific grid */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.collection-info {
    display: flex;
    align-items: center;
}

.collection-tagline {
    font-size: 16px;
    color: #666;
    font-style: italic;
    font-weight: 500;
}

/* Unified Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tip-card-clean {
    background: white;
    padding: 32px 28px;
    text-align: center;
    border: 1px solid rgba(2, 62, 115, 0.08);
    transition: all 0.3s ease;
}

.tip-card-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tip-card-clean h3 {
    font-size: 18px;
    font-weight: 700;
    color: #023e73;
    margin-bottom: 12px;
}

.tip-card-clean p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero-content h1 {
        font-size: 40px;
    }
    
    .page-hero-content p {
        font-size: 18px;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .product-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .section-header-minimal,
    .section-header-center {
        margin-bottom: 40px;
    }
    
    .section-header-minimal h2,
    .section-header-center h2,
    .section-header-with-filters h2 {
        font-size: 28px;
    }
    
    .featured-content-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 24px;
        margin: 0 16px;
    }
    
    .featured-image img {
        height: 240px;
    }
    
    .featured-text h3 {
        font-size: 22px;
    }
    
    .featured-meta {
        gap: 12px;
    }
    
    .section-header-with-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .inline-filters {
        justify-content: center;
        width: 100%;
    }
    
    
    .shop-products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 30px;
    }
    
    /* Responsive for 3 products - shop-products-grid only */
    @media (min-width: 600px) and (max-width: 767px) {
        .shop-products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }
    
    @media (min-width: 900px) {
        .shop-products-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 36px;
    }
    
    .page-hero-content p {
        font-size: 16px;
    }
    
    .section-header-minimal h2,
    .section-header-center h2,
    .section-header-with-filters h2 {
        font-size: 24px;
    }
    
    .product-container {
        gap: 16px;
        padding: 0 16px;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* What's the Craic with Alconot section mobile responsive */
    .alconot-craic-section {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
        padding: 40px 20px !important;
        margin: 0 !important;
        max-width: 100%;
    }
    
    .alconot-content {
        order: 1;
        width: 100%;
    }
    
    .alconot-content h2 {
        font-size: 2rem !important;
        text-align: center;
        margin-bottom: 20px;
        font-weight: 600;
        color: #023e73;
        line-height: 1.3;
    }
    
    .alconot-description {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
        text-align: center;
        color: #64748b;
        line-height: 1.6;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .alconot-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        margin-bottom: 30px !important;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-item {
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 14px 18px;
        border-radius: 10px;
        border: 1px solid rgba(2, 62, 115, 0.15);
        min-height: 50px;
    }
    
    .feature-text {
        font-size: 0.95rem;
        font-weight: 600;
        color: #023e73;
    }
    
    .awards-row {
        display: flex !important;
        justify-content: center !important;
        gap: 24px !important;
        margin-top: 30px !important;
        padding: 0 !important;
        flex-wrap: wrap;
    }
    
    .awards-row .award-item {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .awards-row .award-item img {
        height: 55px !important;
        width: auto;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }
    
    .award-year {
        display: block;
        font-size: 0.8rem;
        color: #64748b;
        margin-top: 6px;
        font-weight: 500;
    }
    
    .alconot-image {
        order: 2;
        max-height: 350px !important;
        margin-top: 0 !important;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .alconot-image img {
        height: 350px !important;
        width: 100%;
        object-fit: cover;
        display: block;
    }
    
    
    .featured-content-card {
        padding: 24px 20px;
        margin: 0 12px;
    }
    
    .featured-text h3 {
        font-size: 20px;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .inline-filters .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .shop-products-grid {
        margin-top: 20px;
    }
}

/* Article category badges */
.article-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.article-category-badge.sustainability {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.article-category-badge.innovation {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.article-category-badge.industry {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

/* Enhanced Responsive Design for Product Detail Page */

/* Fix carousel overflow issues */
.carousel-container {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

body {
    overflow-x: hidden;
}



/* Fix alconot-craic-section responsiveness (846px-480px) */
@media (max-width: 846px) and (min-width: 481px) {
    .alconot-craic-section {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 30px 25px !important;
        text-align: center !important;
    }

    .alconot-content {
        order: 1;
    }

    .alconot-image {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .alconot-content h2 {
        font-size: 2rem !important;
        margin-bottom: 18px !important;
    }

    .alconot-description {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .alconot-features {
        gap: 12px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .feature-box {
        padding: 6px 12px !important;
        font-size: 0.9rem !important;
    }

    .awards-row {
        justify-content: center !important;
        gap: 20px !important;
        flex-wrap: wrap !important;
    }

    .awards-row .award-item {
        flex: 0 0 auto;
    }

    .awards-row .award-item img {
        height: 80px !important;
    }

    .award-year {
        font-size: 0.8rem !important;
    }
}

/* Breakpoint for alconot-craic-section issues at 1190px and below */
@media (max-width: 1190px) {
    .alconot-craic-section {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 40px 20px !important;
        text-align: center !important;
    }

    .alconot-content {
        order: 1;
    }

    .alconot-image {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .alconot-content h2 {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }

    .alconot-description {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .alconot-features {
        justify-content: center !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }

    .awards-row {
        justify-content: center !important;
        gap: 24px !important;
    }
}

/* Tablet Styles (1024px and below) */
@media (max-width: 1024px) and (min-width: 769px) {
    .blog-card {
        height: 320px;
    }
    
    .carousel-container .slide-content {
        padding: 40px 12% 80px;
    }
    
    .carousel-container .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .carousel-container .slide-content p {
        font-size: 1rem;
    }
    
    .product-overview {
        gap: 40px;
    }
    
    .section-header-unified {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .alconot-features {
        gap: 16px;
        justify-content: center;
    }
    
    .alconot-craic-section {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 0 20px;
    }

    .alconot-content h2 {
        font-size: 2.2rem;
    }

    .alconot-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .awards-row {
        gap: 28px;
    }

    .awards-row .award-item img {
        height: 90px;
    }
    
    .main-image {
        height: 360px;
    }
    
    .product-title {
        font-size: clamp(1.6rem, 3vw, 1.8rem);
    }
    
    .product-info {
        padding: 0;
    }
    
    .delivery-info {
        padding: 20px;
        background: #f8fafc;
        border-radius: 12px;
    }
    
    /* Breadcrumb adjustments */
    .breadcrumb {
        font-size: 0.9rem;
        margin-bottom: 25px !important;
    }
    
    /* Awards showcase */
    .awards-showcase {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .awards-showcase img {
        height: 60px !important;
    }
    
    /* Tab buttons */
    .tab-buttons {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    /* Related products */
    .shop-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Enhanced Tablet Responsiveness - Missing Sections */
    .product-container {
        gap: 20px;
        padding: 0 20px;
    }

    .product-card {
        flex: 0 0 300px;
        max-width: 300px;
    }

    .section-header-center {
        padding: 0 20px;
    }

    .section-header-center h2 {
        font-size: 2rem;
    }

    .reviews-container {
        gap: 20px;
        padding: 0 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .review-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .certification-badge {
        padding: 24px 20px;
    }

    .awards-chiron {
        padding: 16px 0;
    }

    .carousel-container .indicators {
        bottom: 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .contact-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }

    .menu-overlay.active {
        backdrop-filter: blur(8px);
    }

    /* Cart - Tablet Responsive */
    .cart-popup {
        width: 420px !important;
        right: -420px !important;
    }

    .cart-header {
        padding: 24px 20px 20px !important;
    }

    .cart-header h2 {
        font-size: 1rem !important;
        letter-spacing: 1.8px !important;
    }

    .cart-items {
        padding: 18px 20px !important;
    }

    .cart-item {
        padding: 14px 0 !important;
    }

    .cart-item-name {
        font-size: 0.82rem !important;
    }

    .cart-footer {
        padding: 18px 20px 24px !important;
    }

    .checkout-btn {
        padding: 15px 20px !important;
        font-size: 0.82rem !important;
        letter-spacing: 1.8px !important;
    }

    .checkout-btn:hover {
        letter-spacing: 2.2px !important;
    }
}




/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .shop-banner {
        height: 200px;
    }
    
    .shop-banner-title {
        font-size: 1.8rem;
    }
    
    .shop-banner-description {
        font-size: 0.9rem;
    }
    
    .shop-banner-content {
        padding: 0 20px;
    }
    
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content p {
        font-size: 1rem;
    }
    
    .company-story {
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .mission-values {
        padding: 60px 0;
    }
    
    .mission-values h2 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-card {
        padding: 30px;
        text-align: center;
    }
    
    .creator-section {
        padding: 60px 0;
    }
    
    .creator-info h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .creator-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .creator-details h3 {
        font-size: 1.4rem;
    }
    
    .creator-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .creator-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .creator-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .creator-achievements {
        justify-content: center;
        gap: 20px;
    }
    
    .achievement {
        min-width: 120px;
    }
    
    .achievement-number {
        font-size: 1.4rem;
    }
    
    .awards-section {
        padding: 60px 0;
    }
    
    .awards-section h2 {
        font-size: 1.8rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .award-item {
        text-align: center;
        padding: 30px;
    }
    
    .blog-hero {
        padding: 60px 0;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero-content p {
        font-size: 1rem;
    }
    
    .featured-article {
        padding: 60px 0;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-text h2 {
        font-size: 1.6rem;
    }
    
    .featured-text p {
        font-size: 1rem;
    }
    
    .blog-categories {
        padding: 60px 0;
    }
    
    .blog-categories h2 {
        font-size: 1.8rem;
    }
    
    .category-filters {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .blog-grid {
        padding: 60px 0;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h3 {
        font-size: 1.2rem;
    }
    
    .newsletter-section {
        padding: 60px 0;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .recipes-hero {
        padding: 60px 0;
    }
    
    .recipes-hero-content h1 {
        font-size: 2rem;
    }
    
    .recipes-hero-content p {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .recipe-categories {
        padding: 60px 0;
    }
    
    .categories-header h2 {
        font-size: 1.8rem;
    }
    
    .category-filters {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .recipes-grid {
        padding: 60px 0;
    }
    
    .recipe-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .recipe-content {
        padding: 20px;
    }
    
    .recipe-header h3 {
        font-size: 1.2rem;
    }
    
    .recipe-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .ingredients-tags {
        gap: 6px;
    }
    
    .ingredient-tag {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .pro-tips {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tip-card {
        padding: 30px;
        text-align: center;
    }
    
    .tip-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }
    
    .article-header-content {
        /* padding: 60px 0 40px; */
    }
    
    .article-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .author-info {
        order: 1;
    }
    
    .article-stats {
        order: 2;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .author-info {
        gap: 12px;
    }
    
    .article-stats {
        gap: 16px;
    }
    
    .featured-image-wrapper {
        /* padding: 0 20px; */
    }
    
    .featured-image {
        height: 250px;
        /* border-radius: 16px; */
    }
    
    .content-wrapper {
        padding: 20px 20px;
        max-width: none;
    }
    
    .article-text {
        max-width: none;
    }
    
    .lead-paragraph {
        font-size: 1.1rem;
    }
    
    .article-text h2 {
        font-size: 1.6rem;
    }
    
    .article-highlight {
        padding: 40px 0;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .author-bio {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .sidebar-widget {
        margin-bottom: 40px;
    }
    
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .related-article-image {
        height: 200px;
    }
    
    .comment-form-wrapper {
        padding: 0 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .comment {
        gap: 16px;
    }
    
    /* PRODUCT DETAIL PAGE MOBILE STYLES */
    .product-overview {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: none;
    }
    
    .product-gallery {
        position: static;
        order: 1;
    }
    
    .product-info {
        order: 2;
    }
    
    .main-image {
        height: 300px;
        max-width: 100%;
        margin: 0 auto;
    }
    
         .thumbnail-gallery {
         justify-content: center;
         max-width: 100%;
         margin: 20px auto 0;
         gap: 8px;
         padding: 0 20px;
     }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        text-align: center;
        margin-bottom: 8px;
    }
    
    .product-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        text-align: center;
        margin-bottom: 16px;
    }
    
    .awards-showcase {
        justify-content: center;
        gap: 8px;
    }
    
    .awards-showcase img {
        height: 60px !important;
    }
    
    .price-section {
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .current-price {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
    }
    
    .original-price {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .product-options {
        margin-bottom: 20px;
    }
    
    .size-info,
    .quantity-section {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .quantity-selector {
        justify-content: center;
        max-width: 150px;
        margin: 0 auto;
    }
    
    .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .quantity-input {
        width: 60px;
        height: 40px;
        text-align: center;
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .add-to-cart-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .wishlist-icon-btn {
        width: 100% !important;
        height: 50px !important;
        justify-content: center;
    }
    
    .delivery-info {
        padding: 20px;
        border-radius: 12px;
        background: #f8fafc;
        margin-top: 20px;
    }
    
    .delivery-option {
        margin-bottom: 16px;
        text-align: center;
        gap: 12px;
    }
    
    .delivery-option svg {
        flex-shrink: 0;
    }
    
    .delivery-option div {
        text-align: left;
    }
    
    .tabs-container {
        margin-top: 30px;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 100px;
        text-align: center;
    }
    
    .tab-pane {
        padding: 20px;
    }
    
    .tab-pane h3 {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    
    .tab-pane h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .tab-pane p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .specs-table {
        font-size: 0.9rem;
    }
    
    .specs-table td {
        padding: 8px 12px;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ingredients-list li {
        font-size: 0.9rem;
    }
    
    .nutrition-table {
        font-size: 0.9rem;
    }
    
    .allergen-info h4 {
        font-size: 1.1rem;
    }
    
    .allergen-info p {
        font-size: 0.85rem;
    }
    
    /* Related products mobile */
    .shop-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 20px;
    }
    
    .product-card {
        border-radius: 0;
    }
    
    .product-image {
        aspect-ratio: 4 / 3;    
    }
    
    .product-details {
        padding: 12px 0 0 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }
    
    .product-name {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .product-quantity {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .product-price {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .add-to-cart-btn-card {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    /* Breadcrumb mobile */
    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 20px !important;
        margin-top: 15px !important;
        padding: 0 20px;
        text-align: center;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        display: inline-block;
        margin: 2px 4px;
    }
    
    /* Content section mobile */
    .content-section {
        padding: 40px 0;
    }
    
    /* Hero Carousel */
    .carousel-container {
        height: 50vh;
        min-height: 400px;
    }
    
         .carousel-container .slide-content {
         padding: 30px 8% 70px;
         text-align: center;
     }
    
    .carousel-container .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .carousel-container .slide-content p {
        font-size: 0.9rem;
    }
    
    .carousel-container .carousel-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    /* Product Section - Mobile Carousel */
    .product-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .section-header-unified {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 100%;
        padding: 0 20px;
    }

    .section-header-unified .section-description {
        text-align: left;
        padding: 0;
    }

    .alconot-features {
        gap: 16px;
        justify-content: center;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 10px);
        scroll-snap-align: start;
        margin: 0;
        min-width: 250px;
        max-width: 280px;
    }
    
    .product-details {
    }
    
    .product-image {
        margin-bottom: 8px;
    }
    
    .product-carousel-indicators {
        display: flex;
    }
    
    /* Blog Section */
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-section-title {
        font-size: 1.8rem;
    }
    
    .blog-section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
        .blog-carousel-container {
        padding: 0 30px;
    }

    .blog-carousel {
        gap: 20px;
    }

    .blog-card {
        flex: 0 0 calc((100vw - 100px) / 2);
        min-width: 250px;
        max-width: 350px;
    }
    
    .blog-card-image {
        height: 160px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-content h3 {
        font-size: 1.1rem;
    }
    
    .blog-card-content p {
        font-size: 0.9rem;
    }
    
    .blog-nav {
        gap: 12px;
        margin-top: 25px;
    }
    
    .blog-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .blog-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .certifications-section {
        padding: 60px 0;
    }
    
    .certifications-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .certification-item {
        text-align: center;
        padding: 30px;
    }
    
    .certification-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .certification-title {
        font-size: 1.2rem;
    }
    
    .certification-text {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .cart-popup {
        width: 100% !important;
        height: 100% !important;
        border-radius: 0 !important;
        right: -100% !important;
    }
    
    .cart-popup.active {
        right: 0 !important;
    }

    /* Cart - Mobile Full Screen */
    .cart-popup {
        width: 100vw !important;
        right: -100vw !important;
        border-left: none !important;
        border-top: 1px solid rgba(2, 62, 115, 0.1) !important;
    }

    .cart-header {
        padding: 20px 20px 16px !important;
    }

    .cart-header h2 {
        font-size: 1rem !important;
        letter-spacing: 1.5px !important;
    }

    .cart-items {
        padding: 16px 20px !important;
    }

    .cart-item {
        padding: 12px 0 !important;
    }

    .cart-item-name {
        font-size: 0.8rem !important;
    }

    .cart-footer {
        padding: 16px 20px 24px !important;
    }

    .checkout-btn {
        padding: 14px 20px !important;
        font-size: 0.8rem !important;
        letter-spacing: 1.5px !important;
    }

    .checkout-btn:hover {
        letter-spacing: 2px !important;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .carousel-container {
        height: 40vh;
        min-height: 350px;
    }
    
    .carousel-container .slide-content {
        padding: 20px 8% 60px;
        text-align: center;
    }
    
    .carousel-container .slide-content h2 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .carousel-container .slide-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .section-header-unified {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        max-width: 100%;
        padding: 0 20px;
    }

    .section-header-unified .section-description {
        text-align: left;
        padding: 0;
        font-size: 0.85rem;
    }
    
    .creator-info h2 {
        font-size: 1.6rem;
    }
    
    .creator-card {
        padding: 20px;
        gap: 20px;
    }
    
    .creator-details h3 {
        font-size: 1.2rem;
    }
    
    .creator-title {
        font-size: 0.9rem;
    }
    
    .creator-title::after {
        width: 40px;
    }
    
    .creator-description {
        font-size: 0.9rem;
    }
    
    .achievement {
        min-width: 100px;
        padding: 12px;
    }
    
    .achievement-number {
        font-size: 1.2rem;
    }
    
        .product-card {
        flex: 0 0 220px;
        width: 220px;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .product-quantity {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .quick-add-btn {
        width: 30px;
        height: 30px;
        top: 6px;
        right: 6px;
    }
    
    .quick-add-btn img {
        width: 14px;
        height: 14px;
    }
    
    .blog-card {
        flex: 0 0 calc((100vw - 80px) / 1.2);
        min-width: 220px;
        max-width: 280px;
    }
    
    .blog-card-image {
        height: 140px;
    }
    
    .blog-section-title {
        font-size: 1.6rem;
    }
    
    .blog-section-description {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    .certifications-container {
        padding: 0 20px;
    }
    
    .certification-item {
        padding: 20px;
    }
    
    .certification-icon {
        width: 60px;
        height: 60px;
    }
    
    .certification-title {
        font-size: 1.1rem;
    }
    
    .certification-text {
        font-size: 0.9rem;
    }
    
    /* Product Detail Page - Small Mobile */
    .product-overview {
        gap: 20px;
    }
    
    .product-info {
    }
    
    .main-image {
        height: 280px;
    }
    
         .thumbnail-gallery {
         padding: 0 16px;
         gap: 6px;
         margin-top: 20px;
     }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .product-title {
        font-size: clamp(1.2rem, 6vw, 1.6rem);
        margin-bottom: 6px;
    }
    
    .product-subtitle {
        font-size: clamp(0.8rem, 4vw, 1rem);
        margin-bottom: 12px;
    }
    
    .awards-showcase {
        gap: 6px;
    }
    
    .awards-showcase img {
        height: 60px !important;
    }
    
    .price-section {
        gap: 8px;
        margin-bottom: 16px;
    }
    
    .current-price {
        font-size: clamp(1.2rem, 8vw, 1.6rem);
    }
    
    .original-price {
        font-size: clamp(0.8rem, 4vw, 1rem);
    }
    
    .discount {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .product-options {
        margin-bottom: 16px;
    }
    
    .size-info,
    .quantity-section {
        margin-bottom: 10px;
    }
    
    .size-info label,
    .quantity-section label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .quantity-selector {
        max-width: 130px;
    }
    
    .quantity-btn {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .quantity-input {
        width: 50px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .action-buttons {
        gap: 10px;
        max-width: 280px;
    }
    
    .add-to-cart-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .wishlist-icon-btn {
        height: 45px !important;
    }
    
    .delivery-info {
        padding: 16px;
        margin-top: 16px;
    }
    
    .delivery-option {
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .delivery-option svg {
        width: 18px;
        height: 18px;
    }
    
    .delivery-option strong {
        font-size: 0.9rem;
    }
    
    .delivery-option p {
        font-size: 0.8rem;
    }
    
    .tab-buttons {
        gap: 6px;
        margin-bottom: 16px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .tab-pane {
        padding: 16px;
    }
    
    .tab-pane h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .tab-pane h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .tab-pane p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .tab-pane ul {
        font-size: 0.9rem;
    }
    
    .specs-table {
        font-size: 0.8rem;
    }
    
    .specs-table td {
        padding: 6px 8px;
    }
    
    .ingredients-list li {
        font-size: 0.85rem;
    }
    
    .nutrition-table {
        font-size: 0.8rem;
    }
    
    .allergen-info h4 {
        font-size: 1rem;
    }
    
    .allergen-info p {
        font-size: 0.85rem;
    }
    
    /* Related products small mobile */
    .shop-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .product-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-details {
        padding: 16px 0 0 0;
        background: transparent;
        border: none;
        border-radius: 0;
    }
    
    .product-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .product-quantity {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .product-price {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .add-to-cart-btn-card {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Breadcrumb small mobile */
    .breadcrumb {
        font-size: 0.8rem;
        padding: 0 16px;
        line-height: 1.4;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        margin: 2px 3px;
    }
    
    /* Content section small mobile */
    .content-section {
        padding: 30px 0;
    }
    
    /* Article specific mobile styles */
    .article-meta {
        gap: 16px;
    }
    
    .article-stats {
        gap: 12px;
    }
    
    .featured-image-wrapper {
        /* padding: 0 16px; */
    }
    
    .featured-image {
        height: 220px;
        /* border-radius: 12px; */
    }
    
    .article-text h2 {
        font-size: 1.4rem;
    }
    
    .article-highlight {
        padding: 30px 0;
    }
    
    .sidebar-widget {
        margin-bottom: 30px;
    }
    
    .comment-form-wrapper {
        padding: 0 16px;
    }
}

/* What's the Craic with Alconot? Section */
.alconot-craic-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 0;
    animation: fadeIn 0.8s ease-out;
}

.alconot-content h2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: #023e73;
    margin: 0 0 20px 0;
    font-family: sans-serif;
    line-height: 1.2;
}

.alconot-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

.alconot-features {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    border: none;
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    color: #023e73;
    opacity: 0.9;
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
    color: #023e73;
    line-height: 1.5;
}

.awards-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 30px;
}

.awards-row .award-item {
    flex: 1;
    text-align: center;
}

.awards-row .award-item img {
    height: 100px;
    width: auto;
    margin-bottom: 8px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.awards-row .award-item:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

.award-year {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 8px;
}

.alconot-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    max-height: 400px;
}

.alconot-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.alconot-image:hover img {
    transform: scale(1.03);
}

.reviews-container {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 400px;
    background: transparent;
    padding: 32px 0;
    border-radius: 0;
    text-align: left;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
    position: relative;
    animation: slideInRight 0.8s ease-out;
    animation-fill-mode: both;
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-card .star {
    font-size: 1.1rem;
    color: #e2e8f0;
}

.review-card .star.filled {
    color: #023e73;
}

.review-text {
    font-family: sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    font-style: italic;
    margin: 0 0 24px 0;
    font-weight: 300;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #64748b;
    font-size: 0.9rem;
}

.reviewer-name {
    font-weight: 500;
    color: #023e73;
    font-family: sans-serif;
}

.review-count {
    background: #023e73;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Scroll-triggered Animation Overrides */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    animation: none;
}

.scroll-anim.in-view {
    opacity: 1;
    transform: none;
}

/* Element-specific animations when in view */
.product-card.in-view { animation: scaleIn 0.6s ease-out forwards; }
.blog-card-clean.in-view { animation: fadeInUp 0.8s ease-out forwards; }
.review-card.in-view { animation: slideInRight 0.8s ease-out forwards; }
.certification-item.in-view { animation: fadeInUp 0.8s ease-out forwards; }
.feature-item.in-view { animation: slideInLeft 0.6s ease-out forwards; }
.alconot-craic-section.in-view { animation: fadeIn 0.8s ease-out forwards; }

/* Inline link styles */
.inline-link {
    color: #023e73;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Recipe type badge */
.recipe-type {
    background: #023e73 !important;
    color: white !important;
}

/* Reviews section - navy blue theme */
.reviews-section {
    background: #023e73 !important;
    color: white;
    padding: 60px 0;
}

.reviews-section .container {
    padding: 0 24px;
}

.reviews-section .section-header-center {
    margin-bottom: 40px;
}

.reviews-section .section-header-center h2 {
    color: white;
}

.reviews-section .section-header-center p {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-section .reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.reviews-section .reviews-container::-webkit-scrollbar {
    display: none;
}

.reviews-section .review-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.reviews-section .review-card:last-child {
    border-bottom: none;
}

.reviews-section .review-card .review-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.reviews-section .review-card .reviewer-name {
    color: white;
    font-weight: 600;
}

.reviews-section .review-card .review-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.reviews-section .review-card .star {
    color: #fbbf24;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reviews-section .reviews-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 15px 0;
    }
    
    .reviews-section .reviews-container::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-section .review-card {
        min-width: 280px;
        max-width: 300px;
        padding: 20px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .reviews-section .reviews-container {
        gap: 12px;
        padding: 12px 0;
    }
    
    .reviews-section .review-card {
        min-width: 260px;
        max-width: 280px;
        padding: 18px;
    }
    
    .reviews-section .review-card .review-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

.reviews-section .review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

/* Minimalist alconot-craic section */


.alconot-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #023e73;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.alconot-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.alconot-features {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: block;
    padding: 0;
    border: none;
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-text {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #023e73;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 16px;
}

.feature-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: #023e73;
}

/* Feature box styling */
.feature-box {
    display: inline-block;
    border: 1px solid #023e73;
    border-radius: 4px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background-color: #023e73;
    color: white;
}

.feature-box:hover .feature-text {
    color: white;
}

.awards-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    margin-top: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.awards-row .award-item {
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    background: transparent;
    box-shadow: none;
}

.awards-row .award-item:hover {
    opacity: 1;
}

.awards-row .award-item img {
    height: 100px;
    width: auto;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    filter: grayscale(50%);
}

.awards-row .award-item:hover img {
    filter: grayscale(0%);
}

.award-year {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Minimalist certifications grid */
.certifications-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
}

.certification-badge {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    transition: opacity 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    flex: 1;
    max-width: 300px;
}

.certification-badge:hover {
    opacity: 0.7;
}

.certification-badge h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #023e73;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certification-badge p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight: 300;
}

/* Certification image styling */
.certification-image {
    margin-bottom: 16px;
}

.certification-image img {
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.certification-badge:hover .certification-image img {
    opacity: 1;
}

/* Staggered animations for certifications */
.certification-badge:nth-child(1) { animation-delay: 0.1s; }
.certification-badge:nth-child(2) { animation-delay: 0.2s; }
.certification-badge:nth-child(3) { animation-delay: 0.3s; }

/* Responsive certifications */
@media (max-width: 768px) {
    .certifications-grid {
        gap: 30px;
        padding: 30px 0;
        flex-direction: column;
        align-items: center;
    }
    
    .certification-badge h4 {
        font-size: 0.95rem;
    }
    
    .certification-badge p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .certifications-grid {
        gap: 20px;
        padding: 20px 0;
    }
    
    .certification-badge h4 {
        font-size: 0.9rem;
    }
}

/* Blog Banner */
.blog-banner {
    background: #f8f9fa;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    margin-top: 70px;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.blog-banner-content h1 {
    font-size: 42px;
    font-weight: 300;
    color: #023e73;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.blog-banner-content p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 auto;
    font-weight: 400;
    max-width: 480px;
    line-height: 1.5;
}



@media (max-width: 1024px) {
    .blog-banner {
        padding: 50px 0 35px;
        margin-top: 70px;
    }
    
    .blog-banner-content h1 {
        font-size: 38px;
    }
    
    .blog-banner-content p {
        font-size: 15px;
        max-width: 420px;
    }
    

}

@media (max-width: 768px) {
    .blog-banner {
        padding: 40px 0 30px;
        margin-top: 70px;
    }
    
    .blog-banner-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .blog-banner-content p {
        font-size: 14px;
        padding: 0 20px;
        max-width: 380px;
    }
    

}

@media (max-width: 480px) {
    .blog-banner {
        padding: 35px 0 25px;
        margin-top: 70px;
    }
    
    .blog-banner-content h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .blog-banner-content p {
        font-size: 13px;
        padding: 0 16px;
        max-width: 320px;
    }
    

}

/* Newsletter Form Styling */
.newsletter-content {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #023e73;
    box-shadow: 0 0 0 2px rgba(2, 62, 115, 0.1);
}

.newsletter-form button {
    padding: 12px 24px;
    background: #023e73;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #034a8c;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-form button {
        padding: 14px 24px;
    }
}

/* ============================================
   DEDICATED BLOG SECTION RESPONSIVE SYSTEM
   ============================================ */

/* Blog Page - Prevent horizontal scrolling */
body:has(.blog-banner) {
    overflow-x: hidden;
}

/* Blog Page - Prevent horizontal scrolling */
body:has(.blog-banner) .content-section {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

body:has(.blog-banner) .container {
    max-width: 100%;
    box-sizing: border-box;
}

/* Blog Cards - Original Minimal Design */
.blog-minimal-card {
    /* Uses product-card base styles but with minimal overrides */
}

.blog-minimal-card .product-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #333;
}

.blog-minimal-card .product-quantity {
    color: #888;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 400;
}

.blog-minimal-card .product-price {
    font-size: 14px;
    color: #023e73;
    font-weight: 500;
    margin: 0;
}

.blog-minimal-card:hover .product-price {
    color: #034a8c;
}

/* Recipe Cards - Inherit blog card behavior but keep recipe tag design */
.recipe-card {
    /* Inherits all blog-minimal-card responsive behavior from above rules */
}

.recipe-card .product-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    color: #023e73;
    line-height: 1.3;
}

.recipe-card .product-quantity {
    font-family: 'Inter', sans-serif;
    color: #64748b;
}

/* Keep the recipe tag styling */
.recipe-card .product-price.recipe-type {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Recipe tag colors - based on text content */
.recipe-card .product-price.recipe-type {
    background: #10b981; /* Default green for "Dry Recipe" */
    color: white;
}

.recipe-card[data-category="flavoured"] .product-price.recipe-type {
    background: #f59e0b; /* Orange for "Flavoured Recipe" */
    color: white;
}

/* ============================================
   BLOG BANNER RESPONSIVE SYSTEM
   ============================================ */

/* Ensure banner doesn't cause horizontal scroll */
.blog-banner .container {
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

@media (max-width: 1199px) {
    .blog-banner {
        padding: 50px 0 35px;
        margin-top: 70px;
    }
    
    .blog-banner-content h1 {
        font-size: 38px;
    }
    
    .blog-banner-content p {
        font-size: 15px;
        max-width: 420px;
    }
}

@media (max-width: 899px) {
    .blog-banner {
        padding: 40px 0 30px;
        margin-top: 70px;
    }
    
    .blog-banner-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .blog-banner-content p {
        font-size: 14px;
        max-width: 380px;
    }
}

@media (max-width: 599px) {
    .blog-banner {
        padding: 35px 0 25px;
        margin-top: 70px;
    }
    
    .blog-banner .container {
        padding: 0 16px;
    }
    
    .blog-banner-content h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .blog-banner-content p {
        font-size: 13px;
        max-width: 320px;
    }
}

/* REMOVED: Duplicate comprehensive responsive card system - consolidated in organized grid system */

/* =================================================================
   BREAKPOINT: 1200px and above (Large Desktop)
   ================================================================= */
/* REMOVED: Duplicate 1200px breakpoint - consolidated in organized grid system */

/* =================================================================
   BREAKPOINT: 900px - 1199px (Medium Desktop)
   ================================================================= */
/* REMOVED: Duplicate 900px-1199px breakpoint - consolidated in organized grid system */

/* =================================================================
   BREAKPOINT: 600px - 899px (Tablet)
   ================================================================= */
/* REMOVED: Old duplicate conflicting grid definitions - using clean organized system at end of file */

/* =================================================================
   SPECIALIZED CARD RESPONSIVENESS
   ================================================================= */

/* Review Cards */
@media (max-width: 768px) {
    .review-card {
        min-height: 200px;
        padding: 20px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .reviewer-name {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-height: 180px;
        padding: 16px;
    }
    
    .review-text {
        font-size: 13px;
    }
    
    .reviewer-name {
        font-size: 14px;
    }
}

/* Certification Cards */
@media (max-width: 768px) {
    .certification-item {
        min-height: 180px;
        padding: 20px;
    }
    
    .certification-title {
        font-size: 16px;
    }
    
    .certification-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .certification-item {
        min-height: 160px;
        padding: 16px;
    }
    
    .certification-title {
        font-size: 15px;
    }
    
    .certification-text {
        font-size: 12px;
    }
}

/* Recipe Cards */
@media (max-width: 768px) {
    .recipe-card {
        min-height: 400px;
    }
    
    .recipe-card .product-name {
        font-size: 16px;
    }
    
    .recipe-card .product-quantity {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .recipe-card {
        min-height: 360px;
    }
    
    .recipe-card .product-name {
        font-size: 15px;
    }
    
    .recipe-card .product-quantity {
        font-size: 12px;
    }
}

/* =================================================================
   CONTAINER AND SECTION RESPONSIVE ADJUSTMENTS
   ================================================================= */
@media (max-width: 768px) {
    .content-section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header-center h2,
    .section-header-minimal h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .section-header-center h2,
    .section-header-minimal h2 {
        font-size: 24px;
    }
}

/* =================================================================
   PERFORMANCE OPTIMIZATIONS
   ================================================================= */

/* Prevent layout shifts */
.product-card,
.blog-minimal-card,
.tip-card-clean,
.review-card,
.certification-item,
.recipe-card {
    box-sizing: border-box;
    overflow: hidden;
}

/* Optimize image loading */
.product-image img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Smooth transitions at all breakpoints */
@media (prefers-reduced-motion: no-preference) {
    .product-card,
    .blog-minimal-card,
    .tip-card-clean,
    .review-card,
    .certification-item,
    .recipe-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
}

/* =================================================================
   FALLBACK FOR VERY SMALL SCREENS
   ================================================================= */
@media (max-width: 280px) {
    .content-grid,
    .shop-products-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-card,
    .blog-minimal-card,
    .recipe-card,
    .tip-card-clean {
        min-height: auto;
    }
    
    .product-name,
    .blog-minimal-card .product-name,
    .recipe-card .product-name {
        font-size: 0.8rem;
    }
    
    .product-quantity,
    .blog-minimal-card .product-quantity,
    .recipe-card .product-quantity {
        font-size: 0.65rem;
    }
    
    .product-price,
    .blog-minimal-card .product-price,
    .recipe-card .product-price {
        font-size: 0.85rem;
    }
}

/* =================================================================
   BREAKPOINT: 1000px - 1199px (Critical 1024px Fix)
   ================================================================= */
/* REMOVED: Duplicate 1000px-1199px breakpoint - consolidated in organized grid system */

/* =================================================================
   BREAKPOINT: 900px - 999px (Medium Desktop)
   ================================================================= */
@media (min-width: 900px) and (max-width: 999px) {
    .shop-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    .tips-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    
    /* Card Scaling */
    .product-card {
        min-height: 380px;
    }
    
    .product-image {
        aspect-ratio: 4 / 3;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-quantity {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .blog-minimal-card .product-name,
    .recipe-card .product-name {
        font-size: 1rem;
    }
    
    .blog-minimal-card .product-quantity,
    .recipe-card .product-quantity {
        font-size: 0.85rem;
    }
    
    .blog-minimal-card .product-price,
    .recipe-card .product-price {
        font-size: 0.95rem;
    }
    
    .tip-card-clean {
        padding: 32px 28px;
        min-height: 200px;
    }
    
    .tip-card-clean h3 {
        font-size: 18px;
    }
    
    .tip-card-clean p {
        font-size: 14px;
    }
}

/* =================================================================
   BASE GRID DEFINITIONS - SIMPLE AND PREDICTABLE
   ================================================================= */



/* Content grid uses CSS Grid for proper responsive behavior */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 28px;
}

/* Content grid responsive breakpoints */
@media (max-width: 900px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 599px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default 3-column layout */
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default 3-column layout */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CAROUSEL SYSTEM - ONLY FOR INDEX.HTML */
@media (max-width: 1024px) {
    /* Product containers - ONLY on index.html (home page) */
    body:has(.carousel-container) .product-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 30px;
        max-width: 100vw;
        cursor: grab;
        user-select: none;
        
        /* COMPLETELY HIDE ALL SCROLLBARS */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    /* Content grids - ONLY on index.html (home page) */
    body:has(.carousel-container) .content-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 30px;
        max-width: 100vw;
        margin: 0;
        cursor: grab;
        user-select: none;
        
        /* COMPLETELY HIDE ALL SCROLLBARS */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    body:has(.carousel-container) .product-container::-webkit-scrollbar,
    body:has(.carousel-container) .content-grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    body:has(.carousel-container) .product-container:active,
    body:has(.carousel-container) .content-grid:active {
        cursor: grabbing;
    }
    
    /* Universal card sizing for tablet - ONLY on index.html */
    body:has(.carousel-container) .product-card,
    body:has(.carousel-container) .blog-card-clean {
        flex: 0 0 300px;
        scroll-snap-align: start;
        min-width: 300px;
        max-width: 300px;
        box-sizing: border-box;
    }
}

/* MOBILE ADJUSTMENTS (≤768px) - ONLY on index.html */
@media (max-width: 768px) {
    body:has(.carousel-container) .product-container {
        gap: 16px;
        padding: 0 20px;
    }
    
    body:has(.carousel-container) .content-grid {
        gap: 16px;
        padding: 0 20px;
    }
    
    /* Cards maintain exact desktop design - no changes - ONLY on index.html */
    body:has(.carousel-container) .product-card,
    body:has(.carousel-container) .blog-card-clean {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
}

/* SMALL MOBILE (≤480px) - ONLY on index.html */
@media (max-width: 480px) {
    body:has(.carousel-container) .product-container {
        gap: 14px;
        padding: 0 16px;
    }
    
    body:has(.carousel-container) .content-grid {
        gap: 14px;
        padding: 0 16px;
    }
    
    body:has(.carousel-container) .product-card,
    body:has(.carousel-container) .blog-card-clean {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
}

/* ============================================
   SHOP.HTML CAROUSEL SYSTEM - Match Index.html
   ============================================ */

/* SHOP PAGE CAROUSEL SYSTEM (≤1024px) */
@media (max-width: 1024px) {
    /* Apply to shop.html - pages without .carousel-container */
    body:not(:has(.carousel-container)) .product-container {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 30px;
        margin: 0 20px;
        max-width: 100vw;
        cursor: grab;
        user-select: none;
        
        /* COMPLETELY HIDE ALL SCROLLBARS */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    body:not(:has(.carousel-container)) .product-container::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    body:not(:has(.carousel-container)) .product-container:active {
        cursor: grabbing;
    }
    
    /* Universal card sizing for tablet - shop.html */
    body:not(:has(.carousel-container)) .product-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
        min-width: 300px;
        max-width: 300px;
        box-sizing: border-box;
    }
}

/* MOBILE ADJUSTMENTS (≤768px) - shop.html */
@media (max-width: 768px) {
    body:not(:has(.carousel-container)) .product-container {
        gap: 16px;
        padding: 0 20px;
        margin: 0 20px;    }
    
    /* Cards maintain exact desktop design - no changes - shop.html */
    body:not(:has(.carousel-container)) .product-card {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
}

/* SMALL MOBILE (≤480px) - shop.html */
@media (max-width: 480px) {
    body:not(:has(.carousel-container)) .product-container {
        gap: 14px;
        padding: 0 16px;
    }
    
    body:not(:has(.carousel-container)) .product-card {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
}

/* MOUSE WHEEL HORIZONTAL SCROLLING - shop.html */
body:not(:has(.carousel-container)) .product-container {
    scroll-behavior: smooth;
}

/* Content-grid tablet layout for pages without .carousel-container (blog.html, recipes.html) */
@media (min-width: 769px) and (max-width: 1024px) {
    body:not(:has(.carousel-container)) .content-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 24px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 40px !important;
    }
    
    body:not(:has(.carousel-container)) .product-card,
    body:not(:has(.carousel-container)) .blog-card-clean,
    body:not(:has(.carousel-container)) .blog-minimal-card,
    body:not(:has(.carousel-container)) .recipe-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Content-grid carousel styles for pages without .carousel-container (blog.html, recipes.html) */
@media (max-width: 768px) {
    body:not(:has(.carousel-container)) .content-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 0 20px !important;
        scroll-behavior: smooth;
        cursor: grab;
    }
    
    body:not(:has(.carousel-container)) .content-grid::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    body:not(:has(.carousel-container)) .content-grid:active {
        cursor: grabbing;
    }
    
    body:not(:has(.carousel-container)) .product-card,
    body:not(:has(.carousel-container)) .blog-card-clean {
        flex: 0 0 280px;
        max-width: 280px;
        scroll-snap-align: start;
    }
}

/* Add smooth horizontal scroll with mouse wheel - shop.html */
@media (hover: hover) {
    body:not(:has(.carousel-container)) .product-container:hover {
        scroll-behavior: auto;
    }
    
    body:not(:has(.carousel-container)) .content-grid:hover {
        scroll-behavior: auto;
    }
}

/* MOUSE WHEEL HORIZONTAL SCROLLING - ONLY on index.html */
body:has(.carousel-container) .product-container {
    scroll-behavior: smooth;
}

body:has(.carousel-container) .content-grid {
    scroll-behavior: smooth;
}

/* Add smooth horizontal scroll with mouse wheel - ONLY on index.html */
@media (hover: hover) {
    body:has(.carousel-container) .product-container:hover {
        scroll-behavior: auto;
    }
    
    body:has(.carousel-container) .content-grid:hover {
        scroll-behavior: auto;
    }
}

/* RESPONSIVE GRID BREAKPOINTS - CLEAN AND SIMPLE */
/* Desktop Large (≥1200px) */
@media (min-width: 1200px) {
    .content-grid {
        gap: 32px;
    }
    
    .shop-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    
    .tips-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Mobile - Force single column below 600px */
@media (max-width: 599px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .shop-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Ultra small mobile */
@media (max-width: 320px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
    
    .shop-products-grid,
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
}

/* BLOG-SPECIFIC GRID OVERRIDES */
body:has(.blog-banner) .content-grid {
    margin-top: 0;
}

body:has(.blog-banner) .content-section {
    padding-top: 35px;
    padding-bottom: 60px;
}

body:has(.blog-banner) .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================================================
   END OF ORGANIZED GRID SYSTEM
   ================================================================= */

/* =================================================================
   AWARDS PAGE STYLES
   ================================================================= */

/* Featured Awards Showcase */
.featured-awards-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.featured-award-large {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    padding: 40px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    align-items: center;
}

.featured-award-large img {
    width: 100%;
    height: auto;
    max-width: 150px;
    margin: 0 auto;
}

.featured-award-content h3 {
    color: #023e73;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.award-category {
    color: #8B5CF6;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.award-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Award Cards */
.award-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.award-card .product-price {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

/* Recognition Stats */
.recognition-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(2, 62, 115, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(2, 62, 115, 0.1);
}

.stat-card h3 {
    color: #023e73;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card p {
    color: #64748b;
    font-weight: 500;
    font-size: 1rem;
}

/* Awards Meaning Grid */
.awards-meaning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 30px;
    margin-top: 40px;
}

.meaning-card {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.meaning-card h3 {
    color: #023e73;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.meaning-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Awards Page */
@media (max-width: 768px) {
    .featured-award-large {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }
    
    .featured-award-large img {
        max-width: 120px;
    }
    
    .featured-award-content h3 {
        font-size: 1.3rem;
    }
    
    .recognition-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-awards-showcase {
        gap: 30px;
    }
    
    .featured-award-large {
        padding: 25px 15px;
    }
    
    .featured-award-content h3 {
        font-size: 1.2rem;
    }
    
    .award-category {
        font-size: 0.8rem;
    }
    
    .award-description {
        font-size: 0.9rem;
    }
    
    .recognition-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
    }
    
    .awards-meaning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .meaning-card {
        padding: 25px 20px;
    }
}

/* =================================================================
   END OF AWARDS PAGE STYLES
   ================================================================= */

/* =================================================================
   CARD EXPANSION AND SCALING FIX
   ================================================================= */

/* Ensure cards expand to fill available grid space */
.product-card,
.blog-minimal-card,
.recipe-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure card images scale properly */
.product-image {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure content sections expand properly */
.product-details {
    width: 100%;
    min-width: 0;
    flex: 1;
    box-sizing: border-box;
}

/* =================================================================
   RESPONSIVE GRID BREAKPOINTS - FOR ALL OTHER PAGES
   ================================================================= */

/* =================================================================
   SHOP PAGE INTEGRATION - QUICK NAVIGATION & DESIGN SYSTEM
   ================================================================= */

/* Quick Navigation Buttons */
.quick-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-nav-buttons button {
    background: #023e73;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.quick-nav-buttons button:hover {
    background: #034a8b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 62, 115, 0.3);
}

.quick-nav-buttons button:active {
    transform: translateY(0);
}

/* Responsive quick navigation */
@media (max-width: 768px) {
    .quick-nav-buttons {
        gap: 16px;
        padding: 0 20px;
    }
    
    .quick-nav-buttons button {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .quick-nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .quick-nav-buttons button {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
}

/* Blog Banner for Shop Page */


/* Product Section Integration */
.product-section {
    padding: 60px 0;
}

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

.product-section .section-title {
    font-size: 2.5rem;
    color: #023e73;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

.product-section .section-description {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Responsive product section */
@media (max-width: 768px) {
    .product-section {
        padding: 40px 0;
    }
    
    .product-section .section-header-unified {
        margin-bottom: 30px;
    }
    
    .product-section .section-title {
        font-size: 2rem;
    }
    
    .product-section .section-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .zero-product-card .product-name {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .product-section .section-title {
        font-size: 1.8rem;
    }
    
    .product-section .section-description {
        font-size: 0.95rem;
    }
    
    .zero-product-card .product-name {
        font-size: 0.9rem !important;
    }
}

/* =================================================================
   END OF SHOP PAGE INTEGRATION
   ================================================================= */
   .tab-btn {
    background: transparent;
    color: #023e73;
    border: 2px solid #023e73;
    padding: 10px 22px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #023e73 !important;
    color: white !important;
    border: 2px solid #023e73 !important;
    padding: 12px 24px !important;
}

.tab-btn:hover:not(.active) {
    background: #f8fafc;
}