/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--warm-white);
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
    /* Company Identity Colors */
    --green: #4CAF50;
    --yellow: #FFC107;

    /* Warm Background Colors */
    --warm-white: #FEFEFE;
    --cream: #FDF6E3;
    --warm-gray: #F8F6F0;
    --soft-cream: #FAF9F5;

    /* Text Colors */
    --soft-text: #6B7280;
    --dark-text: #374151;
    --warm-text: #5D5D5D;

    /* Accent Colors */
    --mint: var(--green);
    --coral: var(--yellow);
    --peach: #FFE4B5;

    /* Utility Colors */
    --white: #FFFFFF;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-gray {
    background: var(--soft-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Center all section content by default */
.section {
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--soft-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Enhanced navigation transitions */
body {
    transition: opacity 0.3s ease;
}

/* Page transition effects */
.page-transition {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation for content */
.loading-content {
    opacity: 1;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Standardized navigation link styles for all pages */
.nav-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
    background: none !important;
    border: none !important;
    color: var(--dark-text) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo container - no borders */
.logo {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Standardized logo image for all pages */
.logo-image {
    height: 65px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 55px;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
        max-width: 220px;
    }
}

/* Legacy logo text styles (kept for compatibility) */
.logo-text {
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: var(--dark-text) !important;
}

.logo-mint {
    color: var(--mint);
}

.logo-coral {
    color: var(--coral);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--soft-text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--mint);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--mint);
}

.nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.nav-icons>* {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icons .cart-icon {
    align-self: center;
}

.nav-icon {
    width: 36px;
    height: 36px;
    color: var(--soft-text);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon:hover {
    color: var(--mint);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--coral);
    color: white;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

/* ===== SOCIAL MEDIA FLOAT ===== */
.social-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-float,
.instagram-float,
.tiktok-float {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn,
.instagram-btn,
.tiktok-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Enhanced touch interaction */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    /* Improved accessibility */
    outline: none;
    position: relative;
}

/* Focus states for accessibility */
.whatsapp-btn:focus,
.instagram-btn:focus,
.tiktok-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Active states for better mobile feedback */
.whatsapp-btn:active,
.instagram-btn:active,
.tiktok-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8b0a6b 100%);
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tiktok-btn {
    background: #000000;
}

.tiktok-btn:hover {
    background: #ff0050;
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn i,
.instagram-btn i,
.tiktok-btn i,
.tiktok-btn .tiktok-icon {
    width: 24px;
    height: 24px;
}

.tiktok-icon {
    fill: white;
}

/* Tooltip styles for social media buttons */
.whatsapp-float,
.instagram-float,
.tiktok-float {
    position: relative;
    /* Add subtle entrance animation */
    animation: socialButtonSlideIn 0.6s ease-out;
}

/* Stagger the animation for each button */
.whatsapp-float {
    animation-delay: 0.1s;
}

.instagram-float {
    animation-delay: 0.2s;
}

.tiktok-float {
    animation-delay: 0.3s;
}

@keyframes socialButtonSlideIn {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.whatsapp-btn::before,
.instagram-btn::before,
.tiktok-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover::before,
.instagram-btn:hover::before,
.tiktok-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Enhanced responsive design for social media buttons */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .social-float {
        bottom: 2.5rem;
        right: 2.5rem;
        gap: 1.2rem;
    }

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        width: 65px;
        height: 65px;
    }

    .whatsapp-btn i,
    .instagram-btn i,
    .tiktok-btn i,
    .tiktok-btn .tiktok-icon {
        width: 26px;
        height: 26px;
    }

    .whatsapp-btn::before,
    .instagram-btn::before,
    .tiktok-btn::before {
        font-size: 13px;
        padding: 10px 14px;
        right: 75px;
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .social-float {
        bottom: 2rem;
        right: 2rem;
        gap: 1rem;
    }

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        width: 60px;
        height: 60px;
    }

    .whatsapp-btn i,
    .instagram-btn i,
    .tiktok-btn i,
    .tiktok-btn .tiktok-icon {
        width: 24px;
        height: 24px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .social-float {
        bottom: 1.8rem;
        right: 1.8rem;
        gap: 0.9rem;
    }

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        width: 55px;
        height: 55px;
    }

    .whatsapp-btn i,
    .instagram-btn i,
    .tiktok-btn i,
    .tiktok-btn .tiktok-icon {
        width: 22px;
        height: 22px;
    }

    .whatsapp-btn::before,
    .instagram-btn::before,
    .tiktok-btn::before {
        font-size: 11px;
        padding: 7px 10px;
        right: 65px;
    }
}

/* Mobile Large (481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .social-float {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.8rem;
    }

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        width: 52px;
        height: 52px;
    }

    .whatsapp-btn i,
    .instagram-btn i,
    .tiktok-btn i,
    .tiktok-btn .tiktok-icon {
        width: 21px;
        height: 21px;
    }

    /* Hide tooltips on mobile */
    .whatsapp-btn::before,
    .instagram-btn::before,
    .tiktok-btn::before {
        display: none;
    }
}

/* Mobile Small (320px to 480px) */
@media (max-width: 480px) {
    .social-float {
        bottom: 1.2rem;
        right: 1.2rem;
        gap: 0.7rem;
    }

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        width: 48px;
        height: 48px;
    }

    .whatsapp-btn i,
    .instagram-btn i,
    .tiktok-btn i,
    .tiktok-btn .tiktok-icon {
        width: 19px;
        height: 19px;
    }

    /* Hide tooltips on mobile */
    .whatsapp-btn::before,
    .instagram-btn::before,
    .tiktok-btn::before {
        display: none;
    }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
    .social-float {
        bottom: 1rem;
        right: 1rem;
        gap: 0.6rem;
    }

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        width: 44px;
        height: 44px;
    }

    .whatsapp-btn i,
    .instagram-btn i,
    .tiktok-btn i,
    .tiktok-btn .tiktok-icon {
        width: 17px;
        height: 17px;
    }

    /* Hide tooltips on mobile */
    .whatsapp-btn::before,
    .instagram-btn::before,
    .tiktok-btn::before {
        display: none;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .social-float {
        bottom: 1rem;
        right: 1rem;
        gap: 0.6rem;
    }

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        width: 45px;
        height: 45px;
    }

    .whatsapp-btn i,
    .instagram-btn i,
    .tiktok-btn i,
    .tiktok-btn .tiktok-icon {
        width: 18px;
        height: 18px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.3);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .whatsapp-btn,
    .instagram-btn,
    .tiktok-btn {
        transition: none;
    }

    .whatsapp-float,
    .instagram-float,
    .tiktok-float {
        animation: none;
    }

    .whatsapp-btn:hover,
    .instagram-btn:hover,
    .tiktok-btn:hover {
        transform: none;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--warm-gray);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slider {
    width: 100%;
    position: relative;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    z-index: 2;
}

.hero-text {
    max-width: 500px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-mint {
    background: var(--green);
    color: white;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--soft-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-counts {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.count-badge {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 100px;
}

.count-number {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mint);
}

.count-label {
    display: block;
    font-size: 0.875rem;
    color: var(--soft-text);
    margin-top: 0.25rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Standardized button styles for all pages */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-coral {
    background: var(--coral);
    color: white;
}

.btn-coral:hover {
    background: #ff9ba3;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--dark-text);
    border: 2px solid var(--mint);
}

.btn-secondary:hover {
    background: var(--mint);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ===== TRUST INDICATORS ===== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon {
    margin-bottom: 1rem;
}

.trust-icon i {
    width: 48px;
    height: 48px;
}

.trust-number {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.trust-description {
    color: var(--soft-text);
}

/* ===== CONSULTATION SECTION ===== */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.consultation-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.consultation-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.consultation-icon {
    margin-bottom: 1rem;
}

.consultation-icon i {
    width: 32px;
    height: 32px;
    color: var(--yellow);
}

.consultation-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.consultation-description {
    color: var(--soft-text);
    line-height: 1.6;
}

/* ===== CATEGORIES SECTION ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 1.5rem;
}

.category-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.category-description {
    color: var(--soft-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    color: var(--green);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ===== PRODUCTS SECTION ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-discount {
    background: var(--coral);
    color: white;
}

.badge-featured {
    background: var(--yellow);
    color: #1F2937;
}

.product-content {
    padding: 1.5rem;
}

.product-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-feature {
    background: var(--cream);
    color: var(--warm-text);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-current {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
}

.price-original {
    font-size: 1rem;
    color: var(--soft-text);
    text-decoration: line-through;
}

.product-cta {
    width: 100%;
    padding: 0.75rem;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.product-card:hover .product-cta {
    opacity: 1;
    transform: translateY(0);
}

.product-cta:hover {
    background: #45a049;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    margin-bottom: 1rem;
}

.testimonial-avatar {
    display: none;
}

.testimonial-info h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--soft-text);
    font-size: 0.875rem;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-text {
    color: var(--soft-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonial-whatsapp {
    background: var(--cream);
    border-radius: 12px;
    padding: 1rem;
}

.whatsapp-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-icon {
    color: #25d366;
    width: 36px;
    height: 36px;
}

.whatsapp-message {
    color: var(--soft-text);
    font-size: 0.875rem;
    font-style: italic;
}

/* ===== LOCATIONS SECTION ===== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-header {
    margin-bottom: 1rem;
}

.location-icon {
    display: none;
}

.location-icon i {
    width: 24px;
    height: 24px;
    color: white;
}

.location-name {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
}

.location-address {
    color: var(--soft-text);
    margin-bottom: 1rem;
    text-align: center;
}

.location-info {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.location-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--soft-text);
    margin-bottom: 0.5rem;
}

.location-detail i {
    width: 16px;
    height: 16px;
}

.btn-mint {
    background: var(--green);
    color: white;
    width: 100%;
}

.btn-mint:hover {
    background: #45a049;
}

/* ===== ABOUT SECTION ===== */
.hero-about {
    padding-top: 120px !important;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-white) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--soft-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--mint);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--soft-text);
    font-size: 0.875rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, var(--green) 0%, var(--yellow) 100%);
    color: white;
    text-align: center;
}

.newsletter-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--warm-gray);
    color: var(--dark-text);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: var(--soft-text);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links button {
    background: none;
    border: none;
    color: var(--soft-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-links button:hover {
    color: var(--green);
}

.footer-contact {
    list-style: none;
    color: var(--soft-text);
}

.footer-contact li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, var(--mint) 0%, var(--green) 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    margin-top: 0;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero .hero-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
}

/* Ensure consistent spacing for about page sections */
.about-hero+.section {
    padding-top: 80px;
}

.company-story,
.our-mission,
.our-team,
.company-values,
.awards,
.about-cta {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge-white {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.story-timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 40px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 20px;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--coral);
}

.timeline-year {
    position: absolute;
    left: -30px;
    top: 0;
    background: var(--coral);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
}

.timeline-content h3 {
    color: var(--coral);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

.mission-grid,
.team-grid,
.values-grid,
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission-card,
.team-member,
.value-item,
.award-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.team-member:hover,
.value-item:hover,
.award-item:hover {
    transform: translateY(-5px);
}

.mission-icon,
.award-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--mint);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-role {
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.value-item h3 {
    color: var(--coral);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-item p {
    color: var(--gray);
    line-height: 1.6;
}

.about-cta {
    background: var(--light-gray);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-content p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ===== PLACEHOLDER IMAGE SYSTEM ===== */
.product-image img,
.category-image img {
    background: linear-gradient(45deg, var(--mint), var(--green));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.product-image img[src*="placeholder"] {
    background: linear-gradient(135deg, var(--coral), var(--yellow));
}

.category-image img[src*="placeholder"] {
    background: linear-gradient(45deg, var(--mint), var(--navy));
}

/* Fallback for broken images */
img {
    background: #f0f0f0;
    color: #666;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    position: relative;
}

img::before {
    content: "📷 Image Loading...";
    display: block;
    margin-top: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

img:broken::before {
    content: "📷 No Image";
}

/* Placeholder text overlay for product images */
.product-image {
    position: relative;
}

.product-image::after {
    content: attr(data-product-name);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Placeholder text overlay for category images */
.category-image {
    position: relative;
}

.category-image::after {
    content: attr(data-category-name);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== BLOG SYSTEM STYLES ===== */
.blog-hero {
    background: linear-gradient(135deg, var(--mint) 0%, var(--green) 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.blog-search {
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    gap: 15px;
}

.blog-search input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.hero-cta {
    margin-top: 30px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.category-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-count {
    color: var(--mint);
    font-weight: 500;
    font-size: 14px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-category {
    color: var(--mint);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-excerpt {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray);
}

/* Category Hero */
.category-hero {
    background: linear-gradient(135deg, var(--mint) 0%, var(--green) 100%);
    padding: 100px 0 60px;
    color: white;
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.breadcrumbs span {
    margin: 0 10px;
    opacity: 0.6;
}

.category-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.category-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--coral) 0%, var(--yellow) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: var(--soft-text);
    margin: 20px 0;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--soft-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--mint);
}

.footer-links button {
    background: none;
    border: none;
    color: var(--soft-text);
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links button:hover {
    color: var(--mint);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 12px;
    color: var(--soft-text);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    text-align: center;
    color: var(--soft-text);
}

/* Mobile Responsiveness for Blog */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.2rem;
    }

    .blog-search {
        flex-direction: column;
        gap: 10px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        padding: 25px 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .category-hero h1 {
        font-size: 2rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .product-counts {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .product-counts {
        flex-direction: column;
        align-items: center;
    }

    .count-badge {
        min-width: 120px;
    }
}

/* ====
= GLOBAL FONT STANDARDIZATION ===== */
/* Ensure consistent fonts across all pages and components */

/* Navigation fonts - consistent across all pages */
.nav-link,
.navbar .nav-link,
.nav-menu .nav-link,
.sidebar-nav .nav-item {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
}

/* Logo fonts - consistent across all pages */
.logo-text,
.logo .logo-text,
.sidebar-header .logo-text {
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

/* Button fonts - consistent across all pages */
.btn,
.action-btn,
.nav-link.btn,
button.btn {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
}

/* Admin specific font overrides */
.admin-layout .nav-item,
.admin-sidebar .nav-item {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

/* Form elements - consistent fonts */
.form-input,
.form-select,
.form-textarea {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

/* Headings - consistent fonts */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.page-title,
.dashboard-title,
.posts-title,
.products-title,
.form-title {
    font-family: 'Nunito', sans-serif !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

/* Body text - consistent fonts */
p,
span,
div,
.section-subtitle,
.page-subtitle,
.form-subtitle {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6 !important;
}

/* Footer fonts */
.footer-links a,
.footer-links button,
.footer-contact li {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.875rem !important;
    line-height: 1.4 !important;
}

/* ===
== FINAL FONT OVERRIDES ===== */
/* High priority overrides to ensure absolute consistency */

/* Navigation - highest priority */
nav .nav-link,
.navbar .nav-link,
.nav-menu button,
.sidebar-nav a {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
}

/* Logo - highest priority */
.logo span,
.logo-text {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

/* Buttons - highest priority */
button,
.btn,
a.btn {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
}

/* Ensure mobile menu uses same fonts */
@media (max-width: 768px) {
    .nav-menu.mobile-open .nav-link {
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 0.9rem !important;
    }
}

/* ==
=== TENTANG PAGE NAVIGATION CONSISTENCY ===== */
/* Ensure tentang.html has identical navigation spacing as blog.html */

/* Navigation container consistency */
.tentang-page .navbar,
.blog-page .navbar {
    padding: 0;
}

.tentang-page .nav-content,
.blog-page .nav-content {
    padding: 1rem 0;
}

.tentang-page .nav-menu,
.blog-page .nav-menu {
    gap: 0.5rem;
}

.tentang-page .nav-icons,
.blog-page .nav-icons {
    gap: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero section consistency */
.tentang-page .about-hero,
.blog-page .blog-hero {
    margin-top: 0;
    padding-top: 120px;
}

/* Section spacing consistency */
.tentang-page .section,
.blog-page .section {
    padding: 80px 0;
}

/* Container consistency */
.tentang-page .container,
.blog-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== L
OGO UNDERLINE FIX ===== */
/* Remove underlines from Mom&Child logo completely */
.logo a,
.logo a:link,
.logo a:visited,
.logo a:hover,
.logo a:active,
.logo a:focus,
.navbar .logo a,
.navbar .logo a:link,
.navbar .logo a:visited,
.navbar .logo a:hover,
.navbar .logo a:active,
.navbar .logo a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    text-underline-offset: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
}

/* Ensure logo text spans don't inherit underlines */
.logo-text,
.logo-mint,
.logo-coral {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

/* Force remove underlines with highest specificity */
body .navbar .logo a,
body .logo a,
html body .navbar .logo a,
html body .logo a {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    text-underline-offset: none !important;
}

/* Additional browser-specific fixes */
a.logo-text,
a .logo-text,
.logo a .logo-text {
    text-decoration: none !important;
}

/* Webkit specific fixes */
@supports (-webkit-text-decoration: none) {

    .logo a,
    .navbar .logo a {
        text-decoration: none !important;
        text-decoration-line: none !important;
        -webkit-text-decoration: none !important;
        -webkit-text-decoration-line: none !important;
    }
}

/* Firefox specific fixes */
@-moz-document url-prefix() {

    .logo a,
    .navbar .logo a {
        text-decoration: none !important;
        text-decoration-line: none !important;
    }
}

/* ===== TENTANG PAGE LOGO FIX ===== */
/* Ensure tentang.html logo has no underlines */
body.tentang-page .navbar .logo a,
body.tentang-page .navbar .logo a:link,
body.tentang-page .navbar .logo a:visited,
body.tentang-page .navbar .logo a:hover,
body.tentang-page .navbar .logo a:active,
body.tentang-page .navbar .logo a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    text-underline-offset: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
}

/* Ensure navigation fonts match exactly between blog and tentang */
body.tentang-page .navbar .nav-link,
body.blog-page .navbar .nav-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    background: none !important;
    border: none !important;
    color: var(--dark-text) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

/* Ensure logo fonts match exactly between blog and tentang */
body.tentang-page .navbar .logo-text,
body.blog-page .navbar .logo-text {
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: var(--dark-text) !important;
    text-decoration: none !important;
}

/* Keep logo colors consistent */
body.tentang-page .navbar .logo-mint,
body.blog-page .navbar .logo-mint {
    color: var(--mint) !important;
}

body.tentang-page .navbar .logo-coral,
body.blog-page .navbar .logo-coral {
    color: var(--coral) !important;
}

/*
 ===== TENTANG PAGE NAVIGATION MATCH BLOG ===== */
/* Make tentang.html navigation identical to blog.html navigation */

body.tentang-page .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

body.tentang-page .navbar .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 !important;
}

body.tentang-page .navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem !important;
}

body.tentang-page .navbar .nav-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    background: none !important;
    border: none !important;
    color: var(--dark-text) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
}

body.tentang-page .navbar .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

body.tentang-page .navbar .nav-link:hover::before {
    left: 100%;
}

body.tentang-page .navbar .nav-link:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

body.tentang-page .navbar .nav-link.active {
    color: var(--mint) !important;
    transform: scale(1.05) !important;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2) !important;
}

/* Logo styling - keep colors same as blog */
body.tentang-page .navbar .logo-text {
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
    color: var(--dark-text) !important;
    text-decoration: none !important;
}

/* Keep the original logo colors */
body.tentang-page .navbar .logo-mint {
    color: var(--mint) !important;
}

body.tentang-page .navbar .logo-coral {
    color: var(--coral) !important;
}

/* Remove underlines from logo in tentang page */
body.tentang-page .navbar .logo a,
body.tentang-page .navbar .logo a:link,
body.tentang-page .navbar .logo a:visited,
body.tentang-page .navbar .logo a:hover,
body.tentang-page .navbar .logo a:active,
body.tentang-page .navbar .logo a:focus {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
}

body.tentang-page .navbar .nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem !important;
}

body.tentang-page .navbar .nav-icon {
    width: 36px !important;
    height: 36px !important;
    color: var(--soft-text) !important;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 6px !important;
    border-radius: 8px !important;
}

body.tentang-page .navbar .nav-icon:hover {
    color: var(--mint) !important;
}

body.tentang-page .navbar .cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.tentang-page .navbar .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

body.tentang-page .navbar .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile responsive for tentang page */
@media (max-width: 768px) {
    body.tentang-page .navbar .nav-menu {
        display: none;
    }

    body.tentang-page .navbar .mobile-menu-btn {
        display: block;
    }

    body.tentang-page .navbar .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 0.5rem;
    }

    body.tentang-page .navbar .nav-menu.mobile-open .nav-link {
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 0.9rem !important;
        padding: 0.75rem 1rem !important;
        text-align: left;
        width: 100%;
    }
}

/* Ensure both pages have identical navigation spacing */
body.tentang-page .navbar .container,
body.blog-page .navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ensure both pages have identical hero section top margin */
body.tentang-page .about-hero,
body.blog-page .blog-hero {
    margin-top: 0;
    padding-top: 120px;
}

/* ===== NAVIGATION CONSISTENCY BETWEEN BLOG AND TENTANG ===== */
/* Ensure both pages have identical navigation appearance and behavior */

/* Force identical font rendering */
body.tentang-page .navbar .nav-link,
body.blog-page .navbar .nav-link {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Force identical hover states */
body.tentang-page .navbar .nav-link:hover,
body.blog-page .navbar .nav-link:hover {
    color: var(--dark-text) !important;
    background: rgba(76, 175, 80, 0.05) !important;
}

/* Force identical active states */
body.tentang-page .navbar .nav-link.active,
body.blog-page .navbar .nav-link.active {
    color: var(--mint) !important;
    background: rgba(76, 175, 80, 0.1) !important;
}

/* Force identical logo appearance */
body.tentang-page .navbar .logo,
body.blog-page .navbar .logo {
    display: flex;
    align-items: center;
}

/* Force identical navigation menu layout */
body.tentang-page .navbar .nav-menu,
body.blog-page .navbar .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Force identical icon styling */
body.tentang-page .navbar .nav-icons,
body.blog-page .navbar .nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
}

/* Ensure both pages have the same navbar height */
body.tentang-page .navbar,
body.blog-page .navbar {
    height: auto;
    min-height: 70px;
}

/* Ensure both pages have the same container max-width */
body.tentang-page .container,
body.blog-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Override any conflicting styles */
body.tentang-page .navbar *,
body.blog-page .navbar * {
    box-sizing: border-box;
}

/* Ensure smooth transitions are identical */
body.tentang-page .navbar .nav-link,
body.blog-page .navbar .nav-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.tentang-page .navbar .nav-icon,
body.blog-page .navbar .nav-icon {
    transition: color 0.3s ease !important;
}

/* ===== REFINED NAVIGATION STYLING ===== */
/* Clean, tidy navigation based on blog.html improvements */
/* Apply to all pages for consistent, refined appearance */

.navbar-refined {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-refined .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Refined Logo Styling */
.navbar-refined .logo {
    display: flex;
    align-items: center;
}

.navbar-refined .logo-text {
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    color: var(--dark-text) !important;
    text-decoration: none !important;
}

.navbar-refined .logo-mint {
    color: var(--mint) !important;
}

.navbar-refined .logo-coral {
    color: var(--coral) !important;
}

/* Remove logo underlines completely */
.navbar-refined .logo a,
.navbar-refined .logo a:hover,
.navbar-refined .logo a:focus,
.navbar-refined .logo a:active {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Refined Navigation Menu */
.navbar-refined .nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Refined Navigation Links */
.navbar-refined .nav-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.005em !important;
    padding: 0.65rem 1.1rem !important;
    border-radius: 7px !important;
    background: none !important;
    border: none !important;
    color: var(--dark-text) !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    margin: 0 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Refined Hover Effects */
.navbar-refined .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.08), transparent);
    transition: left 0.4s ease;
}

.navbar-refined .nav-link:hover::before {
    left: 100%;
}

.navbar-refined .nav-link:hover {
    transform: translateY(-0.5px) !important;
    background: rgba(76, 175, 80, 0.04) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    color: var(--dark-text) !important;
}

.navbar-refined .nav-link.active {
    color: var(--mint) !important;
    background: rgba(76, 175, 80, 0.08) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 1px 6px rgba(76, 175, 80, 0.15) !important;
}

/* Refined Navigation Icons */
.navbar-refined .nav-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
}

.navbar-refined .nav-icon {
    width: 36px !important;
    height: 36px !important;
    color: var(--soft-text) !important;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.navbar-refined .nav-icon:hover {
    color: var(--mint) !important;
    background: rgba(76, 175, 80, 0.06);
    transform: scale(1.05);
}

/* Refined Cart Icon */
.navbar-refined .cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-refined .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Refined Mobile Menu */
.navbar-refined .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem;
    border-radius: 8px;
    transition: background 0.25s ease;
}

.navbar-refined .mobile-menu-btn:hover {
    background: rgba(76, 175, 80, 0.06);
}

.navbar-refined .mobile-menu-btn i {
    width: 36px;
    height: 36px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-refined .nav-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-refined .nav-menu {
        display: none;
    }

    .navbar-refined .mobile-menu-btn {
        display: block;
    }

    .navbar-refined .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(254, 254, 254, 0.98);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        gap: 0.3rem;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .navbar-refined .nav-menu.mobile-open .nav-link {
        font-size: 0.9rem !important;
        padding: 0.8rem 1rem !important;
        text-align: left;
        width: 100%;
        justify-content: flex-start;
    }
}

/* Refined Navigation for Specific Pages */
body.tentang-page .navbar,
body.blog-page .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body.tentang-page .navbar .nav-content,
body.blog-page .navbar .nav-content {
    padding: 0.75rem 0 !important;
}

body.tentang-page .navbar .nav-menu,
body.blog-page .navbar .nav-menu {
    gap: 0.25rem !important;
}

body.tentang-page .navbar .nav-link,
body.blog-page .navbar .nav-link {
    font-size: 0.85rem !important;
    padding: 0.65rem 1.1rem !important;
    border-radius: 7px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.tentang-page .navbar .logo-text,
body.blog-page .navbar .logo-text {
    font-size: 1.35rem !important;
}

body.tentang-page .navbar .nav-icon,
body.blog-page .navbar .nav-icon {
    width: 36px !important;
    height: 36px !important;
    padding: 6px !important;
    border-radius: 8px !important;
}

/*
 ===== UNIVERSAL TIDY NAVIGATION ===== */
/* Apply this class to any page for the cleanest navigation appearance */

.tidy-nav .navbar {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
}

.tidy-nav .navbar .nav-content {
    padding: 0.9rem 0 !important;
    max-width: 1200px;
    margin: 0 auto;
}

.tidy-nav .navbar .nav-menu {
    gap: 0.4rem !important;
}

.tidy-nav .navbar .nav-link {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.005em !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 7px !important;
    margin: 0 0.15rem !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.tidy-nav .navbar .nav-link:hover {
    background: rgba(76, 175, 80, 0.05) !important;
    transform: translateY(-0.5px) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06) !important;
}

.tidy-nav .navbar .nav-link.active {
    background: rgba(76, 175, 80, 0.1) !important;
    color: var(--mint) !important;
    box-shadow: 0 1px 4px rgba(76, 175, 80, 0.2) !important;
}

.tidy-nav .navbar .logo-text {
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.005em !important;
}

.tidy-nav .navbar .nav-icons {
    gap: 1.4rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tidy-nav .navbar .nav-icon {
    width: 36px !important;
    height: 36px !important;
    padding: 0.6rem !important;
    border-radius: 10px !important;
}

.tidy-nav .navbar .cart-badge {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.8rem !important;
    top: -8px !important;
    right: -8px !important;
}

/* Enhanced visual hierarchy */
.tidy-nav .navbar .container {
    padding: 0 1.5rem;
}

/* Smooth scroll offset for fixed navbar */
.tidy-nav {
    scroll-padding-top: 80px;
}

/* Perfect spacing for hero sections */
.tidy-nav .about-hero,
.tidy-nav .blog-hero {
    padding-top: 110px !important;
}

/* Mobile refinements */
@media (max-width: 768px) {
    .tidy-nav .navbar .nav-content {
        padding: 0.75rem 0 !important;
    }

    .tidy-nav .navbar .logo-text {
        font-size: 1.35rem !important;
    }

    .tidy-nav .navbar .nav-link {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.1rem !important;
    }

    .tidy-nav .navbar .container {
        padding: 0 1rem;
    }
}