*, *::before, *::after {
    box-sizing: border-box;
}

/* --- 1. CORE DESIGN SYSTEM --- */
:root {
    --bg: #ffffff;
    --text: #000000;
    --text-dim: #999999;
    --border-light: #f0f0f0;
    --border-bold: #000000;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	
	    --off-white: #F8F9F3;
    --olive-green: #556B2F;
    --olive-muted: #3D4D22;
    --text-dark: #1A1C18;
	
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    /* Fixes the 'jumping' height on mobile Chrome/Safari */
    height: -webkit-fill-available; 
}

body {
    /* Switch to block to let the document flow naturally */
    display: block; 
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    
    background-image: url('../img/background.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Stops horizontal 'stretching' */
}

main {
    /* REMOVE flex: 1 0 auto - it's causing the height calculation error */
    display: block; 
    width: 100%;
    min-height: 70vh; /* Pushes footer down on short pages */
    padding-bottom: 120px; /* CRITICAL: The 'Safety Zone' for the footer */
    position: relative;
}


[x-cloak] { display: none !important; }

/* --- 2. NAVIGATION & HAMBURGER TO X --- */
@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px; /* Tighter padding for mobile */
        min-height: 50px;
    }
    
    .menu-text {
        display: none; /* Hide the word 'MENU' on very small phones to save space */
    }
    
    .logo img {
        height: 28px; /* Slightly smaller logo for mobile */
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    /* REDUCED PADDING: from 25px to 12px for a much slimmer bar */
    padding: 12px 5%; 
    box-shadow: 0 0 5px #556b2f;
    background: #F8F9F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 3000;
    transition: var(--transition);
    /* Set a min-height to ensure stability */
    min-height: 60px; 
}

.navbar--scrolled {
    padding: 20px 5%;
    background: #F8F9F3;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.navbar--hidden {
    transform: translateY(-100%);
}

/* Updated Logo Sizes for the Slim Navbar */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /* REDUCED LOGO: from 50px to 35px to fit the slim bar */
    height: 35px; 
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

.navbar--scrolled .logo img {
    /* SCROLLED LOGO: 28px height is very clean and professional */
    height: 28px; 
}

.logo:hover img {
    transform: scale(1.05); /* Subtle pop on hover */
}

.menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2005;
}

.menu-text {
    font-weight: 900;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 2px;
	z-index: 2500;
	color:#556b2f;
}

/* HAMBURGER BOX */
.hamburger {
    width: 24px;
    height: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	z-index: 2500;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #556b2f;
    transition: var(--transition);
}

/* X ANIMATION LOGIC */
/* .is-active is toggled on the button via Alpine.js */
.is-active .hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.is-active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.is-active .hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- 3. MENU OVERLAY & STABLE HOVER --- */
.menu-overlay {
    position: fixed;
    inset: 0;
	z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px) saturate(160%) brightness(105%) ;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0s ease, visibility 0.1s ease;
	-webkit-backdrop-filter: blur(10px); 
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.menu-links {
    list-style: none;
    text-align: center;
    width: 100%;
}

.menu-links li {
    margin: 15px 0;
}

.menu-links a {
    display: inline-block; /* Essential for centering */
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 950;
    font-style: italic;
    color: #556b2f;
    text-decoration: none;
    line-height: 0.9;
    transition: var(--transition);
    transform-origin: center;
}

/* HOVER WITHOUT SHIFTING LEFT */
.menu-links a:hover {
    transform: scale(1.1);
    color: #F8F9F3;
	text-shadow:1px 1px 10px #556b2f, 1px 1px 10px #556b2f;
	/*text-shadow: -1px -1px 0 #556b2f, 1px -1px 0 #556b2f, -1px 1px 0 #556b2f, 1px 1px 0 #556b2f;*/
}

/* --- FILTER CONTROLS --- */
@media (max-width: 768px) {
    .filter-controls {
        /* Tighten the gap so more buttons are visible */
        gap: 25px; 
        margin-bottom: 40px;
        padding-bottom: 15px;
        
        /* Enable momentum scrolling for iOS */
        -webkit-overflow-scrolling: touch; 
        
        /* Ensure the container doesn't cause page-width issues */
        width: 100%;
        box-sizing: border-box;
    }

    .filter-controls button {
        /* Scale down font for small screens */
        font-size: 0.95rem; 
        letter-spacing: 1px;
    }

    /* Ensure the underline isn't too thick on small text */
    .filter-controls button::after {
        height: 2px;
        bottom: -4px;
    }
}

.filter-controls {
    display: flex;
    /* Use a responsive gap: 50px on desktop, smaller on mobile */
    gap: 50px; 
    margin-bottom: 80px;
    padding: 0 5% 25px 5%; /* Balanced horizontal padding */
    
    /* THE "ALWAYS FIT" ENFORCEMENT */
    width: 100%;           /* Fit the parent container exactly */
    max-width: 100vw;      /* Never wider than the device screen */
    overflow-x: auto;      /* Allow internal swiping */
    overflow-y: hidden;    /* Prevent vertical 'wobble' */
    
    /* Modern Scroll behavior */
    scrollbar-width: none; 
    -webkit-overflow-scrolling: touch; /* Smooth swipe on iOS */
    scroll-snap-type: x mandatory;    /* Buttons 'snap' into view */
}

.filter-controls::-webkit-scrollbar {
    display: none;
}

.filter-controls button {
    flex: 0 0 auto;        /* STOP buttons from squishing/shrinking */
    scroll-snap-align: start;
    
    background: none;
    border: none;
    font-weight: 900;
    font-style: italic;
    font-size: 1.2rem;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;   /* Keep labels on one line */
    position: relative;
    color: #556b2f;
    transition: all 0.25s ease;
}

/* Center-expanding underline */
.filter-controls button::after {
    content: '';
    position: absolute;
    bottom: -6px;

    left: 50%;
    transform: translateX(-50%);

    width: 0%;
    height: 3px;
    background: #556b2f;

    transition: width 0.25s ease;
}

/* Hover */
.filter-controls button:hover {
    color: #F8F9F3;
    -webkit-text-stroke: 1px #556b2f;
}

.filter-controls button:hover::after {
    width: 100%;
}

/* Active */
.filter-controls button.active {
    color: #F8F9F3;
    -webkit-text-stroke: 1px #556b2f;
}

.filter-controls button.active::after {
    width: 100%;
}

/* --- 5. OUTLINED PRODUCT CARDS --- */
.products-section {
    padding-top: 140px;
    min-height: 80px; /* Forces the section to be at least the full height of the screen */
	display: block; 
    width: 100%;
    padding-bottom: 30px; /* Gives the footer some breathing room */
}

.product-grid {
    display: grid;
    /* Use 1fr on mobile, 400px+ on desktop */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 40px 20px; /* Reduced gap for mobile */
    padding: 0 5%;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 100px 50px;
    }
}

.product-card {
    position: relative;
    padding: 60px 40px;
    background: #F8F9F3;
	border-radius: 15px;
    border: 2px solid var(--border-light); /* Initial faint outline */
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards in a row are same height */
	overflow: visible !important;

	box-shadow:0 0 10px #556b2f;
	
	height: auto; /* Change from 100% to auto */
    min-height: 500px; /* Optional: set a minimum height instead */
    flex: 1; /* Helps with alignment inside the grid */
}

.product-content-bottom {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* This pushes the content to fill the remaining space */
    justify-content: flex-start; /* Ensures name starts at the same top-line */
}

/* Smooth Draw Animation on Hover */
.product-card:hover {
    border-color: #556b2f;
    transform: translateY(-15px);
	border-width: 2px;
}

.product-phase {
    font-size: 1.2rem; /* Big and Bolder */
    font-weight: 950;
    letter-spacing: 6px;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
    transition: var(--transition);
}

.product-card:hover .product-phase {
    color: black;
}

.product-img-wrapper {
    height: 300px; 
    width: 100%;
    display: flex;
    align-items: center;      
    justify-content: center;   
    margin-bottom: 50px;
    background: transparent;
    overflow: visible; /* Allows the 1.5x zoom to pop out */
}

.product-img-wrapper img {
    /* FORCE identical width and height box */
    width: 250px;  
    height: 250px; 

    /* 'contain' is the secret here: 
       It fits the product inside that 250x250 box 
       without cropping or stretching, regardless of the file's original shape. */
    object-fit: contain; 
    
    transition: var(--transition);
    background: transparent;
}

.product-card:hover .product-img-wrapper img {
    /* Scale stays at 1.1, but the 'overflow: hidden' 
       above keeps the zoom inside the card boundaries */
    transform: scale(1.2) rotate(-2deg);
	
}

.product-name {
    font-size: 2.8rem;
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    margin-bottom: 25px;
    text-transform: uppercase;
	min-height: 5.6rem; /* (Line-height * 2) roughly */
    display: flex;
    align-items: flex-end; /* Or flex-start depending on preference */
}

.product-specs {
    list-style: none;
    margin-bottom: 40px;
}

.product-specs li {
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-dim);
}

/* --- ARCHITECTURAL VIEW BUTTON --- */
.view-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0px; /* Starts tight */
    font-weight: 950;
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

/* The sliding underline for the button */
/* --- THE ARCHITECTURAL VIEW BUTTON --- */
.view-btn {
    margin-top: auto;
    width: 100%; /* Changed to 100% to fill the card width for a structural look */
    display: flex;
    align-items: center;
    justify-content: center; /* Centering fix: align items to center instead of between */
    gap: 10px;               /* Controlled space between text and arrow */
    padding: 18px 0; 
    
    font-weight: 950;
    font-style: italic;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #556b2f;
    
    position: relative;
    z-index: 1; /* Ensure text stays above the background fill */
    transition: var(--transition);
    border: 2px solid var(--border-light);
    
    /* REMOVE UNDERLINE */
    text-decoration: none !important; 
}

/* The sliding background reveal */
.view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #556b2f;
    z-index: -1; 
    transition: var(--transition);
}

.view-btn .arrow-icon {
    font-size: 1.4rem;
    transition: var(--transition);
    display: inline-block; /* Ensures transform works correctly */
}

/* --- HOVER STATES --- */
.product-card:hover .view-btn {
    color: white;
    border-color: #556b2f; /* Simplifies the border logic */
    gap: 20px;           /* Subtle "expansion" animation on hover */
}

.product-card:hover .view-btn::before {
    width: 100%;
}

.product-card:hover .view-btn .arrow-icon {
    transform: translateX(5px);
}

/* --- 6. UTILITIES --- */
.blur-active main {
    filter: blur(25px);
    transition: filter 0.5s ease;
}

@keyframes cardReveal {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card-anim {
    animation: cardReveal 0.8s var(--transition) forwards;
}

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-name { font-size: 2rem; }
}

/* --- HOME HERO BUTTON --- */
.btn-home {
	margin-top: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 950;
    font-style: italic;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #556b2f;
    background: #F8F9F3;
    border: 2px solid #556b2f;

    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
	
	width: fit-content;
    align-self: flex-start; /* important inside flex hero */
}

.btn-home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #556b2f;
    width: 0%;
    transition: var(--transition);
    z-index: 0;
}

.btn-home span,
.btn-home .arrow {
    position: relative;
    z-index: 1;
    color: inherit;
    transition: var(--transition);
}



.btn-home:hover::before {
    width: 100%;
	background: #556b2f;
}

.btn-home:hover {
    color: #F8F9F3;
    gap: 25px;
}

/* --- CONTACT BUTTON --- */
.btn-contact {
	margin-top: 30px;
    display: inline-block;
    padding: 15px 35px;

    font-size: 0.95rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #556b2f;
    background: #F8F9F3;
    border: 2px solid #556b2f;

    text-decoration: none;
    transition: var(--transition);
}

.btn-contact:hover {
    background: #556b2f;
    color: #F8F9F3;
    transform: translateY(-4px);
}


/* --- CONTACT SECTION LAYOUT --- */
.contact-section {
    padding: 180px 10% 100px;
    min-height: 90px;
}

.contact-container {
    max-width: 600px;
}

/* --- TYPOGRAPHY --- */
.contact-title {
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 10px;
    color: #556b2f;
}

.text-neon {
    color: var(--neon);
}

.contact-subtitle {
    opacity: 0.5;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- FORM ELEMENTS --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 900;
    margin-bottom: 10px;
	color:#556b2f;
    letter-spacing: 2px;
}

.contact-input {
    background: #F8F9F3; /* Changed from #111 to match your light theme */
    border: 1px solid #556b2f;
    padding: 20px;
    color: #556b2f;
    outline: none;
    transition: all 0.3s ease;
}

.contact-input:focus { 
    border-color: var(--neon); 
    background: white;
}

.contact-input:not(:placeholder-shown):invalid { 
    border-color: #ff3e3e; 
}

/* --- STATES & FEEDBACK --- */
.contact-success {
    background: var(--neon);
    color: black;
    padding: 40px;
    font-weight: 900;
    font-style: italic;
    font-size: 2rem;
}

[x-cloak] { 
    display: none !important; 
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}




.main-footer {
	
	display: block;
    width: 100%;
    position: relative; /* Sit at the natural end of the scroll */
    clear: both; 
    z-index: 333330;
    padding: 30px 5%; /* Increased padding for better visibility */
	
    flex-shrink: 0; /* Prevents footer from squishing */
    text-align: center;
    background-color: #556b2f;
    box-shadow: 0 0 5px #F8F9F3;
    color: #F8F9F3;
}

.footer-logo {
    font-weight: 950;
    font-style: italic;
    font-size: 1.5rem;
    margin: 0;
}

.footer-copy {
    opacity: 0.4;
    font-size: 0.7rem;
    margin-top: 5px;
}

/* --- HERO SECTION --- */

.hero {
    padding: 200px 5% 100px;
    min-height: 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Main Heading */
.hero h1 {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    margin-bottom: 60px;
}

/* Brand highlight */
.hero h1 span {
    color: var(--neon);
}

/* Text container */
.hero-text {
    max-width: 800px;
    padding: 40px 45px;

    background: rgba(248, 249, 243, 0.65);
    backdrop-filter: blur(10px);

    border-left: 4px solid #556b2f;
}

/* Paragraph styling */
.hero-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    letter-spacing: 0.5px;

    color: #556b2f;
}

/* ========================= */
/* PRODUCT DETAIL PAGE */
/* ========================= */

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Reduce gap for mobile */
    }

    .product-title {
        /* Use clamp to ensure it scales but never breaks the box */
        font-size: clamp(2.2rem, 10vw, 3rem); 
        line-height: 0.9;
        word-wrap: break-word; /* Force long words to wrap */
        overflow-wrap: break-word;
    }
    
    .product-detail-page {
        padding: 100px 5% 40px; /* Reduce top padding for mobile nav */
        width: 100%;
        overflow-x: hidden; /* Prevent the 'stretch' */
    }
}

.product-detail-page {
    padding: 160px 5% 80px;
    min-height: 100px;
}

.product-detail-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* IMAGE */
.product-gallery {
    position: relative;
    padding-top: 40px;
}

.product-glow {
    position: absolute;
    inset: -20%;
    filter: blur(80px);
    pointer-events: none;
}

.product-detail-image {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
}

/* BADGE */
.product-phase-badge {
    display: inline-block;
    padding: 8px 18px;

    border-radius: 25px;
    border: 2px solid currentColor;
    background: #F8F9F3;

    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 3px;
}

/* TITLE */
.product-title {
    font-size: 4.5rem;
    font-weight: 900;
    font-style: italic;
    line-height: 0.85;
    margin: 20px 0 40px;
    text-transform: uppercase;
}

/* SECTION LABEL */
.section-label {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.section-label.small {
    font-size: 0.8rem;
}

/* BENEFITS */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.benefit-badge {
    background: #F8F9F3;
    padding: 8px 15px;
    border-radius: 25px;

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;

    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* NUTRITION CARD */
.nutrition-card {
    background: #F8F9F3;
    padding: 30px;
    border-radius: 25px;

    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    margin-bottom: 40px;
}

.nutrition-list {
    list-style: none;
    padding: 0;
}

.nutrition-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #556b2f33;
}

.nutrition-label {
    color: #556b2f;
    font-weight: 700;
}

.nutrition-value {
    color: #000;
}

/* DOSAGE */
.dosage-card {
    padding: 20px;
    margin-top: 20px;

    background: #F8F9F3;
    border-radius: 20px;

    box-shadow: 0 0 15px rgba(0,0,0,0.12);
}

.dosage-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #556b2f;
}

/* ACTION BUTTONS */
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 50px;
}

.action-btn {
    display: block;
    text-align: center;
    padding: 20px;
    border-radius: 25px;

    font-weight: 900;
    font-style: italic;
    text-decoration: none;

    transition: 0.3s ease;
}

.action-btn.secondary {
    background: #556b2f;
    color: #F8F9F3;

    border: 2px solid #556b2f;
}

.action-btn.secondary:hover {
    filter: brightness(1.05);
}

.action-btn.primary {
    color: white;
}

.action-btn.primary:hover {
    filter: brightness(0.9);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 3rem;
    }
}

.about-hero {
    padding: 200px 10% 120px;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    font-style: italic;
    line-height: 0.8;
    letter-spacing: -2px;
}

.about-hero h1 span {
    color: var(--neon);
}

.about-hero div {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
    line-height: 1.8;
    opacity: 0.85;
}

.about-hero p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* --- ABOUT PAGE THEME (#556B2F & #F8F9F3) --- */
.about-page {
    background-color: #F8F9F3;
    padding-top: 100px; /* Reduced from 140px */
}

.about-hero {
    background: #556B2F;
    color: #F8F9F3;
    padding: 60px 5%; /* Reduced vertical padding */
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.about-hero .accent-line {
    width: 60px;
    height: 4px;
    background: #F8F9F3;
    margin: 20px auto;
    opacity: 0.5;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

.content-block {
    margin-bottom: 50px;
}

.content-block .intro-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #556B2F;
    font-weight: 600;
    margin-bottom: 30px;
}

.content-block .body-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
}

.promise-box {
    background: #FFF;
    border: 2px solid #556B2F;
    padding: 40px;
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 10px 10px 0px rgba(85, 107, 47, 0.2);
}

.promise-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #556B2F;
    font-style: italic;
    margin: 0;
}

.about-footer-note {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(85, 107, 47, 0.2);
}

.about-footer-note p {
    font-size: 1.2rem;
    font-weight: 800;
    color: #556B2F;
    text-transform: uppercase;
}

.about-cta-section {
    text-align: center;
    padding-bottom: 30px;
	margin-top: -30px;
}

.about-cta-section .view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 950;
    font-style: italic;
    letter-spacing: 3px;
    text-transform: uppercase;

    /* Matching your #556b2f / #F8F9F3 theme */
    color: #556b2f;
    background: #F8F9F3;
    border: 2px solid #556b2f;

    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition); /* Ensure this variable is in your :root */
    
    width: fit-content;
}

/* Hover effect to match the home button feel */
.about-cta-section .view-btn:hover {
    background: #556b2f;
    color: #F8F9F3;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(85, 107, 47, 0.2);
}


/* ISOSPORT Error Page Styles - Olive & Off-white Theme */

.error-body { 
    background-color: #F8F9F3; 
    color: var(--text-dark); 
    font-family: 'Inter', sans-serif; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    height: 100px; 
    margin: 0; 
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    position: relative;
}

.error-container { 
    background-color: #F8F9F3; 
    text-align: left;
    padding: 40px; 
    max-width: 500px;
    width: 85%;
    border-left: 4px solid var(--olive-green);
    position: relative;
    z-index: 2;
}

.error-code-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--olive-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.error-heading { 
    font-size: 2.5rem; 
    margin: 0 0 1.5rem 0; 
    color: var(--text-dark);
    line-height: 1.1;
}

.error-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4d44;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-error-home { 
    display: inline-block; 
    padding: 14px 28px; 
    background-color: var(--olive-green); 
    color: var(--off-white); 
    text-decoration: none; 
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-error-home:hover { 
    background-color: var(--olive-muted); 
    transform: translateX(5px);
}

.error-watermark {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(85, 107, 47, 0.03);
    user-select: none;
    z-index: 1;
}