/*
Theme Name: Mountain Soul Medicine v2.6
Theme URI: https://pressmegpt.com
Author: PressMeGPT
Author URI: https://pressmegpt.com
Description: This theme was generated by PressMeGPT.com - AI WordPress Theme Generator. Free software released under GNU GPLv2 with attribution.
Version: 2.6.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mountain-soul-medicine
Tags: custom, pressmegpt, ai-generated, custom-logo, custom-menu, custom-colors, dark, custom-fonts

This theme was created with PressMeGPT.com - AI WordPress Theme Generator.
Free to use, modify, and distribute under GNU GPLv2 with attribution.
*/

/* Reset and base styles */
*, *::before, *::after {
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
}

img {
max-width: 100%;
height: auto;
}

a {
text-decoration: none;
}

/* ===== Header Styles ===== */
.site-header {
padding: 1rem 2rem;
}

.header-inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

/* Header Layout: Logo Left, Menu Right (default) */
.header-layout-logo-left-menu-right .header-inner {
flex-direction: row;
justify-content: space-between;
}

/* Header Layout: Logo Right, Menu Left */
.header-layout-logo-right-menu-left .header-inner {
flex-direction: row-reverse;
justify-content: space-between;
}

/* Header Layout: Logo Center, Menu Below */
.header-layout-logo-center-menu-below .header-inner {
flex-direction: column;
text-align: center;
}

.header-layout-logo-center-menu-below .site-branding {
margin-bottom: 1rem;
}

/* Header Layout: Logo Center, Menu Split */
.header-layout-logo-center-menu-split .header-inner {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
}

.header-layout-logo-center-menu-split .menu-left {
justify-self: end;
}

.header-layout-logo-center-menu-split .menu-right {
justify-self: start;
}

/* Site Branding */
.site-branding {
display: flex;
align-items: center;
gap: 1rem;
}

.site-branding a {
display: inline-block;
}

.custom-logo {
display: block;
height: auto;
}

.site-title {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
}

.site-title a {
color: inherit;
}

.site-description {
margin: 0.25rem 0 0;
font-size: 0.875rem;
opacity: 0.8;
}

/* Primary Navigation */
.main-navigation {
display: flex;
align-items: center;
}

.main-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
}

.main-navigation li {
position: relative;
}

.main-navigation a {
display: block;
padding: 0.5rem 0;
font-weight: 500;
transition: color 0.2s ease;
}

.main-navigation a:hover {
opacity: 0.7;
}

/* Dropdown menus */
.main-navigation ul ul {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
flex-direction: column;
gap: 0;
background: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
border-radius: 4px;
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s, visibility 0.2s;
}

.main-navigation li:hover > ul {
opacity: 1;
visibility: visible;
}

.main-navigation ul ul a {
padding: 0.5rem 1rem;
color: #333;
}

/* Mobile Menu Toggle */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.menu-toggle svg {
width: 24px;
height: 24px;
}

@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

.main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: inherit;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-navigation.toggled {
    display: block;
}

.main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
}

.main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 1rem;
}
}

/* ===== Footer Styles ===== */
.site-footer {
padding: 2rem;
}

.footer-inner {
max-width: 1400px;
margin: 0 auto;
}

/* Footer Layout: Centered */
.footer-layout-centered .footer-inner {
text-align: center;
}

.footer-layout-centered .footer-navigation ul {
justify-content: center;
}

/* Footer Layout: Left Aligned */
.footer-layout-left-aligned .footer-inner {
text-align: left;
}

/* Footer Layout: Split */
.footer-layout-split .footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

/* Footer Navigation */
.footer-navigation {
margin-bottom: 1rem;
}

.footer-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
flex-wrap: wrap;
}

.footer-navigation a {
font-size: 0.875rem;
transition: opacity 0.2s;
}

.footer-navigation a:hover {
opacity: 0.7;
}

/* Footer Menu Position */
.footer-menu-below .footer-navigation {
order: 2;
margin-bottom: 0;
margin-top: 1rem;
}

.footer-menu-below .site-info {
order: 1;
}

/* Footer Widgets */
.footer-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-widgets .widget {
margin-bottom: 0;
}

.footer-widgets .widget-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
}

/* Site Info */
.site-info {
font-size: 0.875rem;
opacity: 0.8;
}

.site-info p {
margin: 0;
}

@media (max-width: 768px) {
.footer-layout-split .footer-inner {
    flex-direction: column;
    text-align: center;
}

.footer-navigation ul {
    justify-content: center;
}
}

/* ===== Widget Styles ===== */
.widget {
margin-bottom: 2rem;
}

.widget-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}

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

.widget li {
padding: 0.25rem 0;
}

/* ===== Content Styles ===== */
.content-area {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}

.content-area.has-sidebar {
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
align-items: start;
}

@media (max-width: 768px) {
.content-area.has-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
}
}

/* PressMeGPT: full-bleed entry header for blog posts (rendered outside .content-area) */
.single .entry-header,
.page .entry-header.full-bleed {
width: 100%;
margin: 0;
}

.primary-content {
min-width: 0;
}

.page-content-wrapper {
max-width: 1200px;
margin: 0 auto;
}

/* PressMeGPT inner pages render full-bleed (sections handle their own width) */
.pressmegpt-page-content,
.pressmegpt-page-content.entry-content {
width: 100%;
max-width: none;
margin: 0;
padding: 0;
line-height: inherit;
}

.page-header {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid #C9A84C;
}

.page-title {
font-size: 2rem;
margin: 0 0 0.5rem;
color: #F5E6C8;
}

.archive-description {
font-size: 1rem;
opacity: 0.7;
}

.entry-header {
margin-bottom: 1.5rem;
}

.entry-title {
font-size: 2rem;
margin: 0 0 0.5rem;
}

.entry-title a {
color: #F5E6C8;
text-decoration: none;
transition: color 0.2s;
}

.entry-title a:hover {
color: #C9A84C;
}

.entry-meta {
font-size: 0.875rem;
opacity: 0.7;
margin-bottom: 0.5rem;
}

.entry-content {
margin-bottom: 2rem;
line-height: 1.8;
}

.entry-footer {
font-size: 0.875rem;
padding: 1rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-bottom: 1.5rem;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
display: block;
margin-bottom: 0.25rem;
}

.entry-footer a {
color: #C9A84C;
}

.post-thumbnail {
margin-bottom: 1.5rem;
}

.post-thumbnail img {
border-radius: 8px;
width: 100%;
}

/* Post navigation */
.post-navigation,
.posts-navigation {
padding: 1.5rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-top: 1rem;
}

.post-navigation a,
.posts-navigation a,
.nav-links a {
color: #C9A84C;
text-decoration: none;
font-weight: 500;
}

.post-navigation a:hover,
.posts-navigation a:hover,
.nav-links a:hover {
text-decoration: underline;
}

.nav-subtitle {
display: block;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.6;
margin-bottom: 0.25rem;
}

/* ===== Search ===== */
.search-form {
display: flex;
max-width: 500px;
}

.search-form .search-field {
flex: 1;
padding: 10px 16px;
border: 2px solid rgba(0,0,0,0.15);
border-right: none;
border-radius: 6px 0 0 6px;
font-size: 1rem;
outline: none;
}

.search-form .search-field:focus {
border-color: #C9A84C;
}

.search-form .search-submit {
padding: 10px 20px;
background: #C9A84C;
color: #fff;
border: 2px solid #C9A84C;
border-radius: 0 6px 6px 0;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

.search-result {
padding-bottom: 1.5rem;
margin-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ===== Comments ===== */
.comments-area {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid rgba(0,0,0,0.08);
}

.comments-title {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}

.comment-list {
list-style: none;
padding: 0;
margin: 0;
}

.comment-list li {
padding: 1rem 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comment-list .comment-author img {
border-radius: 50%;
margin-right: 0.75rem;
vertical-align: middle;
}

.comment-form label {
display: block;
margin-bottom: 0.25rem;
font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 10px 14px;
border: 2px solid rgba(0,0,0,0.12);
border-radius: 6px;
font-size: 1rem;
margin-bottom: 1rem;
}

.comment-form textarea {
min-height: 120px;
resize: vertical;
}

.comment-form .submit-button,
.comment-form input[type="submit"] {
background: #C9A84C;
color: #fff;
border: none;
padding: 12px 24px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

/* ===== Sidebar ===== */
.widget-area {
padding: 1.5rem;
background: rgba(0,0,0,0.03);
border-radius: 8px;
}

.widget-area .widget {
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

.widget-area .widget:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.widget-area .widget-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #F5E6C8;
}

.widget-area ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget-area li {
padding: 0.35rem 0;
}

.widget-area a {
color: #C9A84C;
text-decoration: none;
}

.widget-area a:hover {
text-decoration: underline;
}

/* ===== Utility Classes ===== */
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}

.skip-link:focus {
background-color: #f1f1f1;
clip: auto !important;
clip-path: none;
color: #21759b;
display: block;
font-size: 0.875rem;
font-weight: 700;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}

/* Theme Designer Custom Styles */
:root { --td-color-primary: #C9A84C; --td-color-secondary: #4F3E1C; --td-color-background: #0E0D0D; --td-color-text: #B3A68E; --td-color-heading: #F5E6C8; --td-color-link: #C9A84C; --td-color-link-hover: #E8C97A; --td-color-btn-primary-bg: #1A1008; --td-color-btn-primary-text: #F5E6C8; --td-color-btn-primary-hover: #2D1A0F; --td-color-btn-secondary-bg: #140F0B; --td-color-btn-secondary-text: #B3A68E; --td-color-btn-secondary-hover: #211913; --td-color-header-bg: #1A1008; --td-color-header-text: #B3A68E; --td-color-footer-bg: #1A1008; --td-color-footer-text: #B3A68E; --td-font-body: 'Montserrat', sans-serif; --td-font-heading: 'Playfair Display', serif; --td-font-size-base: 16px; --td-heading-scale: 1.25;}.fse-accent-text { color: var(--td-color-primary); font-style: italic;}* { min-width: 0; box-sizing: border-box;}body { margin: 0; font-family: var(--td-font-body); color: var(--td-color-text); background-color: var(--td-color-background); line-height: 1.8;}img { max-width: 100%; height: auto;}a { text-decoration: none; color: var(--td-color-link);}.fse-group { width: 100% !important; max-width: none !important; margin: 0; padding: 0;}.fse-section { padding: 80px 0; position: relative; overflow: hidden;}.fse-section:not(#hero) { background-color: var(--td-color-background);}.fse-heading { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin-bottom: 20px;}.fse-heading.fse-section-heading { font-size: clamp(2.5rem, 5vw, 3.5rem); text-align: center; margin-bottom: 40px; letter-spacing: -0.02em;}.fse-paragraph { font-family: var(--td-font-body); color: var(--td-color-text); font-size: 1rem; line-height: 1.7;}.fse-button { display: inline-flex; justify-content: center; align-items: center; padding: 16px 32px; border-radius: 9999px; font-weight: 600; cursor: pointer; transition: transform 0.3s ease, filter 0.3s ease; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.05em;}.fse-button:hover { transform: translateY(-2px); filter: brightness(1.1); text-decoration: none;}.fse-button-primary { background-color: var(--td-color-btn-primary-bg); color: var(--td-color-btn-primary-text); box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);}.fse-button-secondary { background-color: var(--td-color-btn-secondary-bg); color: var(--td-color-btn-secondary-text); border: 1px solid var(--td-color-secondary);}.fse-button-link { background: none; border: none; padding: 0; color: var(--td-color-primary);}.fse-button-link:hover { transform: translateY(0); text-decoration: underline; filter: brightness(1.1);}.fse-columns { display: flex; flex-wrap: wrap; gap: 40px;}.fse-column { flex: 1 1 0; min-width: 300px;}.fse-header { padding: 15px 0; background: var(--td-color-header-bg); border-bottom: 1px solid rgba(255, 255, 255, 0.05);}.fse-header-content { display: flex; justify-content: space-between; align-items: center; width: 100% !important; max-width: none !important; margin: 0; padding: 0 40px;}.fse-header-left { display: flex; align-items: center; gap: 10px; flex: 0 1 auto; padding-left: 0;}.fse-header-right { display: flex; align-items: center; gap: 15px; flex: 0 0 auto; margin-left: auto; padding-right: 0;}.fse-logo-area { display: flex; align-items: center; gap: 10px;}.fse-logo { height: 90px; width: auto; min-height: 60px; filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));}.fse-site-title { font-size: 1.5rem; font-weight: 700; color: var(--td-color-heading); display: none;}.fse-main-nav { display: flex;}.fse-nav-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; justify-content: center; align-items: center;}.fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; white-space: nowrap; transition: color 0.3s ease;}.fse-nav-menu a:hover { color: var(--td-color-primary);}.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--td-color-header-text);}.fse-header-actions { display: flex; gap: 15px;}.fse-main-nav.mobile-open { display: flex !important; position: absolute; top: 100%; left: 0; right: 0; background: var(--td-color-header-bg, #fff); flex-direction: column; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 100;}.fse-main-nav.mobile-open .fse-nav-menu { flex-direction: column; gap: 15px; align-items: flex-start;}.fse-hero-section { min-height: 90vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-size: cover !important; background-position: center center !important; position: relative; overflow: hidden;}.fse-hero-section::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: 1;}.fse-hero-section::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); z-index: 2;}.fse-hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; width: 100% !important; max-width: none !important; padding: 20px 40px;}.fse-hero-logo { height: 250px; width: auto; margin-bottom: 20px; filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.5));}.fse-hero-tagline { font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 15px; color: rgba(255, 255, 255, 0.7);}.fse-hero-heading { font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.02em; margin-bottom: 25px; color: var(--td-color-heading); font-weight: 700; line-height: 1.2;}.fse-hero-subheading { font-size: 1.25rem; margin-bottom: 20px; color: rgba(255, 255, 255, 0.95); width: 100% !important; max-width: none !important; font-weight: 600;}.fse-hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;}.fse-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 60px;}.fse-scroll-indicator .fse-paragraph { margin: 0; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6);}.fse-scroll-indicator .fas { font-size: 1.5rem; color: var(--td-color-primary); animation: bounce 1.5s infinite;}.fse-about-section { padding-top: 100px; padding-bottom: 100px;}.fse-about-columns { align-items: center;}.fse-about-image-column { flex: 1 1 450px; text-align: center;}.fse-about-image { border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); width: 100%; max-width: 600px; }.fse-about-role { margin-top: 20px;}.fse-about-role .fse-paragraph { font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--td-color-primary); font-size: 0.9rem;}.fse-about-text-column { flex: 1 1 550px; padding: 0 40px;}.fse-about-text-column .fse-paragraph { margin-bottom: 25px;}.fse-features-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 50px; margin-bottom: 50px;}.fse-feature-item { text-align: center; padding: 20px;}.fse-feature-item .fse-feature-icon { font-size: 2.5rem; margin-bottom: 15px; display: block;}.fse-feature-item .fse-heading { font-family: var(--td-font-body); font-size: 1.2rem; margin-bottom: 10px;}.fse-products-section { padding-top: 100px; padding-bottom: 100px; display: none !important;}.fse-section-subheading { text-align: center; width: 100% !important; max-width: none !important; margin: 0 auto 60px; font-size: 1.1rem; padding: 0 40px;}.fse-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-bottom: 60px; padding: 0 40px;}.fse-product-card { background-color: #1A1008; border-radius: 8px; overflow: hidden; text-align: left; padding-bottom: 30px; box-shadow: 0 4px 30px rgba(0,0,0,0.15); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column;}.fse-product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(0,0,0,0.25);}.fse-image-container { width: 100%; aspect-ratio: 16/9; overflow: hidden;}.fse-image-container .fse-image { width: 100%; height: 100%; object-fit: cover;}.fse-product-details { padding: 30px 25px 0; flex-grow: 1;}.fse-product-details .fse-heading { font-family: var(--td-font-heading); font-size: 1.8rem; color: var(--td-color-heading); margin-bottom: 15px;}.fse-product-details .fse-product-description { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; color: var(--td-color-heading); font-weight: 500;}.fse-product-info-block { margin-bottom: 20px; font-size: 0.9rem; line-height: 1.5;}.fse-product-info-label { color: var(--td-color-primary); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; display: block; margin-bottom: 5px;}.fse-product-sediment-note { font-style: italic; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); margin-top: 10px;}.fse-fda-disclaimer { font-size: 0.75rem; font-style: italic; color: rgba(255, 255, 255, 0.4); border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 15px; margin-top: 15px; line-height: 1.4;}.fse-product-footer { text-align: center; width: 100% !important; max-width: none !important; padding: 0 40px;}.fse-product-footer .fse-paragraph { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 30px;}.fse-contact-section { padding-top: 100px; padding-bottom: 100px; background-color: #3D5A47;}.fse-contact-columns { justify-content: center; width: 100% !important; max-width: none !important; padding: 0 40px;}.fse-contact-info { flex: 1 1 400px; display: flex; flex-direction: column; gap: 40px;}.fse-contact-item { display: flex; flex-direction: column; align-items: flex-start;}.fse-contact-item .fas { font-size: 2rem; color: var(--td-color-primary); margin-bottom: 15px;}.fse-contact-item .fse-heading { font-family: var(--td-font-heading); font-size: 1.8rem; margin-bottom: 10px;}.fse-contact-item .fse-paragraph { margin: 0;}.fse-contact-form-column { flex: 1 1 500px;}.fse-contact-form { background-color: #1A1008; padding: 40px; border-radius: 8px; box-shadow: 0 4px 30px rgba(0,0,0,0.15);}.fse-form-group { margin-bottom: 25px;}.fse-form-label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--td-color-heading); font-size: 1.1rem;}.fse-form-input, .fse-form-textarea { width: 100%; padding: 15px; background-color: transparent; border: 1px solid rgba(201, 168, 76, 0.3); color: var(--td-color-heading); border-radius: 0; font-family: var(--td-font-body); font-size: 1rem;}.fse-form-input::placeholder, .fse-form-textarea::placeholder { color: rgba(255, 255, 255, 0.4);}.fse-form-input:focus, .fse-form-textarea:focus { outline: none; border-color: var(--td-color-primary);}.fse-form-textarea { resize: vertical;}.fse-form-group .fse-button { margin-top: 30px; width: 100%; text-align: center;}.fse-privacy-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-top: 15px;}.fse-social-media { margin-top: 80px; text-align: center;}.fse-social-media .fse-heading { font-family: var(--td-font-body); font-size: 1.5rem; margin-bottom: 30px;}.fse-social-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;}.fse-button-social { background-color: var(--td-color-btn-secondary-bg); color: var(--td-color-btn-secondary-text); border: 1px solid var(--td-color-secondary); padding: 12px 24px; font-weight: 500;}.fse-button-social:hover { filter: brightness(1.1); transform: translateY(-2px);}.fse-quote { font-family: var(--td-font-heading); font-style: italic; font-size: 1.8rem; width: 100% !important; max-width: none !important; margin: 0 auto 20px; color: var(--td-color-heading); padding: 0 40px;}.fse-author { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6);}.fse-footer { background: var(--td-color-footer-bg); padding: 60px 0 20px; color: var(--td-color-footer-text);}.fse-footer-content { width: 100% !important; max-width: none !important; margin: 0; padding: 0 40px;}.fse-footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px;}.fse-footer-columns .fse-column { text-align: left;}.fse-footer-columns .fse-column h4 { margin-bottom: 15px; font-size: 1.2rem; color: var(--td-color-heading); text-align: left; font-family: var(--td-font-heading);}.fse-footer-logo { height: 80px; width: auto; margin-bottom: 15px; filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));}.fse-footer-tagline { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.7); margin-top: 10px;}.fse-footer-menu { list-style: none; padding: 0; margin: 0; text-align: left;}.fse-footer-menu li { margin-bottom: 10px;}.fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; transition: color 0.3s ease;}.fse-footer-menu a:hover { color: var(--td-color-primary);}.fse-contact-list { list-style: none; padding: 0; margin: 0; text-align: left;}.fse-contact-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; justify-content: flex-start;}.fse-contact-list i { width: 20px; color: var(--td-color-primary); flex-shrink: 0; margin-top: 4px;}.fse-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 20px; text-align: center; margin-top: 40px;}.fse-copyright { font-size: 14px; text-align: center; margin-bottom: 10px;}.fse-handcrafted-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);}.animate-on-scroll, .animate-slide-left, .animate-slide-right, .animate-scale { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out;}.animate-slide-left { transform: translateX(-30px);}.animate-slide-right { transform: translateX(30px);}.animate-scale { transform: scale(0.95);}.animate-on-scroll.is-visible, .animate-slide-left.is-visible, .animate-slide-right.is-visible, .animate-scale.is-visible { opacity: 1; transform: translateY(0) translateX(0) scale(1);}.fse-product-card.animate-on-scroll, .fse-hero-logo.animate-on-scroll, .fse-scroll-indicator.animate-on-scroll, .fse-hero-tagline.animate-on-scroll, .fse-hero-subheading.animate-on-scroll, .fse-hero-buttons.animate-on-scroll { transform: translateY(20px); opacity: 0; transition: opacity 0.6s ease-out, transform 0.6s ease-out;}.fse-product-card.animate-on-scroll.is-visible, .fse-hero-logo.animate-on-scroll.is-visible, .fse-scroll-indicator.animate-on-scroll.is-visible, .fse-hero-tagline.animate-on-scroll.is-visible, .fse-hero-subheading.animate-on-scroll.is-visible, .fse-hero-buttons.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); animation-duration: 0.6s;}.fse-section-heading.animate-on-scroll.is-visible, .fse-section-subheading.animate-on-scroll.is-visible, .fse-social-media.animate-on-scroll.is-visible, .fse-product-footer.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0);}.fse-about-image-column.animate-slide-left.is-visible { transform: translateX(0); opacity: 1;}.fse-about-text-column.animate-slide-right.is-visible { transform: translateX(0); opacity: 1;}.fse-contact-info.animate-slide-left.is-visible { transform: translateX(0); opacity: 1;}.fse-contact-form-column.animate-slide-right.is-visible { transform: translateX(0); opacity: 1;}@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }@media (max-width: 992px) { .fse-about-columns, .fse-services-columns { flex-direction: column; text-align: center; } .fse-about-image, .fse-services-image { max-width: 80%; margin: 0 auto; } .fse-about-role { margin-bottom: 40px; } .fse-about-text-column, .fse-services-text-column { text-align: center; padding: 0 20px; } .fse-about-text-column .fse-button { margin-left: auto; margin-right: auto; } .fse-features-list { grid-template-columns: repeat(2, 1fr); } .fse-products-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }}@media (max-width: 768px) { .fse-toggle-button { display: block; order: 3; margin-left: auto; } .fse-main-nav { display: none; } .fse-header-actions { display: none; } .fse-header-content { flex-wrap: wrap; align-items: flex-start; padding: 0 20px; } .fse-logo-area { width: 100%; justify-content: center; } .fse-site-title { display: none; } .fse-logo { height: 75px; } .fse-column { flex: 1 1 100%; } .fse-hero-heading { font-size: 1.8rem; } .fse-hero-subheading { font-size: 1.2rem; } .fse-hero-buttons .fse-button { width: 100%; max-width: 280px; } .fse-section { padding: 60px 0; } .fse-section-heading { font-size: clamp(2rem, 8vw, 3rem); } .fse-section-subheading { font-size: 1rem; } .fse-about-image { max-width: 100%; } .fse-features-list { grid-template-columns: 1fr; } .fse-stats-grid { flex-direction: column; gap: 20px; } .fse-products-grid { grid-template-columns: 1fr; padding: 0 20px; } .fse-contact-columns { flex-direction: column; padding: 0 20px; } .fse-contact-item { text-align: center; align-items: center; } .fse-contact-item .fas, .fse-contact-item .fse-heading { margin-left: auto; margin-right: auto; } .fse-contact-form { padding: 30px; } .fse-quote { font-size: 1.4rem; padding: 0 20px; } .fse-footer-columns { grid-template-columns: 1fr; gap: 30px; } .fse-footer-columns .fse-column { text-align: center; } .fse-footer-columns .fse-column h4 { text-align: center; } .fse-footer-menu, .fse-contact-list { text-align: center; } .fse-contact-list li { justify-content: center; } .fse-contact-list i { margin-top: 0; } .fse-footer-content { padding: 0 20px; } .fse-about-text-column, .fse-hero-content, .fse-product-footer, .fse-section-subheading { padding: 0 20px; } }@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } @keyframes fadeSlideLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } } @keyframes fadeSlideRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } } @keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } .animate-on-scroll { opacity: 0; } .animate-slide-left { opacity: 0; } .animate-slide-right { opacity: 0; } .animate-scale { opacity: 0; } .animate-on-scroll.visible { animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; } .animate-slide-left.visible { animation: fadeSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; } .animate-slide-right.visible { animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; } .animate-scale.visible { animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; } .fse-button { transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease; } .fse-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); filter: brightness(1.1); text-decoration: none !important; } .fse-button:hover * { text-decoration: none !important; color: inherit !important; } .fse-about-section { background-color: #3D5A47; } .fse-services-section { padding-top: 100px; padding-bottom: 100px; background-color: var(--td-color-background); } .fse-services-content { width: 100% !important; max-width: none !important; padding: 0 40px; } .fse-services-columns { align-items: flex-start; } .fse-services-image-column { flex: 0 1 400px; } .fse-services-text-column { flex: 1 1 600px; padding: 0; } .fse-services-body { margin-bottom: 50px; text-align: left; } .fse-focus-area { margin-top: 60px; } .fse-focus-area .fse-heading { text-align: left; font-size: 1.8rem; margin-bottom: 30px; } .fse-focus-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px 30px; list-style: none; padding: 0; margin: 0; } .fse-focus-list li { position: relative; padding-left: 25px; color: var(--td-color-text); } .fse-focus-list li::before { content: '◈'; position: absolute; left: 0; color: var(--td-color-primary); } .fse-services-cta { text-align: center; margin-top: 60px; padding: 40px; background: rgba(201, 168, 76, 0.05); border-radius: 8px; } .fse-services-image { width: 100%; border-radius: 8px; margin-bottom: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); } .fse-pricing-info { margin: 40px 0; padding: 25px; border-left: 3px solid var(--td-color-primary); background: rgba(255, 255, 255, 0.03); text-align: left; } .fse-pricing-info .fse-paragraph { margin-bottom: 10px; font-weight: 500; } .fse-pricing-info a { text-decoration: underline; }



/* ===== Per-Page Scoped Styles (PressMeGPT) ===== */
/* ===== Page: medicinals-page ===== */
:root { --td-color-primary: #C9A84C; --td-color-secondary: #4F3E1C; --td-color-background: #0E0D0D; --td-color-text: #B3A68E; --td-color-heading: #F5E6C8; --td-color-link: #C9A84C; --td-color-link-hover: #E8C97A; --td-color-btn-primary-bg: #1A1008; --td-color-btn-primary-text: #F5E6C8; --td-color-btn-primary-hover: #2D1A0F; --td-color-btn-secondary-bg: #140F0B; --td-color-btn-secondary-text: #B3A68E; --td-color-btn-secondary-hover: #211913; --td-color-header-bg: #1A1008; --td-color-header-text: #B3A68E; --td-color-footer-bg: #1A1008; --td-color-footer-text: #B3A68E; --td-font-body: 'Montserrat', sans-serif; --td-font-heading: 'Playfair Display', serif; --td-font-size-base: 16px; --td-heading-scale: 1.25;}
body.pmgpt-page-medicinals-page .fse-accent-text { color: var(--td-color-primary); font-style: italic;}
body.pmgpt-page-medicinals-page * { min-width: 0; box-sizing: border-box;}
body.pmgpt-page-medicinals-page { margin: 0; font-family: var(--td-font-body); color: var(--td-color-text); background-color: var(--td-color-background); line-height: 1.8;}
body.pmgpt-page-medicinals-page img { max-width: 100%; height: auto;}
body.pmgpt-page-medicinals-page a { text-decoration: none; color: var(--td-color-link);}
body.pmgpt-page-medicinals-page .fse-group { width: 100% !important; max-width: none !important; margin: 0; padding: 0;}
body.pmgpt-page-medicinals-page .fse-section { padding: 80px 0; position: relative; overflow: hidden;}
body.pmgpt-page-medicinals-page .fse-section:not(#hero) { background-color: var(--td-color-background);}
body.pmgpt-page-medicinals-page .fse-heading { font-family: var(--td-font-heading); color: var(--td-color-heading); line-height: 1.1; margin-bottom: 20px;}
body.pmgpt-page-medicinals-page .fse-heading.fse-section-heading { font-size: clamp(2.5rem, 5vw, 3.5rem); text-align: center; margin-bottom: 40px; letter-spacing: -0.02em;}
body.pmgpt-page-medicinals-page .fse-paragraph { font-family: var(--td-font-body); color: var(--td-color-text); font-size: 1rem; line-height: 1.7;}
body.pmgpt-page-medicinals-page .fse-button { display: inline-flex; justify-content: center; align-items: center; padding: 16px 32px; border-radius: 9999px; font-weight: 600; cursor: pointer; transition: transform 0.3s ease, filter 0.3s ease; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.05em;}
body.pmgpt-page-medicinals-page .fse-button:hover { transform: translateY(-2px); filter: brightness(1.1); text-decoration: none;}
body.pmgpt-page-medicinals-page .fse-button-primary { background-color: var(--td-color-btn-primary-bg); color: var(--td-color-btn-primary-text); box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);}
body.pmgpt-page-medicinals-page .fse-button-secondary { background-color: var(--td-color-btn-secondary-bg); color: var(--td-color-btn-secondary-text); border: 1px solid var(--td-color-secondary);}
body.pmgpt-page-medicinals-page .fse-button-link { background: none; border: none; padding: 0; color: var(--td-color-primary);}
body.pmgpt-page-medicinals-page .fse-button-link:hover { transform: translateY(0); text-decoration: underline; filter: brightness(1.1);}
body.pmgpt-page-medicinals-page .fse-columns { display: flex; flex-wrap: wrap; gap: 40px;}
body.pmgpt-page-medicinals-page .fse-column { flex: 1 1 0; min-width: 300px;}
.fse-header { padding: 15px 0; background: var(--td-color-header-bg); border-bottom: 1px solid rgba(255, 255, 255, 0.05); position: sticky !important; top: 0 !important; z-index: 1000 !important;}
.fse-header-content { display: flex; justify-content: space-between; align-items: center; width: 100% !important; max-width: none !important; margin: 0; padding: 0 40px;}
.fse-header-left { display: flex; align-items: center; gap: 10px; flex: 0 1 auto; padding-left: 0;}
.fse-header-right { display: flex; align-items: center; gap: 15px; flex: 0 0 auto; margin-left: auto; padding-right: 0;}
body.pmgpt-page-medicinals-page .fse-logo-area { display: flex; align-items: center; gap: 10px;}
body.pmgpt-page-medicinals-page .fse-logo { height: 90px; width: auto; min-height: 60px; filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.4));}
body.pmgpt-page-medicinals-page .fse-site-title { font-size: 1.5rem; font-weight: 700; color: var(--td-color-heading); display: none;}
body.pmgpt-page-medicinals-page .fse-main-nav { display: flex;}
body.pmgpt-page-medicinals-page .fse-nav-menu { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; justify-content: center; align-items: center;}
body.pmgpt-page-medicinals-page .fse-nav-menu a { text-decoration: none; color: var(--td-color-header-text); font-weight: 500; white-space: nowrap; transition: color 0.3s ease;}
body.pmgpt-page-medicinals-page .fse-nav-menu a:hover { color: var(--td-color-primary);}
.fse-toggle-button { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--td-color-header-text);}
.fse-header-actions { display: flex; gap: 15px;}
body.pmgpt-page-medicinals-page .fse-main-nav.mobile-open { display: flex !important; position: absolute; top: 100%; left: 0; right: 0; background: var(--td-color-header-bg, #fff); flex-direction: column; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); z-index: 100;}
body.pmgpt-page-medicinals-page .fse-main-nav.mobile-open .fse-nav-menu { flex-direction: column; gap: 15px; align-items: flex-start;}
body.pmgpt-page-medicinals-page .fse-hero-section { min-height: 90vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-size: cover !important; background-position: center center !important; position: relative; overflow: hidden;}
body.pmgpt-page-medicinals-page .fse-hero-section::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); z-index: 1;}
body.pmgpt-page-medicinals-page .fse-hero-section::after { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E"); z-index: 2;}
body.pmgpt-page-medicinals-page .fse-hero-content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; width: 100% !important; max-width: none !important; padding: 20px 40px;}
body.pmgpt-page-medicinals-page .fse-hero-logo { height: 250px; width: auto; margin-bottom: 20px; filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.5));}
body.pmgpt-page-medicinals-page .fse-hero-tagline { font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 15px; color: rgba(255, 255, 255, 0.7);}
body.pmgpt-page-medicinals-page .fse-hero-heading { font-size: clamp(1.8rem, 4vw, 2.5rem); letter-spacing: -0.02em; margin-bottom: 25px; color: var(--td-color-heading); font-weight: 700; line-height: 1.2;}
body.pmgpt-page-medicinals-page .fse-hero-subheading { font-size: 1.5rem; margin-bottom: 20px; color: rgba(255, 255, 255, 0.95); width: 100% !important; max-width: none !important; font-weight: 600;}
body.pmgpt-page-medicinals-page .fse-hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;}
body.pmgpt-page-medicinals-page .fse-scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 60px;}
body.pmgpt-page-medicinals-page .fse-scroll-indicator .fse-paragraph { margin: 0; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6);}
body.pmgpt-page-medicinals-page .fse-scroll-indicator .fas { font-size: 1.5rem; color: var(--td-color-primary); animation: bounce 1.5s infinite;}
body.pmgpt-page-medicinals-page .fse-about-section { padding-top: 100px; padding-bottom: 100px;}
body.pmgpt-page-medicinals-page .fse-about-columns { align-items: center;}
body.pmgpt-page-medicinals-page .fse-about-image-column { flex: 1 1 450px; text-align: center;}
body.pmgpt-page-medicinals-page .fse-about-image { border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); width: 100%; max-width: 600px; }
body.pmgpt-page-medicinals-page .fse-about-role { margin-top: 20px;}
body.pmgpt-page-medicinals-page .fse-about-role .fse-paragraph { font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--td-color-primary); font-size: 0.9rem;}
body.pmgpt-page-medicinals-page .fse-about-text-column { flex: 1 1 550px; padding: 0 40px;}
body.pmgpt-page-medicinals-page .fse-about-text-column .fse-paragraph { margin-bottom: 25px;}
body.pmgpt-page-medicinals-page .fse-features-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 50px; margin-bottom: 50px;}
body.pmgpt-page-medicinals-page .fse-feature-item { text-align: center; padding: 20px;}
body.pmgpt-page-medicinals-page .fse-feature-item .fse-feature-icon { font-size: 2.5rem; margin-bottom: 15px; display: block;}
body.pmgpt-page-medicinals-page .fse-feature-item .fse-heading { font-family: var(--td-font-body); font-size: 1.2rem; margin-bottom: 10px;}
body.pmgpt-page-medicinals-page .fse-products-section { padding-top: 100px; padding-bottom: 100px; display: none;}
body.pmgpt-page-medicinals-page .fse-section-subheading { text-align: center; width: 100% !important; max-width: none !important; margin: 0 auto 60px; font-size: 1.1rem; padding: 0 40px;}
body.pmgpt-page-medicinals-page .fse-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-bottom: 60px; padding: 0 40px;}
body.pmgpt-page-medicinals-page .fse-product-card { background-color: #1A1008; border-radius: 8px; overflow: hidden; text-align: left; padding-bottom: 30px; box-shadow: 0 4px 30px rgba(0,0,0,0.15); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column;}
body.pmgpt-page-medicinals-page .fse-product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 40px rgba(0,0,0,0.25);}
body.pmgpt-page-medicinals-page .fse-image-container { width: 100%; aspect-ratio: 16/9; overflow: hidden;}
body.pmgpt-page-medicinals-page .fse-image-container .fse-image { width: 100%; height: 100%; object-fit: cover;}
body.pmgpt-page-medicinals-page .fse-product-details { padding: 30px 25px 0; flex-grow: 1;}
body.pmgpt-page-medicinals-page .fse-product-details .fse-heading { font-family: var(--td-font-heading); font-size: 1.8rem; color: var(--td-color-heading); margin-bottom: 15px;}
body.pmgpt-page-medicinals-page .fse-product-details .fse-product-description { font-size: 1rem; line-height: 1.6; margin-bottom: 20px; color: var(--td-color-heading); font-weight: 500;}
body.pmgpt-page-medicinals-page .fse-product-info-block { margin-bottom: 20px; font-size: 0.9rem; line-height: 1.5;}
body.pmgpt-page-medicinals-page .fse-product-info-label { color: var(--td-color-primary); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.05em; display: block; margin-bottom: 5px;}
body.pmgpt-page-medicinals-page .fse-product-sediment-note { font-style: italic; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); margin-top: 10px;}
body.pmgpt-page-medicinals-page .fse-fda-disclaimer { font-size: 0.75rem; font-style: italic; color: rgba(255, 255, 255, 0.4); border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 15px; margin-top: 15px; line-height: 1.4;}
body.pmgpt-page-medicinals-page .fse-product-footer { text-align: center; width: 100% !important; max-width: none !important; padding: 0 40px;}
body.pmgpt-page-medicinals-page .fse-product-footer .fse-paragraph { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 30px;}
body.pmgpt-page-medicinals-page .fse-contact-section { padding-top: 100px; padding-bottom: 100px; background-color: #3D5A47;}
body.pmgpt-page-medicinals-page .fse-contact-columns { justify-content: center; width: 100% !important; max-width: none !important; padding: 0 40px;}
body.pmgpt-page-medicinals-page .fse-contact-info { flex: 1 1 400px; display: flex; flex-direction: column; gap: 40px;}
body.pmgpt-page-medicinals-page .fse-contact-info.animate-slide-left.is-visible { transform: translateX(0); opacity: 1;}
body.pmgpt-page-medicinals-page .fse-contact-item { display: flex; flex-direction: column; align-items: flex-start;}
body.pmgpt-page-medicinals-page .fse-contact-item .fas { font-size: 2rem; color: var(--td-color-primary); margin-bottom: 15px;}
body.pmgpt-page-medicinals-page .fse-contact-item .fse-heading { font-family: var(--td-font-heading); font-size: 1.8rem; margin-bottom: 10px;}
body.pmgpt-page-medicinals-page .fse-contact-item .fse-paragraph { margin: 0;}
body.pmgpt-page-medicinals-page .fse-contact-form-column { flex: 1 1 500px;}
body.pmgpt-page-medicinals-page .fse-contact-form { background-color: #1A1008; padding: 40px; border-radius: 8px; box-shadow: 0 4px 30px rgba(0,0,0,0.15);}
body.pmgpt-page-medicinals-page .fse-form-group { margin-bottom: 25px;}
body.pmgpt-page-medicinals-page .fse-form-label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--td-color-heading); font-size: 1.1rem;}
body.pmgpt-page-medicinals-page .fse-form-input, body.pmgpt-page-medicinals-page .fse-form-textarea { width: 100%; padding: 15px; background-color: transparent; border: 1px solid rgba(201, 168, 76, 0.3); color: var(--td-color-heading); border-radius: 0; font-family: var(--td-font-body); font-size: 1rem;}
body.pmgpt-page-medicinals-page .fse-form-input::placeholder, body.pmgpt-page-medicinals-page .fse-form-textarea::placeholder { color: rgba(255, 255, 255, 0.4);}
body.pmgpt-page-medicinals-page .fse-form-input:focus, body.pmgpt-page-medicinals-page .fse-form-textarea:focus { outline: none; border-color: var(--td-color-primary);}
body.pmgpt-page-medicinals-page .fse-form-textarea { resize: vertical;}
body.pmgpt-page-medicinals-page .fse-form-group .fse-button { margin-top: 30px; width: 100%; text-align: center;}
body.pmgpt-page-medicinals-page .fse-privacy-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); margin-top: 15px;}
body.pmgpt-page-medicinals-page .fse-social-media { margin-top: 80px; text-align: center;}
body.pmgpt-page-medicinals-page .fse-social-media .fse-heading { font-family: var(--td-font-body); font-size: 1.5rem; margin-bottom: 30px;}
body.pmgpt-page-medicinals-page .fse-social-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;}
body.pmgpt-page-medicinals-page .fse-button-social { background-color: var(--td-color-btn-secondary-bg); color: var(--td-color-btn-secondary-text); border: 1px solid var(--td-color-secondary); padding: 12px 24px; font-weight: 500;}
body.pmgpt-page-medicinals-page .fse-button-social:hover { filter: brightness(1.1); transform: translateY(-2px);}
body.pmgpt-page-medicinals-page .fse-quote { font-family: var(--td-font-heading); font-style: italic; font-size: 1.8rem; width: 100% !important; max-width: none !important; margin: 0 auto 20px; color: var(--td-color-heading); padding: 0 40px;}
body.pmgpt-page-medicinals-page .fse-author { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6);}
body.pmgpt-page-medicinals-page .fse-footer { background: var(--td-color-footer-bg); padding: 60px 0 20px; color: var(--td-color-footer-text);}
body.pmgpt-page-medicinals-page .fse-footer-content { width: 100% !important; max-width: none !important; margin: 0; padding: 0 40px;}
body.pmgpt-page-medicinals-page .fse-footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px;}
body.pmgpt-page-medicinals-page .fse-footer-columns .fse-column { text-align: left;}
body.pmgpt-page-medicinals-page .fse-footer-columns .fse-column h4 { margin-bottom: 15px; font-size: 1.2rem; color: var(--td-color-heading); text-align: left; font-family: var(--td-font-heading);}
body.pmgpt-page-medicinals-page .fse-footer-logo { height: 80px; width: auto; margin-bottom: 15px; filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));}
body.pmgpt-page-medicinals-page .fse-footer-tagline { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.7); margin-top: 10px;}
body.pmgpt-page-medicinals-page .fse-footer-menu { list-style: none; padding: 0; margin: 0; text-align: left;}
body.pmgpt-page-medicinals-page .fse-footer-menu li { margin-bottom: 10px;}
body.pmgpt-page-medicinals-page .fse-footer-menu a { color: var(--td-color-footer-text); text-decoration: none; transition: color 0.3s ease;}
body.pmgpt-page-medicinals-page .fse-footer-menu a:hover { color: var(--td-color-primary);}
body.pmgpt-page-medicinals-page .fse-contact-list { list-style: none; padding: 0; margin: 0; text-align: left;}
body.pmgpt-page-medicinals-page .fse-contact-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; justify-content: flex-start;}
body.pmgpt-page-medicinals-page .fse-contact-list i { width: 20px; color: var(--td-color-primary); flex-shrink: 0; margin-top: 4px;}
body.pmgpt-page-medicinals-page .fse-footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.15); padding-top: 20px; text-align: center; margin-top: 40px;}
body.pmgpt-page-medicinals-page .fse-copyright { font-size: 14px; text-align: center; margin-bottom: 10px;}
body.pmgpt-page-medicinals-page .fse-handcrafted-text { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);}
body.pmgpt-page-medicinals-page .animate-on-scroll, body.pmgpt-page-medicinals-page .animate-slide-left, body.pmgpt-page-medicinals-page .animate-slide-right, body.pmgpt-page-medicinals-page .animate-scale { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);}
body.pmgpt-page-medicinals-page .animate-slide-left { transform: translateX(-30px);}
body.pmgpt-page-medicinals-page .animate-slide-right { transform: translateX(30px);}
body.pmgpt-page-medicinals-page .animate-scale { transform: scale(0.95);}
body.pmgpt-page-medicinals-page .animate-on-scroll.is-visible, body.pmgpt-page-medicinals-page .animate-slide-left.is-visible, body.pmgpt-page-medicinals-page .animate-slide-right.is-visible, body.pmgpt-page-medicinals-page .animate-scale.is-visible { opacity: 1 !important; transform: translateY(0) translateX(0) scale(1) !important;}
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
@media (max-width: 992px) {
body.pmgpt-page-medicinals-page .fse-about-columns, body.pmgpt-page-medicinals-page .fse-services-columns { flex-direction: column; text-align: center; }
body.pmgpt-page-medicinals-page .fse-about-image, body.pmgpt-page-medicinals-page .fse-services-image { max-width: 80%; margin: 0 auto; }
body.pmgpt-page-medicinals-page .fse-about-role { margin-bottom: 40px; }
body.pmgpt-page-medicinals-page .fse-about-text-column, body.pmgpt-page-medicinals-page .fse-services-text-column { text-align: center; padding: 0 20px; }
body.pmgpt-page-medicinals-page .fse-about-text-column .fse-button { margin-left: auto; margin-right: auto; }
body.pmgpt-page-medicinals-page .fse-features-list { grid-template-columns: repeat(2, 1fr); }
body.pmgpt-page-medicinals-page .fse-products-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
}
@media (max-width: 768px) {
.fse-toggle-button { display: block; order: 3; margin-left: auto; }
body.pmgpt-page-medicinals-page .fse-main-nav { display: none; }
.fse-header-actions { display: none; }
.fse-header-content { flex-wrap: wrap; align-items: flex-start; padding: 0 20px; }
body.pmgpt-page-medicinals-page .fse-logo-area { width: 100%; justify-content: center; }
body.pmgpt-page-medicinals-page .fse-site-title { display: none; }
body.pmgpt-page-medicinals-page .fse-logo { height: 75px; }
body.pmgpt-page-medicinals-page .fse-column { flex: 1 1 100%; }
body.pmgpt-page-medicinals-page .fse-hero-heading { font-size: 1.8rem; }
body.pmgpt-page-medicinals-page .fse-hero-subheading { font-size: 1.2rem; }
body.pmgpt-page-medicinals-page .fse-hero-buttons .fse-button { width: 100%; max-width: 280px; }
body.pmgpt-page-medicinals-page .fse-section { padding: 60px 0; }
body.pmgpt-page-medicinals-page .fse-section-heading { font-size: clamp(2rem, 8vw, 3rem); }
body.pmgpt-page-medicinals-page .fse-section-subheading { font-size: 1rem; }
body.pmgpt-page-medicinals-page .fse-about-image { max-width: 100%; }
body.pmgpt-page-medicinals-page .fse-features-list { grid-template-columns: 1fr; }
body.pmgpt-page-medicinals-page .fse-stats-grid { flex-direction: column; gap: 20px; }
body.pmgpt-page-medicinals-page .fse-products-grid { grid-template-columns: 1fr; padding: 0 20px; }
body.pmgpt-page-medicinals-page .fse-contact-item { text-align: center; align-items: center; }
body.pmgpt-page-medicinals-page .fse-contact-item .fas, body.pmgpt-page-medicinals-page .fse-contact-item .fse-heading { margin-left: auto; margin-right: auto; }
body.pmgpt-page-medicinals-page .fse-contact-form { padding: 30px; }
body.pmgpt-page-medicinals-page .fse-quote { font-size: 1.4rem; padding: 0 20px; }
body.pmgpt-page-medicinals-page .fse-footer-columns { grid-template-columns: 1fr; gap: 30px; }
body.pmgpt-page-medicinals-page .fse-footer-columns .fse-column { text-align: center; }
body.pmgpt-page-medicinals-page .fse-footer-columns .fse-column h4 { text-align: center; }
body.pmgpt-page-medicinals-page .fse-footer-menu, body.pmgpt-page-medicinals-page .fse-contact-list { text-align: center; }
body.pmgpt-page-medicinals-page .fse-contact-list li { justify-content: center; }
body.pmgpt-page-medicinals-page .fse-contact-list i { margin-top: 0; }
body.pmgpt-page-medicinals-page .fse-footer-content { padding: 0 20px; }
body.pmgpt-page-medicinals-page .fse-about-text-column, body.pmgpt-page-medicinals-page .fse-hero-content, body.pmgpt-page-medicinals-page .fse-product-footer, body.pmgpt-page-medicinals-page .fse-section-subheading { padding: 0 20px; }
}
body.pmgpt-page-medicinals-page .medicinals-hero {
 text-align: center;
 padding: 120px 20px 60px;
 background: linear-gradient(rgba(14, 13, 13, 0.7), rgba(14, 13, 13, 0.9)), url('https://tmixwolpvcqsnzjfxkly.supabase.co/storage/v1/object/public/project-images/45d7e048-b9e6-4116-ab4f-573ce0bdd544/c54339a3-21c6-4c2b-bda5-28799d5c03f6/custom-1781483352528.jpg');
 background-size: cover;
 background-position: center;
}
body.pmgpt-page-medicinals-page .medicinals-hero h1 {
 font-size: clamp(3rem, 8vw, 5rem);
 margin-bottom: 10px;
 font-weight: 400;
 font-family: var(--td-font-heading);
 color: var(--td-color-heading);
}
body.pmgpt-page-medicinals-page .medicinals-hero .coming-soon {
 color: var(--td-color-primary);
 font-weight: 700;
 text-transform: uppercase;
 font-size: 1.1rem;
 letter-spacing: 0.1em;
 display: block;
 margin-bottom: 40px;
}
body.pmgpt-page-medicinals-page .medicinals-hero .hero-intro {
 max-width: 800px;
 margin: 0 auto;
 font-size: 1.1rem;
 line-height: 1.6;
 color: var(--td-color-text);
 opacity: 0.9;
}
body.pmgpt-page-medicinals-page .fse-medicinals-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 30px;
 padding: 60px 40px 100px;
 max-width: 1400px;
 margin: 0 auto;
}
body.pmgpt-page-medicinals-page .medicinal-card {
 background-color: #140F0B;
 border-radius: 8px;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
 box-shadow: 0 10px 30px rgba(0,0,0,0.3);
 border: 1px solid rgba(201, 168, 76, 0.05);
}
body.pmgpt-page-medicinals-page .medicinal-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 40px rgba(0,0,0,0.5);
 border-color: rgba(201, 168, 76, 0.2);
}
body.pmgpt-page-medicinals-page .medicinal-card-image {
 width: 100%;
 aspect-ratio: 4/5;
 overflow: hidden;
}
body.pmgpt-page-medicinals-page .medicinal-card-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: transform 0.6s ease;
}
body.pmgpt-page-medicinals-page .medicinal-card:hover .medicinal-card-image img {
 transform: scale(1.05);
}
body.pmgpt-page-medicinals-page .medicinal-card-content {
 padding: 30px 25px;
 flex-grow: 1;
 border-top: 1px solid rgba(201, 168, 76, 0.1);
}
body.pmgpt-page-medicinals-page .medicinal-card-content h3 {
 font-family: var(--td-font-heading);
 font-size: 1.8rem;
 color: var(--td-color-heading);
 margin: 0 0 15px;
}
body.pmgpt-page-medicinals-page .medicinal-card-content p {
 font-size: 0.95rem;
 color: var(--td-color-text);
 line-height: 1.6;
 margin: 0;
}
body.pmgpt-page-medicinals-page .fse-disclaimer-small {
 font-size: 0.7rem;
 color: rgba(255, 255, 255, 0.3);
 font-style: italic;
 margin-top: 20px;
 padding-top: 15px;
 border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 992px) {
body.pmgpt-page-medicinals-page .fse-medicinals-grid {
 grid-template-columns: repeat(2, 1fr);
 }
}
@media (max-width: 600px) {
body.pmgpt-page-medicinals-page .fse-medicinals-grid {
 grid-template-columns: 1fr;
 padding: 40px 20px;
 }
}

/* ===== PressMeGPT: Blog/Archive Layout Enforcement (must win over master CSS) ===== */
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
max-width: 1200px !important;
margin-left: auto !important;
margin-right: auto !important;
padding-left: 2rem !important;
padding-right: 2rem !important;
box-sizing: border-box;
}

@media (max-width: 768px) {
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
}

body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
display: grid !important;
grid-template-columns: minmax(0, 1fr) 300px !important;
gap: 3rem !important;
align-items: start;
}

@media (max-width: 900px) {
body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}
}

body.single .primary-content,
body.single .primary-content > article,
body.single .entry-content,
body.single .entry-footer,
body.single .post-navigation,
body.single .comments-area,
body.blog .primary-content,
body.archive .primary-content {
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
box-sizing: border-box;
}
