/* JaitraParna — Premium Ayurvedic Website Styles */

:root {
    --primary-green: #3F5F43;
    --forest-green: #27402C;
    --gold: #C9A86A;
    --champagne: #E8D9C4;
    --ivory: #FAF8F5;
    --charcoal: #000000;
    --dark-brown: #2C1810;
    --white: #FFFFFF;
    --text: #2A2A2A;
    --text-light: #5A5A5A;
    --gradient-green: linear-gradient(135deg, var(--forest-green) 0%, var(--primary-green) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, #D4B87A 100%);
    --gradient-ivory: linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 100%);
    --shadow-sm: 0 2px 12px rgba(39, 64, 44, 0.06);
    --shadow-md: 0 8px 32px rgba(39, 64, 44, 0.1);
    --shadow-lg: 0 16px 48px rgba(39, 64, 44, 0.14);
    --shadow-gold: 0 4px 24px rgba(201, 168, 106, 0.25);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 18px;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', 'Inter', -apple-system, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-height: 110px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--forest-green);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--ivory);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--forest-green);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 106, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--ivory);
    border: 1.5px solid rgba(250, 248, 245, 0.6);
}

.btn-outline:hover {
    background: rgba(250, 248, 245, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline-dark {
    background: transparent;
    color: var(--forest-green);
    border: 1.5px solid var(--primary-green);
}

.btn-outline-dark:hover {
    background: var(--primary-green);
    color: var(--ivory);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-block { width: 100%; }

/* Page Loader */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    overflow: visible;
    padding: 16px;
}

.loader-logo {
    display: block;
    width: min(420px, 86vw);
    height: auto;
    max-height: none;
    margin: 0 auto 28px;
    object-fit: contain;
    object-position: center;
    animation: pulse 1.5s ease infinite;
}

.loader-bar {
    width: 160px;
    height: 2px;
    background: rgba(201, 168, 106, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--gold);
    border-radius: 2px;
    animation: loaderSlide 1.2s ease infinite;
}

/* Floating Leaves */
.floating-leaves {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    opacity: 0.06;
    border-radius: 0 80% 0 80%;
    animation: floatLeaf 20s linear infinite;
}

.leaf-1 { top: 10%; left: 5%; animation-delay: 0s; }
.leaf-2 { top: 30%; left: 85%; animation-delay: -5s; width: 18px; height: 18px; }
.leaf-3 { top: 60%; left: 15%; animation-delay: -10s; width: 20px; height: 20px; }
.leaf-4 { top: 80%; left: 70%; animation-delay: -15s; }
.leaf-5 { top: 45%; left: 50%; animation-delay: -8s; width: 16px; height: 16px; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    overflow: visible;
    background: var(--charcoal);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
    background: var(--charcoal);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 20px 0 8px;
}

.site-header .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    overflow: visible;
}

.site-header .logo img {
    display: block;
    height: 100px;
    width: auto;
    max-width: min(320px, 52vw);
    object-fit: contain;
    object-position: left center;
    transition: transform var(--transition);
}

.site-header .header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
    margin-right: auto;
}

.site-header .header-legal-name {
    margin: 0;
    padding: 0;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.02em;
    color: rgba(250, 248, 245, 0.85);
    max-width: 11rem;
    display: none;
}

@media (min-width: 1100px) {
    .site-header .header-legal-name {
        display: block;
    }
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: block;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(250, 248, 245, 0.85);
    letter-spacing: 0.03em;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta svg { flex-shrink: 0; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ivory);
    transition: all var(--transition);
    border-radius: 2px;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-wrap video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--gradient-green);
    background-image: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 28, 28, 0.55) 0%,
        rgba(39, 64, 44, 0.7) 50%,
        rgba(28, 28, 28, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(201, 168, 106, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--ivory);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title span {
    display: block;
    font-style: italic;
    color: var(--champagne);
    font-size: 0.85em;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s ease infinite;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.section-desc {
    margin-top: 14px;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--text-light);
}

.section-header.text-center .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* About Preview */
.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content #aboutCompanyName,
.about-content #aboutShortName {
    color: var(--dark-brown);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--champagne);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
    letter-spacing: 0.05em;
}

/* Category Cards */
.categories {
    background: var(--gradient-ivory);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    z-index: 3;
    transition: border-color var(--transition);
    pointer-events: none;
}

.category-card:hover::before {
    border-color: var(--gold);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(39, 64, 44, 0.9) 0%, rgba(39, 64, 44, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    z-index: 2;
}

.category-overlay h3 {
    color: var(--ivory);
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.category-overlay span {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Product Cards */
.products-section {
    background: var(--ivory);
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    background: var(--white);
    border: 1px solid var(--champagne);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: var(--ivory);
    border-color: var(--primary-green);
}

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Catalog-style product cards (brochure layout) */
.catalog-product-card {
    background: linear-gradient(135deg, #eef5e8 0%, #f7f3ea 48%, #eef5e8 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(63, 95, 67, 0.12);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    position: relative;
}

.catalog-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(39, 64, 44, 0.16);
}

.catalog-product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, #2d4a32 0%, #3f5f43 100%);
    color: var(--ivory);
    padding: 18px 28px;
}

.catalog-product-header h3 {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
}

.catalog-leaf-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: leafSway 4s ease-in-out infinite;
}

.catalog-product-tagline {
    padding: 16px 28px 0;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--primary-green);
    line-height: 1.6;
    margin: 0;
}

.catalog-product-body {
    display: grid;
    grid-template-columns: 1fr 260px 1fr;
    gap: 28px 32px;
    padding: 24px 28px 12px;
    align-items: start;
}

.catalog-product-body--no-benefits {
    grid-template-columns: 1fr 280px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.catalog-product-desc {
    padding-right: 8px;
}

.catalog-desc-text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--text);
    margin: 0 0 12px;
}

.catalog-desc-text strong {
    color: var(--primary-green);
    font-weight: 700;
}

.catalog-product-benefits {
    padding-left: 8px;
}

.catalog-benefits-panel {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.catalog-benefits-heading {
    margin: 0;
    padding: 10px 14px;
    background: linear-gradient(90deg, #f5a623 0%, #ffc107 100%);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.catalog-benefits-panel .catalog-benefits-list {
    padding: 14px 16px 16px;
    margin: 0;
    grid-template-columns: 1fr;
}

.catalog-product-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 8px 28px 20px;
}

.catalog-category-pill {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 162, 77, 0.15);
    color: var(--primary-green);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 12px;
}

.catalog-product-intro {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.catalog-detail {
    margin-bottom: 14px;
}

.catalog-detail h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.catalog-detail p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text);
    margin: 0;
}

.catalog-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-benefits-list li {
    position: relative;
    padding-left: 14px;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--text);
}

.catalog-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.catalog-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.catalog-product-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-self: center;
}

.catalog-photo-frame {
    position: relative;
    width: 100%;
    max-width: 240px;
    height: 320px;
    background: var(--primary-green);
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 0 1px rgba(63, 95, 67, 0.08), 0 12px 32px rgba(39, 64, 44, 0.1);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-product-card:hover .catalog-photo-frame {
    transform: scale(1.04) rotate(-1deg);
}

.catalog-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: opacity 0.4s ease;
}

.catalog-product-img.is-hidden {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.catalog-product-crop {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: scale(1.05);
}

.catalog-product-crop.is-visible {
    opacity: 1;
}

.catalog-brand-mark {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-green);
    opacity: 0.7;
}

.catalog-grass-border {
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(63, 95, 67, 0.06)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath fill='%233F5F43' fill-opacity='0.35' d='M0 40 L0 28 Q30 8 60 28 T120 22 T180 30 T240 18 T300 28 T360 20 T420 32 T480 16 T540 26 T600 20 T660 30 T720 18 T780 28 T840 22 T900 32 T960 16 T1020 26 T1080 20 T1140 30 T1200 18 L1200 40 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.catalog-detail-visual-wrap .catalog-product-visual {
    max-width: 360px;
    margin: 0 auto;
}

.catalog-detail-visual-wrap .catalog-photo-frame {
    max-width: 360px;
    height: 420px;
}

/* Legacy product card (kept for compatibility) */
.product-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(232, 217, 196, 0.5);
    transition: all var(--transition);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card:hover::after {
    transform: scaleX(1);
}

.product-card:nth-child(even) {
    grid-template-columns: 1fr 320px;
}

.product-card:nth-child(even) .product-card-image {
    order: 2;
}

.product-card:nth-child(even) .product-card-body {
    order: 1;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    background: var(--primary-green);
    min-height: 380px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: rgba(39, 64, 44, 0.85);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
}

.product-card-body {
    padding: 40px 48px;
    display: flex;
    flex-direction: column;
}

.product-card-body h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.product-card-short {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-detail-block {
    margin-bottom: 16px;
}

.product-detail-block h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.product-detail-block p,
.product-detail-block li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.product-benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
}

.product-benefits-list li {
    position: relative;
    padding-left: 16px;
    font-size: 0.85rem;
}

.product-benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.product-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

/* Featured Products Grid (Homepage) */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(232, 217, 196, 0.4);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.featured-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--primary-green);
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.featured-card:hover .featured-card-image img {
    transform: scale(1.08);
}

.featured-card-body {
    padding: 24px;
}

.featured-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.featured-card-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--gradient-green);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23C9A86A" opacity="0.1"/></svg>') repeat;
    background-size: 30px 30px;
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--ivory);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(250, 248, 245, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--champagne);
}

.breadcrumb a {
    color: inherit;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { opacity: 0.5; }

/* Dark breadcrumbs on light backgrounds */
.product-detail-hero .breadcrumb {
    color: var(--forest-green);
    font-weight: 500;
}

.product-detail-hero .breadcrumb a {
    color: var(--forest-green);
}

.product-detail-hero .breadcrumb a:hover {
    color: var(--primary-green);
}

.product-detail-hero .breadcrumb span {
    color: var(--text-light);
    opacity: 1;
}

/* Product Detail */
.product-detail-hero {
    padding: 140px 0 60px;
    background: var(--white);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--primary-green);
    aspect-ratio: 4/5;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    background: var(--primary-green);
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: var(--gold);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 8px;
}

.product-detail-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--champagne);
    color: var(--forest-green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.product-detail-info .catalog-product-tagline {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--primary-green);
    line-height: 1.65;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--champagne);
}

.catalog-detail-desc {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
}

.catalog-detail-desc .catalog-desc-text {
    margin-bottom: 14px;
}

.product-detail-info .catalog-benefits-panel {
    max-width: 480px;
}

.product-detail-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--champagne);
}

.detail-section {
    margin-bottom: 28px;
}

.detail-section h3 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.detail-section p {
    color: var(--text);
    line-height: 1.7;
}

.detail-benefits {
    display: grid;
    gap: 8px;
}

.detail-benefits li {
    position: relative;
    padding-left: 24px;
    color: var(--text);
}

.detail-benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 4px;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

/* Related Products */
.related-products {
    background: var(--gradient-ivory);
    padding: 80px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Gallery */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-masonry {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(39, 64, 44, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay h4 {
    color: var(--ivory);
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(28, 28, 28, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(232, 217, 196, 0.3);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    background: var(--champagne);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 28px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.blog-card:hover h3 { color: var(--primary-green); }

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.read-more:hover { gap: 12px; color: var(--gold); }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(232, 217, 196, 0.4);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 4px;
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text);
    font-size: 0.95rem;
}

.contact-info-item a:hover { color: var(--primary-green); }

.contact-form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--champagne);
    padding-bottom: 16px;
}

.form-tab {
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.form-tab.active {
    background: var(--primary-green);
    color: var(--ivory);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--forest-green);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--ivory);
    border: 1px solid var(--champagne);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-panel { display: none; }
.form-panel.active { display: block; }

.map-wrap {
    margin-top: 60px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* About Page */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--gold);
    transition: all var(--transition);
}

.mv-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.mv-card p + p {
    margin-top: 14px;
}

.services-list {
    max-width: 720px;
    margin: 48px auto 0;
    padding: 0;
    list-style: none;
    counter-reset: service;
}

.services-list li {
    counter-increment: service;
    position: relative;
    padding: 22px 28px 22px 72px;
    margin-bottom: 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 500;
    transition: all var(--transition);
}

.services-list li::before {
    content: counter(service);
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
}

.services-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

/* Our Services — modern showcase (about page) */
.services-section {
    padding: 100px 0;
    background: var(--gradient-ivory);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 10% 0%, rgba(201, 168, 106, 0.12), transparent 55%),
        radial-gradient(ellipse 60% 40% at 95% 100%, rgba(63, 95, 67, 0.08), transparent 50%);
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-intro {
    max-width: 560px;
    margin: 16px auto 0;
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.65;
}

.services-accordion {
    max-width: 820px;
    margin: 56px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-accordion-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(39, 64, 44, 0.08);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.services-accordion-item.is-open {
    border-color: rgba(201, 168, 106, 0.45);
    box-shadow: var(--shadow-md);
}

.services-accordion-heading {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.services-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--forest-green);
    line-height: 1.35;
    transition: color var(--transition), background var(--transition);
}

.services-accordion-trigger:hover,
.services-accordion-item.is-open .services-accordion-trigger {
    color: var(--primary-green);
    background: rgba(250, 248, 245, 0.85);
}

.services-accordion-icon {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    margin-top: -4px;
}

.services-accordion-item.is-open .services-accordion-icon {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.services-accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-accordion-item.is-open .services-accordion-panel {
    grid-template-rows: 1fr;
}

.services-accordion-body {
    overflow: hidden;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.services-accordion-body:not(:has(.services-accordion-media)) {
    grid-template-columns: 1fr;
}

.services-accordion-item.is-open .services-accordion-body {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(201, 168, 106, 0.2);
}

.services-accordion-media {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
}

.services-accordion-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-accordion-content {
    padding-top: 20px;
}

.services-accordion-desc {
    margin: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-light);
}

.service-panel-lead {
    margin: 0 0 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--forest-green);
}

.service-panel-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.6;
}

.service-panel-list li {
    margin-bottom: 8px;
}

.service-panel-list li:last-child {
    margin-bottom: 0;
}

.service-panel-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.service-panel-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.service-tag-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.service-tag-grid li {
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    background: var(--ivory);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(63, 95, 67, 0.1);
    line-height: 1.45;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.service-tag-grid li:hover {
    background: var(--champagne);
    border-color: rgba(201, 168, 106, 0.35);
    color: var(--forest-green);
}

.service-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
}

.service-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--forest-green);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(201, 168, 106, 0.35);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.offerings-grid {
    grid-template-columns: repeat(5, 1fr);
}

.about-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.about-contact-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.about-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-contact-card svg {
    color: var(--primary-green);
    margin-bottom: 16px;
}

.about-contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.about-contact-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

.about-contact-card a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition);
}

.about-contact-card a:hover {
    color: var(--gold);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-green);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: var(--ivory);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: var(--charcoal);
    color: rgba(250, 248, 245, 0.7);
}

.company-legal-name {
    color: var(--dark-brown);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
}

.footer-logo {
    margin-bottom: 16px;
    height: auto;
    width: min(260px, 100%);
    max-width: 260px;
    object-fit: contain;
    object-position: left center;
}

.footer-tagline {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact ul li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-credit {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    color: var(--ivory);
}

.float-whatsapp { background: #25D366; }
.float-call { background: var(--primary-green); }
.float-download { background: var(--gold); color: var(--forest-green); }
.float-top {
    background: var(--charcoal);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.float-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

/* Form Messages */
.form-message {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(63, 95, 67, 0.1);
    color: var(--forest-green);
    border: 1px solid var(--primary-green);
}

.form-message.error {
    display: block;
    background: rgba(200, 50, 50, 0.08);
    color: #a03030;
    border: 1px solid #d05050;
}

/* Why Choose */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    padding: 36px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Gold line divider */
.gold-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 20px auto;
}

.gold-divider.left { margin-left: 0; }

/* Search */
.products-search {
    max-width: 480px;
    margin: 0 auto 40px;
    position: relative;
}

.products-search input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--champagne);
    border-radius: 50px;
    background: var(--white);
    transition: all var(--transition);
}

.products-search input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.products-search svg {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.product-card.hidden,
.catalog-product-card.hidden { display: none; }

/* Catalogue viewer (catalogue.html) */
.catalogue-viewer-page {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--forest-green);
}

.catalogue-viewer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.75rem 1.25rem;
    background: var(--gradient-green);
    color: var(--ivory);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.catalogue-viewer-back {
    color: var(--champagne);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.catalogue-viewer-back:hover {
    color: var(--gold);
}

.catalogue-viewer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.catalogue-viewer-frame {
    flex: 1;
    width: 100%;
    min-height: calc(100vh - 56px);
    border: 0;
    background: #525659;
    overflow: auto;
}

.catalogue-loading {
    margin: 3rem auto;
    max-width: 28rem;
    padding: 0 1.5rem;
    text-align: center;
    color: var(--champagne);
    font-size: 0.95rem;
    line-height: 1.6;
}

.catalogue-pdf-pages {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px 12px 32px;
}

.catalogue-pdf-page {
    display: block;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
