/*
Theme Name: Seaspire Life Sciences
Theme URI: https://seaspirelifesciences.com/theme
Author: Seaspire Life Sciences
Author URI: https://seaspirelifesciences.com
Description: Custom premium WooCommerce-ready theme for Seaspire Life Sciences. Sets up pages, menus, and products automatically.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seaspirelife
Tags: e-commerce, two-columns, responsive-layout, custom-menu, featured-images, translation-ready
*/

/* -------------------------------------------------------------
   1. FONTS IMPORT & GLOBAL VARIABLES
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --ocean-900: #062a38;       /* Darkest navy — headlines, footer bg */
    --ocean-800: #073d52;       /* Deep ocean — primary dark bg */
    --teal-600:  #0e8a93;       /* Brand teal — primary accent, CTA buttons */
    --teal-500:  #13a8a8;       /* Mid teal — hover states */
    --aqua-400:  #2bc6c6;       /* Light aqua — highlights, gradients */
    --green-500: #20784d;       /* Emerald — Biospire brand accent */
    --green-400: #1b633f;       /* Emerald hover */
    --mist:      #eef4f6;       /* Very light blue-grey — section backgrounds */
    --white:     #ffffff;
    --text-primary:   #0d2530;  /* Near-black */
    --text-secondary: #5b727c;  /* Muted grey */
    --border:    #dde7ea;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 12px rgba(7, 61, 82, 0.04);
    --shadow-md: 0 8px 32px rgba(7, 61, 82, 0.10);
    --shadow-lg: 0 16px 48px rgba(7, 61, 82, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
}

/* -------------------------------------------------------------
   2. RESET & BASE STYLES
   ------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ocean-900);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 15px;
    font-weight: 400;
}

a {
    color: var(--teal-600);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--teal-500);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------------------
   3. STRUCTURE & LAYOUT HELPERS
   ------------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section--mist {
    background-color: var(--mist);
}

.section-head {
    margin-bottom: 60px;
}

.section-head.center {
    text-align: center;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    color: var(--ocean-900);
    margin: 0 0 16px;
}

.lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Grids */
.grid {
    display: grid;
    gap: 28px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Split Layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 800px) {
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* -------------------------------------------------------------
   4. CSS COMPONENTS LIBRARY
   ------------------------------------------------------------- */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: none;
    letter-spacing: normal;
}

.btn--primary {
    background-color: var(--teal-600);
    color: var(--white);
    border-color: var(--teal-600);
}

.btn--primary:hover {
    background-color: var(--ocean-800);
    border-color: var(--ocean-800);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: var(--teal-600);
    border-color: var(--teal-600);
}

.btn--outline:hover {
    background-color: var(--teal-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--light {
    background-color: var(--white);
    color: var(--ocean-800);
    border-color: var(--white);
}

.btn--light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn--green {
    background-color: var(--green-500);
    color: var(--white);
    border-color: var(--green-500);
}

.btn--green:hover {
    background-color: var(--green-400);
    border-color: var(--green-400);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--navy {
    background-color: var(--ocean-900);
    color: var(--white);
    border-color: var(--ocean-900);
    border-radius: 8px;
}

.btn--navy:hover {
    background-color: var(--teal-600);
    border-color: var(--teal-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--teal-solid {
    background-color: #0eb38c;
    color: var(--white);
    border-color: #0eb38c;
    border-radius: 8px;
}

.btn--teal-solid:hover {
    background-color: #0c9f7c;
    border-color: #0c9f7c;
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.btn--white-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Eyebrow Tag */
.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* -------------------------------------------------------------
   5. HEADER NAVIGATION
   ------------------------------------------------------------- */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(7, 61, 82, 0.08);
    height: 64px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--ocean-800);
    text-decoration: none;
    line-height: 1.1;
}
.brand:hover {
    color: var(--ocean-800);
}
.brand__mark {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    flex: none;
    flex-shrink: 0;
}
.brand span {
    display: flex;
    flex-direction: column;
}
.brand small {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .58rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--teal-600);
    line-height: 1;
    margin-top: 2px;
}

.footer__brand .brand {
    color: #ffffff;
}
.footer__brand .brand small {
    color: #6fd4d0;
}
.footer__brand p {
    font-size: .92rem;
    margin-top: 1rem;
    max-width: 320px;
    color: #90b3b9;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-menu > ul > li > a {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding: 6px 12px;
    border: 1.5px solid transparent;
    border-radius: 6px;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: var(--transition);
}

.nav-menu > ul > li > a:hover {
    color: var(--teal-600);
}

.nav-menu > ul > li.current-menu-item > a {
    color: #007cba;
    border-color: #007cba;
}

/* Dropdown styling */
.nav-menu li {
    position: relative;
}

.nav-menu li.menu-item-has-children > a::after {
    content: '▾';
    font-size: 0.75rem;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
}

.nav-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
    z-index: 999;
}

.nav-menu li:hover ul.sub-menu {
    display: flex;
}

.nav-menu ul.sub-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
}

.nav-menu ul.sub-menu a::after {
    display: none;
}

.nav-menu ul.sub-menu a:hover {
    background-color: var(--mist);
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .site-header {
        height: 64px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        display: none;
        padding: 20px 24px;
        z-index: 999;
    }
    
    .nav-menu.nav-open {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }
    
    .nav-menu ul.sub-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--border);
        border-radius: 0;
        padding: 5px 0 5px 15px;
        margin-top: 5px;
        width: 100%;
    }
    
    .nav-menu li:hover ul.sub-menu {
        display: none; /* Disable hover triggers on mobile */
    }
    
    .nav-menu li.menu-item-has-children.active ul.sub-menu {
        display: flex;
    }
    
    .nav-menu .header-cta {
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-menu .btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------
   6. HOMEPAGE & PAGES SPECIFIC STYLING
   ------------------------------------------------------------- */
/* Hero Section */
.hero {
    min-height: 92vh;
    background: linear-gradient(135deg, #062a38 0%, #0e8a93 60%, #2bc6c6 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.hero__inner {
    max-width: 100%;
}

.hero__inner h1 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .hero__actions {
        justify-content: center;
    }
}

.hero__media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(6, 42, 56, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 480px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: var(--transition);
}

.hero__media:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(6, 42, 56, 0.4);
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero__media {
        height: 360px;
        max-width: 480px;
        margin: 0 auto;
        transform: none;
    }
    .hero__media:hover {
        transform: scale(1.02);
    }
}

/* Hero Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    animation: pulse 8s infinite alternate ease-in-out;
}

.blob--1 {
    width: 400px;
    height: 400px;
    background-color: var(--teal-500);
    top: 10%;
    right: -100px;
}

.blob--2 {
    width: 300px;
    height: 300px;
    background-color: var(--aqua-400);
    bottom: 10%;
    left: -100px;
    animation-delay: 2s;
}

.blob--3 {
    width: 250px;
    height: 250px;
    background-color: var(--white);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(20px, 20px); }
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
}

/* Trust Stats Bar */
.stats-bar {
    background-color: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background-color: var(--border);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--teal-600);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item::after {
        display: none;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(to right, rgba(6, 42, 56, 0.95) 0%, rgba(6, 42, 56, 0.75) 50%, rgba(6, 42, 56, 0.2) 80%, rgba(6, 42, 56, 0) 100%), url('images/page-banner-bg.jpg') center/cover no-repeat;
    padding: 120px 0 100px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero__inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Product Cards specific styles */
.product-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dde8ed;
    box-shadow: 0 4px 24px rgba(6,42,56,0.07);
    transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(6,42,56,0.13);
    transform: translateY(-4px);
}

.product-card__media {
    position: relative;
    height: 300px;
    background-color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid #eef4f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    transition: transform 0.3s ease;
    display: block;
}

.product-card:hover .product-card__media img {
    transform: scale(1.03);
}

.product-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    left: auto;
    padding: 5px 12px;
    border-radius: 6px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-card__badge.spirowhite {
    background-color: var(--teal-600);
}

.product-card__badge.biospire {
    background-color: var(--ocean-800);
}

.product-card__badge.badge-soon {
    background-color: #8e9eab;
}

.product-card__body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0;
}

.product-card__cat {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--teal-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card__body h3 {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 700;
    color: #062a38;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-card__body p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #5a7080;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Split Brand Showcase Cards */
.brand-range-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.brand-range-card__media {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.brand-range-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.brand-range-card:hover .brand-range-card__media img {
    transform: scale(1.04);
}

.brand-range-card__body {
    padding: 40px;
}

.brand-range-card__body h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--ocean-900);
    margin-bottom: 16px;
}

.brand-range-card__body p {
    font-size: 15px;
    margin-bottom: 24px;
    min-height: 72px;
}

/* Feature grid in Why Seaspire */
.dark-feature-section {
    background: linear-gradient(135deg, #062a38, #073d52);
    color: var(--white);
}

.dark-feature-section .section-head h2 {
    color: var(--white);
}

.dark-feature-section .section-head p {
    color: rgba(255, 255, 255, 0.7);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: rgba(14, 138, 147, 0.2);
    border: 1px solid var(--teal-600);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--aqua-400);
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 16px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   7. SINGLE PRODUCT / WOOCOMMERCE PREMIUM LAYOUT
   ------------------------------------------------------------- */
.product-inquiry-box {
    margin: 24px 0;
}

.ingredients-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-family: var(--font-sans);
    font-size: 14px;
}

.ingredients-table th, .ingredients-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.ingredients-table th {
    background-color: var(--mist);
    color: var(--ocean-900);
    font-weight: 600;
}

.ingredients-table tr:hover td {
    background-color: rgba(238, 244, 246, 0.5);
}

/* WooCommerce hide cart and prices */
.single_add_to_cart_button, 
.woocommerce-Price-amount, 
.woocommerce-price, 
.price,
.quantity,
.product-type-simple .cart {
    display: none !important;
}

/* Custom WooCommerce single product template classes */
.custom-single-product {
    padding: 60px 0 100px;
}

.custom-single-product__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

@media (max-width: 800px) {
    .custom-single-product__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.custom-single-product__media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--mist);
    height: 500px;
}

.custom-single-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 480px) {
    .custom-single-product__media {
        height: 320px;
    }
}

.custom-single-product__meta {
    display: flex;
    flex-direction: column;
}

.custom-single-product__tagline {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--teal-600);
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.custom-single-product__section {
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.custom-single-product__section h4 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ocean-900);
    margin-bottom: 16px;
}

.custom-single-product__section ul {
    list-style: none;
    padding-left: 0;
}

.custom-single-product__section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.custom-single-product__section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-600);
    font-weight: 700;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 14px;
}

.spec-tile {
    background-color: var(--mist);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.spec-tile strong {
    display: block;
    color: var(--ocean-900);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.spec-tile span {
    color: var(--text-secondary);
}

/* -------------------------------------------------------------
   8. FOOTER STYLING
   ------------------------------------------------------------- */
.site-footer {
    background-color: var(--ocean-900);
    color: var(--white);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-column h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    height: 36px;
    width: auto;
}

.footer-about .footer-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: var(--font-sans);
}

.footer-links a:hover {
    color: var(--teal-500);
    padding-left: 4px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* -------------------------------------------------------------
   9. SCROLL ANIMATIONS STYLES
   ------------------------------------------------------------- */
.card, .section-head, .split {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card.in-view, .section-head.in-view, .split.in-view {
    opacity: 1;
    transform: none;
}

/* -------------------------------------------------------------
   10. GENERAL PAGES LAYOUT SUPPORT
   ------------------------------------------------------------- */
.page-content-wrapper {
    padding: 80px 0;
}

.form-note {
    background-color: var(--mist);
    padding: 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    border-left: 4px solid var(--teal-600);
    margin-bottom: 30px;
}

.info-tile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.info-tile__icon {
    color: var(--teal-600);
    flex-shrink: 0;
}

.info-tile__icon svg {
    width: 24px;
    height: 24px;
}

.info-tile h4 {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-tile p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Form Styles */
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-900);
}

.form-control {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(14, 138, 147, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* WooCommerce shop page grid overrides */
.woocommerce .products.columns-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.woocommerce .products.columns-3::before,
.woocommerce .products.columns-3::after {
    display: none;
}

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 800px) {
    .woocommerce .products.columns-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .woocommerce .products.columns-3 {
        grid-template-columns: 1fr;
    }
}

/* Focus Categories Grid & Card Layout (Mockup 1) */
.focus-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.focus-category-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.focus-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.focus-category-card__media {
    height: 220px;
    overflow: hidden;
}
.focus-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.focus-category-card:hover .focus-category-card__media img {
    transform: scale(1.04);
}
.focus-category-card__body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.focus-category-card__body h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--ocean-900);
    margin-top: 0;
    margin-bottom: 12px;
}
.focus-category-card__body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    flex-grow: 1;
}
.focus-category-link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    color: #0eb38c;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}
.focus-category-link:hover {
    color: var(--ocean-900);
    transform: translateX(4px);
}

/* Safety Badge Overlay (Mockup 3) */
.safety-badge {
    transition: var(--transition);
}
.safety-badge:hover {
    transform: scale(1.02);
}

/* Brand Catalog & Formulations Card Styling (Mockup 5) */
.product-card-catalog {
    transition: var(--transition);
}
.product-card-catalog:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08) !important;
}
.product-card-catalog:hover .product-card-catalog__media img {
    transform: scale(1.04);
}

/* Single Product Hero Section (Mockup 2 Style) */
.single-product-hero {
    border-bottom: 1px solid var(--border);
}
.single-product-hero .btn--teal-solid,
.single-product-hero .btn--white-outline {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hide default page hero on WooCommerce pages to prevent double banners */
.woocommerce .page-hero,
.woocommerce-page .page-hero {
    display: none !important;
}

/* Responsive Home Hero Section */
.sp-hero {
    background: linear-gradient(to right, #041e2b 0%, #041e2b 40%, rgba(4,30,43,0.7) 48%, rgba(4,30,43,0) 55%), url('images/homepagebanner.jpeg') right center / cover no-repeat !important;
}
.sp-hero__inner {
    padding: 0 80px 0 40px !important;
}

@media (max-width: 991px) {
    .sp-hero {
        background: linear-gradient(rgba(4, 30, 43, 0.9) 0%, rgba(4, 30, 43, 0.9) 100%), url('images/homepagebanner.jpeg') center center / cover no-repeat !important;
        text-align: center;
        padding: 80px 0 !important;
        min-height: auto !important;
    }
    .sp-hero__inner {
        padding: 0 24px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sp-hero__inner h1 {
        margin: 0 auto 24px !important;
        max-width: 100% !important;
    }
    .sp-hero__inner p {
        margin: 0 auto 32px !important;
        max-width: 100% !important;
    }
    .sp-hero__inner div {
        justify-content: center;
    }
}
