/*
Theme Name: PeptideWebMD
Theme URI: https://peptidewebmd.com
Author: PeptideWebMD Team
Author URI: https://peptidewebmd.com
Description: A custom WordPress theme for PeptideWebMD - Advanced Peptide Therapy website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peptidewebmd
Tags: medical, health, peptides, ecommerce
*/

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
@import url('https://use.typekit.net/af/949f99/00000000000000003b9b3068/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #2c2c2c;
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

/* Headings with Proxima Nova Regular */
h1, h2, h3, h4, h5, h6 {
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

/* Paragraphs with Proxima Nova Regular */
p {
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
}

/* Components Button Global Style */
.components-button:not(.is-link) {
    min-height: 3em !important;
    background: #028476 !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.15) !important;
}

/* Full Width Page Template */
.site-main.full-width {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.site-main.full-width article {
    width: 100%;
    max-width: 100%;
}

.site-main.full-width .entry-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Top Strip */
.consultation-strip {
    background: #028476;
    color: white;
    padding: 12px 0;
    text-align: center;
}

.consultation-strip p {
    font-size: 14px;
    font-weight: 400;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 800px;
    width: 90%;
    position: relative;
    animation: searchSlideUp 0.3s ease;
}

@keyframes searchSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.search-close:hover {
    transform: rotate(90deg);
    opacity: 0.7;
}

.search-form {
    display: flex;
    gap: 10px;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 18px;
    background: transparent;
    color: #2c2c2c;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, sans-serif;
}

.search-input::placeholder {
    color: #999;
}

.search-submit {
    background: #028476;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(2, 132, 118, 0.25);
}

.search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(2, 132, 118, 0.35);
}

.search-submit svg {
    width: 20px;
    height: 20px;
}

/* Search Toggle Button */
.search-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.search-toggle-btn:hover {
    color: #028476;
    transform: scale(1.1);
}

.search-toggle-btn svg {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e8e8e8;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px !important;
    object-fit: contain;
}

/* Override WooCommerce image styles for logo */
.header .logo-image {
    max-width: 180px !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #028476;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: #4a4a4a;
    text-decoration: none;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #028476;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px 10px 30px;
    color: #4a4a4a;
    text-decoration: none;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f5f9f7;
    color: #028476;
}

.dropdown-submenu-parent {
    position: relative;
}

.dropdown-submenu-parent::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 15px;
    height: 100%;
    z-index: 999;
}

.dropdown-submenu {
    display: block;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 600;
    color: #028476;
    padding: 12px 20px;
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.dropdown-submenu::after {
    content: '›';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #028476;
}

.dropdown-submenu:hover {
    background: #f5f9f7;
}

.dropdown-submenu-parent:hover .dropdown-submenu {
    background: #f5f9f7;
}

.dropdown-submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-left: 2px;
    z-index: 1001;
}

.dropdown-submenu-parent:hover .dropdown-submenu-content {
    display: block;
}

.dropdown-submenu-content a {
    display: block;
    padding: 10px 20px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s ease;
}

.dropdown-submenu-content a:hover {
    background: #f5f9f7;
    color: #028476;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-btn {
    position: relative;
    background: white;
    color: #028476;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1.5px solid #e8e8e8;
    cursor: pointer;
    text-decoration: none;
}

.cart-btn:hover {
    background: #f5f9f7;
    border-color: #028476;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #028476;
    color: white;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.login-btn {
    background: white;
    color: #028476;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 1.5px solid #028476;
    cursor: pointer;
}

.login-btn:hover {
    background: #f5f9f7;
}

.consultation-btn {
    background: #028476;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(2, 132, 118, 0.15);
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.25);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #028476;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 20px 20px;
}

.mobile-sidebar-logo {
    padding: 20px 0 30px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
}

.mobile-logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-item {
    display: block;
    padding: 15px 20px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    background: #f5f9f7;
    color: #028476;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #4a4a4a;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-dropdown-toggle::after {
    content: '+';
    font-size: 20px;
    color: #028476;
    transition: transform 0.3s ease;
}

.mobile-dropdown-toggle.active::after {
    transform: rotate(45deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
}

.mobile-dropdown-content.active {
    max-height: 2000px;
}

.mobile-submenu-title {
    display: block;
    padding: 12px 20px;
    color: #028476;
    font-weight: 600;
    font-size: 14px;
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-submenu-item {
    display: block;
    padding: 10px 20px 10px 30px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-submenu-item:hover {
    background: #ffffff;
    color: #028476;
}

.mobile-header-actions {
    display: none;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.btn-primary {
    background: #028476;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(45, 90, 61, 0.15);
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 90, 61, 0.25);
}

.btn-secondary {
    background: white;
    color: #028476;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid #028476;
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: #f5f9f7;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 50px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand .footer-logo img {
    max-height: 50px;
    max-width: 200px;
    width: auto;
    height: auto;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand h3 a {
    color: #fff;
    text-decoration: none;
}

.footer-brand h3 a:hover {
    color: #028476;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
    font-weight: 300;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4a7c59;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #777;
}

/* Therapy Banner Block */
.wp-block-custom-sections-about-hero.hero {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.wp-block-custom-sections-about-hero .hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 80px 40px;
}

.wp-block-custom-sections-about-hero h1 {
    font-size: 48px;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2;
    color: #1a1a1a;
}

.wp-block-custom-sections-about-hero p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    color: #555;
}

/* Therapy Main Banner Block */
.hero.cta-section {
    background: #028476;
    color: white;
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.hero.cta-section .hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero.cta-section h1 {
    font-size: 48px;
    font-weight: 200;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.hero.cta-section p {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
}

/* Therapy Banner Block Pattern */
.therapy-banner {
    background: #028476;
    color: white;
    padding: 80px 0;
    text-align: center;
    width: 100%;
}

.therapy-banner-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.therapy-banner h1 {
    font-size: 48px;
    font-weight: 200;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.therapy-banner p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
}

/* How It Works Banner Block */
.hero-container-copy {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: block;
}

.hero.cta-section .hero-container-copy h1 {
    font-size: 48px;
    font-weight: 200;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.hero.cta-section .hero-container-copy p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }

    .header-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block !important;
    }

    .mobile-header-actions {
        display: flex !important;
    }

    .header-container {
        padding: 0 20px;
        justify-content: space-between;
    }

    .logo-image {
        height: 35px;
        max-width: 150px !important;
    }

    .consultation-strip p {
        font-size: 12px;
    }

    /* Search Mobile Responsive */
    .search-container {
        width: 95%;
        padding: 0 15px;
    }

    .search-form {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .search-input {
        padding: 15px 20px;
        font-size: 16px;
    }

    .search-submit {
        width: 100%;
        justify-content: center;
        padding: 15px;
        border-radius: 10px;
    }

    .search-close {
        top: -40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .wp-block-custom-sections-about-hero h1 {
        font-size: 36px;
    }

    .wp-block-custom-sections-about-hero .hero-container {
        padding: 60px 20px;
    }

    .hero.cta-section h1 {
        font-size: 36px;
    }

    .hero.cta-section .hero-container {
        padding: 0 20px;
    }

    .therapy-banner {
        padding: 60px 0;
    }

    .therapy-banner-container {
        padding: 0 20px;
    }

    .therapy-banner h1 {
        font-size: 36px;
    }

    .therapy-banner p {
        font-size: 16px;
    }

    .hero-container-copy {
        padding: 0 20px;
    }

    .hero.cta-section .hero-container-copy h1 {
        font-size: 36px;
    }

    .hero.cta-section .hero-container-copy p {
        font-size: 16px;
    }
}

/* Video Steps Wrapper Section */
.video-steps-wrapper {
    background: white;
    padding: 80px 20px;
}

.video-steps-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side: Video Section */
.video-left-section {
    display: flex;
    flex-direction: column;
}

.video-left-section .section-title {
    font-size: 32px;
    font-weight: 200;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.video-left-section .section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.video-wrapper {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #028476;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 30px;
    height: 30px;
    fill: #028476;
    margin-left: 5px;
}

.video-caption {
    margin-top: 20px;
    font-size: 16px !important;
    color: #666;
    /* font-style: italic; */
    text-align: center;
}

p.section-subtitle {
    font-size: 18px;
}

/* Middle: Partition Divider */
.partition-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, #e0e0e0 10%, #e0e0e0 90%, transparent 100%);
    min-height: 600px;
}

/* Right Side: Steps Section */
.steps-right-section {
    background: white;
    padding: 0;
}

.steps-slider-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.steps-grid {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
    margin-top: 60px;
    position: relative;
    max-width: 300%;
}

/* Connecting Line - hidden in slider mode */
.steps-grid::before {
    content: none;
}

.step-card {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    min-width: 33.333%;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 25px;
    box-sizing: border-box;
}

.step-number {
    width: 100px !important;
    height: 100px !important;;
    background: #028476;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.2);
    border: 8px solid white;
}

.step-number span {
    font-size: 32px !important;
    font-weight: 200;
    color: white;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-card > p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.step-details {
    text-align: left;
    margin-top: 25px;
    background: #f5f9f7;
    padding: 25px;
    border-radius: 10px;
}

.step-details ul {
    list-style: none;
    padding: 0;
}

.step-details ul li {
    font-size: 16px !important;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.step-details ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #028476;
    font-weight: 600;
}

.steps-nav-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.steps-slider-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.slider-btn {
    background: transparent;
    border: 2px solid #028476;
    color: #028476;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover:not(:disabled) {
    background: #028476;
    color: white;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.steps-slider-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #028476;
    width: 32px;
    border-radius: 6px;
}


/* Hero Section */
.hero {
    background-color: #028476 !important;
    /* background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%); */
    padding: 60px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 20px;
    font-weight: 400;
    color: #028476;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.hero-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-image {
    background: white;
    border-radius: 12px;
    /* padding: 30px; */
    /* box-shadow: 0 4px 24px rgba(0,0,0,0.06); */
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Doctor Section */
.doctor-section {
    background: white;
    padding: 60px 0;
}

.doctor-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.doctor-image {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 12px;
    padding: 0px !important;
    text-align: center;
}

.doctor-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    padding: 60px 0;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 15px;
    color: #666;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.product-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card a {
    color: #028476;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

/* Categories Section (What We Do) - Grid */
.categories-section {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    padding: 80px 0;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.categories-slider-wrapper,
.categories-grid {
    display: grid;
    grid-template-columns: auto !important;
    gap: 30px;
    margin-top: 40px;
}

.categories-slider {
    display: grid;
    grid-template-columns: auto !important;
    gap: 30px;
}

.categories-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.1);
    border-color: #e8f3ed;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8f3ed;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: #028476;
    border-color: #028476;
    transform: scale(1.05);
}

.category-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.category-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Navigation buttons for categories slider */
/* Slider navigation - HIDDEN (using grid now) */
.categories-slider-wrapper .slider-nav {
    display: none !important;
}

.categories-slider-wrapper .prev-categories {
    display: none !important;
}

.categories-slider-wrapper .next-categories {
    display: none !important;
}

.categories-slider-wrapper .slider-nav:hover {
    display: none !important;
}

/* Dots for categories slider - HIDDEN (using grid now) */
.categories-dots {
    display: none !important;
}

.categories-dots .dot {
    display: none !important;
}

.categories-dots .dot.active {
    display: none !important;
    border-radius: 6px;
}

.categories-dots .dot:hover {
    background: #3d6b4d;
}

/* Responsive for Categories Slider */
@media (max-width: 1024px) {
    .categories-slider-wrapper,
    .categories-grid,
    .categories-slider,
    .categories-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        width: 100%;
    }

    .prev-categories,
    .next-categories {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .category-card {
        min-width: calc(50% - 13px);
        padding: 20px;
    }

    .categories-slider-wrapper {
        padding: 0 40px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon img {
        width: 35px;
        height: 35px;
    }

    .prev-categories,
    .next-categories {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .categories-slider-wrapper,
    .categories-grid,
    .categories-slider,
    .categories-track {
        grid-template-columns: 1fr;
    }

    .category-card {
        width: 100%;
    }

    .prev-categories,
    .next-categories {
        display: none !important;
    }
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 80px 0;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.how-it-works-content h3 {
    font-size: 32px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.how-it-works-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.how-it-works-content p:last-child {
    margin-bottom: 0;
}

.doctor-quote {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #028476;
    position: relative;
}

.doctor-quote p {
    font-size: 18px;
    color: #1a1a1a;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.doctor-quote cite {
    font-size: 14px;
    color: #028476;
    font-weight: 500;
    font-style: normal;
    display: block;
}

/* Responsive for How It Works */
@media (max-width: 768px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-it-works-content h3 {
        font-size: 28px;
    }

    .doctor-quote {
        padding: 30px;
    }

    .doctor-quote p {
        font-size: 16px;
    }
}

/* Certifications Section */
.certifications {
    background: white;
    padding: 60px 0;
}

.certifications-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.cert-list {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 12px;
    padding: 40px;
}

.cert-list h3 {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
}

.cert-item:last-child {
    border-bottom: none;
}

.cert-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-item span {
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

.process-steps {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.process-steps h3 {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 25px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px !important;
    height: 50px !important;
    background: #028476;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.step-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Certifications */
@media (max-width: 768px) {
    .certifications-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cert-list h3,
    .process-steps h3 {
        font-size: 20px;
    }

    .cert-list {
        padding: 30px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #028476;
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fafafa;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f5f9f7;
}

.faq-question span:first-child {
    font-size: 16px;
    font-weight: 500;
    color: white;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    color: #028476;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    border-top: 1px solid #e8e8e8;
}

/* Responsive for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question span:first-child {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 15px;
        font-size: 13px;
    }
}

/* Content Therapy Section */
.content-section.white {
    background: white;
    padding: 80px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-section .section-title {
    font-size: 36px;
    font-weight: 200;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-align: left;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.text-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.text-content p {
    font-size: 18px !important;
    margin-bottom: 20px;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.doctor-content p {
    font-size: 18px !important;
    line-height: 1.8;
}

.content-image {
    border-radius: 12px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsive for Content Section */
@media (max-width: 768px) {
    .content-section.white {
        padding: 60px 0;
    }

    .content-container {
        padding: 0 20px;
    }

    .content-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .text-content {
        font-size: 14px;
    }
}

/* Research Section */
.content-section.gray {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    padding: 80px 0;
}

.section-intro {
    font-size: 18px !important;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 100% !important;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.research-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e8e8e8;
}

.research-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.research-card p {
    font-size: 16px !important;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.info-box {
    background: #028476;
    color: white;
    border-radius: 12px;
    padding: 40px;
    text-align: left;
}

.info-box h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: white;
}

.info-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.7;
}

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

.info-box ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.info-box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-weight: 600;
    font-size: 20px;
}

/* Responsive for Research Section */
@media (max-width: 768px) {
    .content-section.gray {
        padding: 60px 0;
    }

    .section-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .research-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .research-card {
        padding: 25px;
    }

    .research-card h3 {
        font-size: 18px;
    }

    .info-box {
        padding: 30px 20px;
    }

    .info-box h3 {
        font-size: 20px;
    }
}

/* Medicine Section (Why Section) - Slider */
.why-section {
    background: white;
    padding: 80px 0;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.medicine-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.medicine-slider {
    overflow: hidden;
    position: relative;
}

.medicine-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.medicine-slider-track .slide-group {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex-shrink: 0;
}

.why-card {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: #028476;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #028476;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.2);
}

.slider-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #028476;
    width: 30px;
    border-radius: 6px;
}

/* Responsive for Medicine Section */
@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }

    .why-container {
        padding: 0 20px;
    }

    .medicine-slider-track .slide-group {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card {
        padding: 25px;
    }

    .why-card h3 {
        font-size: 18px;
    }

    .why-card p {
        font-size: 14px;
    }
}

/* FAQ Dynamic Section */
.faq-section {
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    padding: 80px 0;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-intro {
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.faq-question.faqs-section {
    color: #1a1a1a;
}

.faq-icon {
    font-size: 20px;
    color: #028476;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

/* Responsive for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .faq-intro {
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* CTA Section */
.cta-section {
    background: #028476;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 200;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.btn-primary {
    background: white;
    color: #028476;
    padding: 18px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
    background: #f5f9f7;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 0;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.benefits-slider-wrapper {
    position: relative;
    margin-top: 50px;
}

.benefits-slider {
    overflow: hidden;
    position: relative;
}

.benefits-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 300%;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: calc((100% / 6) - 33px);
    margin-right: 40px;
    flex-shrink: 0;
}

.benefit-card:last-child {
    margin-right: 0;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: #028476;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 18px !important;
    color: #666;
    line-height: 1.7;
}

.slider-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #028476;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 90, 61, 0.2);
}

.slider-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.3);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #028476;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .doctor-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-steps-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .partition-divider {
        display: none;
    }

    .video-left-section .section-title {
        font-size: 28px;
    }

    .step-slider {
        max-width: 600px;
    }

    .benefits-slider-track {
        width: 600%;
    }

    .benefit-card {
        width: calc((100% / 6) - 20px);
        margin-right: 25px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits Section Mobile */
    .benefits-section {
        padding: 40px 0 !important;
        overflow-x: hidden !important;
    }

    .benefits-container {
        padding: 0 15px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .benefits-slider-wrapper {
        margin-top: 30px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .benefits-slider {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .benefits-slider-track {
        width: 600% !important;
        max-width: 600% !important;
    }

    .benefit-card {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        padding: 25px 20px !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }

    .benefit-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 20px !important;
    }

    .benefit-card h3 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    .benefit-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    .slider-nav {
        margin-top: 30px !important;
        gap: 12px !important;
    }

    .slider-btn {
        width: 45px !important;
        height: 45px !important;
    }

    .slider-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .video-steps-wrapper {
        padding: 40px 15px !important;
        overflow-x: hidden !important;
    }

    .video-steps-container {
        gap: 40px !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .video-left-section {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .video-left-section .section-title {
        font-size: 22px !important;
        margin-bottom: 10px !important;
    }

    .video-left-section .section-subtitle {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .video-wrapper {
        padding: 10px !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.06) !important;
        max-width: 100% !important;
    }

    .video-placeholder {
        border-radius: 8px !important;
        max-width: 100% !important;
    }

    .video-caption {
        font-size: 13px !important;
        margin-top: 12px !important;
    }

    .steps-right-section {
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .steps-slider-wrapper {
        padding: 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .steps-grid {
        margin-top: 30px !important;
        width: 300% !important;
        max-width: 300% !important;
    }

    .step-card {
        padding: 0 10px !important;
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        min-width: 33.333% !important;
        box-sizing: border-box !important;
    }

    .step-number {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 20px !important;
        border: 5px solid white !important;
    }

    .step-number span {
        font-size: 24px !important;
    }

    .step-card h3 {
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }

    .step-card > p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .step-details {
        padding: 15px !important;
        margin-top: 15px !important;
    }

    .step-details ul li {
        font-size: 13px !important;
        padding: 6px 0 !important;
    }

    .steps-nav-wrapper {
        margin-top: 30px !important;
    }

    .steps-slider-nav {
        gap: 10px !important;
    }

    .slider-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .slider-btn svg {
        width: 16px !important;
        height: 16px !important;
    }

    .steps-slider-dots {
        margin-top: 15px !important;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 18px !important;
    }
}

/* ========================================
   BLOG STYLES
   ======================================== */

/* Blog Archive Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #028476 0%, #025f56 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.blog-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.blog-hero-title {
    font-size: 56px;
    font-weight: 300;
    color: white;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.blog-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Listing Grid */
.blog-listing {
    background: #fafafa;
    padding: 80px 0 100px;
    min-height: 60vh;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 70px;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(2, 132, 118, 0.15);
    border-color: #028476;
}

/* Blog Card Image */
.blog-card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: block;
    background: #f5f9f7;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-image-placeholder {
    background: linear-gradient(135deg, #f5f9f7 0%, #e8f3ed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    opacity: 0.2;
}

/* Blog Card Overlay */
.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(2, 132, 118, 0.95) 0%, rgba(2, 132, 118, 0.3) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.read-more-btn {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

/* Blog Card Content */
.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.blog-category {
    background: linear-gradient(135deg, #028476 0%, #025f56 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.blog-date {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

.blog-card-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 66px;
}

.blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #028476;
}

.blog-card-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #f5f9f7;
}

.blog-author-name {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.blog-read-more {
    color: #028476;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    background: #f5f9f7;
}

.blog-read-more:hover {
    gap: 10px;
    background: #028476;
    color: white;
}

.blog-read-more svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

/* No Posts Found */
.no-posts {
    text-align: center;
    padding: 100px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.no-posts-icon {
    margin-bottom: 30px;
    opacity: 0.2;
}

.no-posts h2 {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.no-posts p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-pagination .page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.blog-pagination .page-numbers:hover {
    background: #f5f9f7;
    border-color: #028476;
    color: #028476;
    transform: translateY(-2px);
}

.blog-pagination .page-numbers.current {
    background: linear-gradient(135deg, #028476 0%, #025f56 100%);
    color: white;
    border-color: #028476;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 118, 0.3);
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: none;
    pointer-events: none;
}

.blog-pagination .page-numbers.dots:hover {
    transform: none;
}

.blog-pagination .page-numbers svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   SINGLE POST STYLES
   ======================================== */

.single-post {
    background: #ffffff;
}

/* Post Hero Section */
.post-hero {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    padding: 80px 0 50px;
    border-bottom: 1px solid #e8e8e8;
}

.post-hero-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 40px;
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.post-category-badge {
    background: linear-gradient(135deg, #028476 0%, #025f56 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(2, 132, 118, 0.2);
}

.post-category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 118, 0.3);
}

.post-date {
    color: #999;
    font-size: 15px;
    font-weight: 400;
}

.post-title {
    font-size: 54px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 35px;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.post-author-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.post-author-name {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 600;
}

.post-reading-time {
    font-size: 14px;
    color: #999;
}

/* Featured Image */
.post-featured-image {
    background: #ffffff;
    padding: 50px 0;
}

.post-featured-image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.post-featured-image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Post Content */
.post-content-wrapper {
    background: white;
}

.post-content-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 70px 40px;
}

.entry-content {
    font-size: 19px;
    line-height: 1.85;
    color: #2c2c2c;
    margin-bottom: 50px;
}

.entry-content p {
    margin-bottom: 24px;
}

.entry-content h2 {
    font-size: 36px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 24px;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.entry-content h3 {
    font-size: 28px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.entry-content blockquote {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    border-left: 5px solid #028476;
    padding: 30px 35px;
    margin: 40px 0;
    font-style: italic;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(2, 132, 118, 0.08);
}
p
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 40px 0;
    box-shadow: 0 4px 20px rgba(0,fidkux-fyqmIc-hasgy0fidkux-fyqmIc-hasgy0 0, 0, 0.08);
}

.entry-content a {
    color: #028476;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: #025f56;
    text-decoration-thickness: 3px;
}

/* Post Tags */
.post-tags {
    padding-top: 35px;
    border-top: 2px solid #f0f0f0;
    margin-bottom: 35px;
}

.post-tags strong {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-badge {
    background: #f5f9f7;
    color: #028476;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #e8f3ed;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background: #028476;
    color: white;
    border-color: #028476;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 118, 0.25);
}

/* Share Section */
.post-share {
    padding: 35px 0;
    border-top: 2px solid #f0f0f0;
}

.post-share strong {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 18px;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-twitter:hover {
    background: #1a8cd8;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(29, 161, 242, 0.4);
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-facebook:hover {
    background: #0d65d9;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

.share-linkedin {
    background: #0A66C2;
    color: white;
}

.share-linkedin:hover {
    background: #004c99;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(10, 102, 194, 0.4);
}

.share-copy {
    background: #f5f9f7;
    color: #028476;
    border: 2px solid #e8f3ed;
}

.share-copy:hover {
    background: #028476;
    color: white;
    border-color: #028476;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(2, 132, 118, 0.4);
}

/* Author Bio */
.author-bio {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    padding: 70px 0;
}

.author-bio-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 45px;
    display: flex;
    align-items: center;
    gap: 35px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.author-bio-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 4px solid #f5f9f7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-bio-content {
    flex: 1;
}

.author-bio-name {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.author-bio-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Related Posts */
.related-posts {
    background: #fafafa;
    padding: 90px 0;
}

.related-posts-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.related-posts-title {
    font-size: 42px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: -1px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.related-post-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.related-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(2, 132, 118, 0.15);
    border-color: #028476;
}

.related-post-image {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f9f7;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 25px;
}

.related-post-date {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.related-post-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.4;
}

.related-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #028476;
}

.related-post-link {
    color: #028476;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    background: #f5f9f7;
}

.related-post-link:hover {
    gap: 10px;
    background: #028476;
    color: white;
}

/* Comments Section */
.comments-wrapper {
    background: #f8f9fa;
    padding: 70px 0;
}

.comments-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
}

/* Comments Title */
.comments-title,
.comment-reply-title {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

.comment-reply-title {
    margin-bottom: 25px;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.comment-list .comment {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.comment-list .comment:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin-top: 20px;
}

.comment-body {
    position: relative;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #f5f9f7;
}

.comment-author .fn {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.comment-metadata a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.comment-metadata a:hover {
    color: #028476;
}

.comment-content {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 12px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply {
    margin-top: 10px;
}

.reply a {
    color: #028476;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 6px;
    background: #f5f9f7;
    display: inline-block;
    transition: all 0.3s ease;
}

.reply a:hover {
    background: #028476;
    color: white;
}

/* Comment Form - Leave a Reply */
.comment-respond {
    background: white;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-notes,
.logged-in-as {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.comment-notes a,
.logged-in-as a {
    color: #028476;
    text-decoration: none;
    font-weight: 500;
}

.comment-notes a:hover,
.logged-in-as a:hover {
    text-decoration: underline;
}

.required {
    color: #e74c3c;
}

/* Form Fields */
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin-bottom: 0;
}

.comment-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, sans-serif;
    color: #2c2c2c;
    transition: all 0.3s ease;
    background: #fafafa;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #028476;
    background: white;
    box-shadow: 0 0 0 3px rgba(2, 132, 118, 0.1);
}

.comment-form textarea {
    min-height: 180px;
    resize: vertical;
    line-height: 1.6;
}

/* Form Cookies Consent */
.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 5px 0;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #028476;
}

.comment-form-cookies-consent label {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
}

/* Submit Button */
.form-submit {
    margin-bottom: 0;
}

.form-submit input[type="submit"] {
    background: linear-gradient(135deg, #028476 0%, #025f56 100%);
    color: white;
    padding: 16px 36px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(2, 132, 118, 0.25);
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, sans-serif;
}

.form-submit input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 118, 0.35);
}

.form-submit input[type="submit"]:active {
    transform: translateY(0);
}

/* Comment Navigation */
.comment-navigation {
    margin: 30px 0;
}

.comment-navigation .nav-previous,
.comment-navigation .nav-next {
    display: inline-block;
    margin-right: 15px;
}

.comment-navigation a {
    color: #028476;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    background: #f5f9f7;
    transition: all 0.3s ease;
}

.comment-navigation a:hover {
    background: #028476;
    color: white;
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.no-comments h3 {
    font-size: 24px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

/* ========================================
   BLOG RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .blog-hero-title {
        font-size: 48px;
    }

    .post-title {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    /* Blog Hero Mobile */
    .blog-hero {
        padding: 70px 0 60px;
    }

    .blog-hero-container {
        padding: 0 20px;
    }

    .blog-hero-title {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .blog-hero-description {
        font-size: 17px;
    }

    /* Blog Listing Mobile */
    .blog-listing {
        padding: 60px 0 80px;
    }

    .blog-container {
        padding: 0 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .blog-card-image {
        height: 240px;
    }

    .blog-card-content {
        padding: 25px;
    }

    .blog-card-title {
        font-size: 22px;
        min-height: auto;
    }

    .blog-card-excerpt {
        font-size: 15px;
    }

    /* Single Post Mobile */
    .post-hero {
        padding: 50px 0 40px;
    }

    .post-hero-container {
        padding: 0 20px;
    }

    .post-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .post-author-avatar {
        width: 44px;
        height: 44px;
    }

    .post-author-name {
        font-size: 15px;
    }

    .post-featured-image {
        padding: 30px 0;
    }

    .post-featured-image-container {
        padding: 0 20px;
    }

    .post-content-container {
        padding: 50px 20px;
    }

    .entry-content {
        font-size: 17px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .entry-content h2 {
        font-size: 28px;
        margin-top: 40px;
    }

    .entry-content h3 {
        font-size: 24px;
        margin-top: 30px;
    }

    .entry-content p {
        margin-bottom: 20px;
    }

    .entry-content blockquote {
        padding: 25px;
        margin: 30px 0;
    }

    .share-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .share-btn {
        width: 44px;
        height: 44px;
    }

    /* Author Bio Mobile */
    .author-bio {
        padding: 50px 0;
    }

    .author-bio-container {
        padding: 35px 25px;
        flex-direction: column;
        text-align: center;
        margin: 0 20px;
    }

    .author-bio-avatar {
        width: 80px;
        height: 80px;
    }

    .author-bio-name {
        font-size: 22px;
    }

    .author-bio-description {
        font-size: 15px;
    }

    /* Related Posts Mobile */
    .related-posts {
        padding: 70px 0;
    }

    .related-posts-container {
        padding: 0 20px;
    }

    .related-posts-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .related-post-image {
        height: 200px;
    }

    .related-post-content {
        padding: 20px;
    }

    .related-post-title {
        font-size: 18px;
    }

    /* Comments Mobile */
    .comments-wrapper {
        padding: 50px 0;
    }

    .comments-container {
        padding: 0 20px;
    }

    .comments-title,
    .comment-reply-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .comment-list .comment {
        padding: 20px;
        margin-bottom: 15px;
    }

    .comment-list .children {
        padding-left: 20px;
        margin-top: 15px;
    }

    .comment-author .avatar {
        width: 40px;
        height: 40px;
    }

    .comment-author .fn {
        font-size: 16px;
    }

    .comment-content {
        font-size: 15px;
    }

    .comment-respond {
        padding: 30px 20px;
    }

    .comment-form {
        gap: 20px;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        padding: 12px 16px;
        font-size: 15px;
    }

    .comment-form textarea {
        min-height: 150px;
    }

    .form-submit input[type="submit"] {
        width: 100%;
        padding: 14px 28px;
        font-size: 15px;
    }

    /* Pagination Mobile */
    .blog-pagination .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
    }

    .blog-pagination .page-numbers svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 32px;
    }

    .post-title {
        font-size: 30px;
    }

    .blog-card-title {
        font-size: 20px;
    }

    .entry-content {
        font-size: 16px;
    }

    .related-posts-title {
        font-size: 28px;
    }
}

/* ========================================
   WOOCOMMERCE CART PAGE FIXES
   ======================================== */

/* Fix WooCommerce Cart Block Product Metadata Description - Make it Normal Text, Not Bold */
.wc-block-components-product-metadata__description,
.wc-block-components-product-metadata__description p,
.wc-block-components-product-metadata__description span,
.wc-block-components-product-metadata__description strong,
.wc-block-components-product-metadata__description b,
.wc-block-cart-item__product-metadata .wc-block-components-product-metadata__description {
    font-size: 14px !important;
    font-weight: normal !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #666 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-style: normal !important;
}

/* Override any bold/heading styling */
.wc-block-components-product-metadata__description * {
    font-weight: normal !important;
    font-weight: 400 !important;
}

/* Remove any heading-like styling from metadata */
.wc-block-components-product-metadata {
    margin-top: 8px;
}

.wc-block-components-product-metadata__name {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

/* General Cart Typography Fix */
.wc-block-cart .wc-block-components-product-name,
.wc-block-cart-items .wc-block-components-product-name {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.wc-block-cart-items__row {
    padding: 20px 0;
}

/* Additional specific overrides for cart metadata */
.wc-block-cart-item__product-metadata {
    font-weight: normal !important;
}

.wc-block-cart-item__product-metadata dd {
    font-weight: normal !important;
    font-weight: 400 !important;
    color: #666 !important;
}

/* Fix Cart Page Top and Bottom Spacing */
.woocommerce-cart,
.wp-block-woocommerce-cart {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.wc-block-cart {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* Remove extra space from cart container */
.wc-block-cart__main,
.wc-block-cart__sidebar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Fix spacing for cart items container */
.wc-block-cart-items {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove extra bottom spacing */
.wc-block-cart__footer {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Adjust main content area padding */
.woocommerce-page .site-main,
.woocommerce-cart .site-main {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .wc-block-cart {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .woocommerce-page .site-main,
    .woocommerce-cart .site-main {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* ========================================
   POLICY PAGES CSS - ENHANCED VERSION
   Privacy Policy, Terms & Conditions, Cookie Policy
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */

.privacy-hero,
.terms-hero,
.refund-hero,
.cookie-hero,
section.privacy-hero,
section.terms-hero,
section.refund-hero,
section.cookie-hero {
    background: linear-gradient(135deg, #028476 0%, #025f56 100%) !important;
    color: white !important;
    padding: 100px 0 80px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Subtle pattern overlay */
.privacy-hero::before,
.terms-hero::before,
.refund-hero::before,
.cookie-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.privacy-hero .shop-hero-container,
.terms-hero .shop-hero-container,
.refund-hero .shop-hero-container,
.cookie-hero .shop-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.privacy-hero .shop-hero-title,
.terms-hero .shop-hero-title,
.refund-hero .shop-hero-title,
.cookie-hero .shop-hero-title {
    font-size: 56px !important;
    font-weight: 300 !important;
    color: white !important;
    margin-bottom: 25px !important;
    letter-spacing: -1.5px !important;
    line-height: 1.2 !important;
}

.privacy-hero .shop-hero-subtitle,
.terms-hero .shop-hero-subtitle,
.refund-hero .shop-hero-subtitle,
.cookie-hero .shop-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-hero .shop-trust-badges,
.terms-hero .shop-trust-badges,
.refund-hero .shop-trust-badges,
.cookie-hero .shop-trust-badges {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.privacy-hero .shop-badge,
.terms-hero .shop-badge,
.refund-hero .shop-badge,
.cookie-hero .shop-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.privacy-hero .shop-badge:hover,
.terms-hero .shop-badge:hover,
.refund-hero .shop-badge:hover,
.cookie-hero .shop-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.privacy-hero .shop-badge svg,
.terms-hero .shop-badge svg,
.refund-hero .shop-badge svg,
.cookie-hero .shop-badge svg {
    width: 22px;
    height: 22px;
}

/* ========================================
   CONTENT SECTION
   ======================================== */

.privacy-policy-content,
.terms-policy-content,
.refund-policy-content,
.cookie-policy-content {
    background: #fafafa !important;
    padding: 80px 20px 100px !important;
    min-height: 60vh !important;
}

.privacy-policy-container,
.terms-policy-container,
.refund-policy-container,
.cookie-policy-container {
    max-width: 1100px;
    margin: 0 auto;
}

.privacy-policy-wrapper,
.terms-policy-wrapper,
.refund-policy-wrapper,
.cookie-policy-wrapper {
    background: white !important;
    padding: 60px !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    border: 1px solid #e8e8e8 !important;
}

/* ========================================
   TYPOGRAPHY & CONTENT STYLES
   ======================================== */

.privacy-policy-article .entry-content,
.terms-policy-article .entry-content,
.refund-policy-article .entry-content,
.cookie-policy-article .entry-content {
    font-size: 17px;
    line-height: 1.85;
    color: #2c2c2c;
}

/* Main Heading (H1) */
.privacy-policy-article .entry-content h1,
.terms-policy-article .entry-content h1,
.refund-policy-article .entry-content h1,
.cookie-policy-article .entry-content h1 {
    color: #1a1a1a;
    font-size: 38px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #028476;
    letter-spacing: -0.5px;
}

/* Section Headings (H2) */
.privacy-policy-article .entry-content h2,
.terms-policy-article .entry-content h2,
.refund-policy-article .entry-content h2,
.cookie-policy-article .entry-content h2 {
    color: #028476 !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-top: 50px !important;
    margin-bottom: 24px !important;
    padding-left: 20px !important;
    border-left: 4px solid #028476 !important;
    background: linear-gradient(135deg, #f5f9f7 0%, transparent 100%) !important;
    padding: 15px 20px !important;
    border-radius: 8px !important;
}

/* Sub-headings (H3) */
.privacy-policy-article .entry-content h3,
.terms-policy-article .entry-content h3,
.refund-policy-article .entry-content h3,
.cookie-policy-article .entry-content h3 {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 18px;
}

/* Paragraphs */
.privacy-policy-article .entry-content p,
.terms-policy-article .entry-content p,
.refund-policy-article .entry-content p,
.cookie-policy-article .entry-content p {
    margin-bottom: 24px;
    line-height: 1.85;
}

/* Lists */
.privacy-policy-article .entry-content ul,
.privacy-policy-article .entry-content ol,
.terms-policy-article .entry-content ul,
.terms-policy-article .entry-content ol,
.refund-policy-article .entry-content ul,
.refund-policy-article .entry-content ol,
.cookie-policy-article .entry-content ul,
.cookie-policy-article .entry-content ol {
    margin: 25px 0;
    padding-left: 35px;
}

.privacy-policy-article .entry-content li,
.terms-policy-article .entry-content li,
.refund-policy-article .entry-content li,
.cookie-policy-article .entry-content li {
    margin-bottom: 14px;
    line-height: 1.85;
    padding-left: 8px;
}

/* Custom bullet styling */
.privacy-policy-article .entry-content ul li,
.terms-policy-article .entry-content ul li,
.refund-policy-article .entry-content ul li,
.cookie-policy-article .entry-content ul li {
    position: relative;
}

.privacy-policy-article .entry-content ul li::marker,
.terms-policy-article .entry-content ul li::marker,
.refund-policy-article .entry-content ul li::marker,
.cookie-policy-article .entry-content ul li::marker {
    color: #028476;
    font-size: 1.2em;
}

/* Links */
.privacy-policy-article .entry-content a,
.terms-policy-article .entry-content a,
.refund-policy-article .entry-content a,
.cookie-policy-article .entry-content a {
    color: #028476;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.privacy-policy-article .entry-content a:hover,
.terms-policy-article .entry-content a:hover,
.refund-policy-article .entry-content a:hover,
.cookie-policy-article .entry-content a:hover {
    color: #025f56;
    border-bottom-color: #028476;
}

/* Strong/Bold Text */
.privacy-policy-article .entry-content strong,
.terms-policy-article .entry-content strong,
.refund-policy-article .entry-content strong,
.cookie-policy-article .entry-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Blockquotes */
.privacy-policy-article .entry-content blockquote,
.terms-policy-article .entry-content blockquote,
.refund-policy-article .entry-content blockquote,
.cookie-policy-article .entry-content blockquote {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
    border-left: 5px solid #028476;
    padding: 30px 35px;
    margin: 35px 0;
    font-style: italic;
    color: #4a4a4a;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(2, 132, 118, 0.08);
}

/* ========================================
   TABLES
   ======================================== */

.privacy-policy-article .entry-content table,
.terms-policy-article .entry-content table,
.refund-policy-article .entry-content table,
.cookie-policy-article .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.privacy-policy-article .entry-content table th,
.privacy-policy-article .entry-content table td,
.terms-policy-article .entry-content table th,
.terms-policy-article .entry-content table td,
.refund-policy-article .entry-content table th,
.refund-policy-article .entry-content table td,
.cookie-policy-article .entry-content table th,
.cookie-policy-article .entry-content table td {
    padding: 16px 20px;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.privacy-policy-article .entry-content table th,
.terms-policy-article .entry-content table th,
.refund-policy-article .entry-content table th,
.cookie-policy-article .entry-content table th {
    background: linear-gradient(135deg, #028476 0%, #025f56 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-policy-article .entry-content table tr:nth-child(even),
.terms-policy-article .entry-content table tr:nth-child(even),
.refund-policy-article .entry-content table tr:nth-child(even),
.cookie-policy-article .entry-content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.privacy-policy-article .entry-content table tr:hover,
.terms-policy-article .entry-content table tr:hover,
.refund-policy-article .entry-content table tr:hover,
.cookie-policy-article .entry-content table tr:hover {
    background-color: #f5f9f7;
}

/* ========================================
   SPECIAL ELEMENTS
   ======================================== */

/* Info boxes */
.privacy-policy-article .entry-content .info-box,
.terms-policy-article .entry-content .info-box,
.refund-policy-article .entry-content .info-box,
.cookie-policy-article .entry-content .info-box {
    background: linear-gradient(135deg, #e8f3ed 0%, #f5f9f7 100%);
    border: 2px solid #028476;
    border-radius: 12px;
    padding: 25px 30px;
    margin: 30px 0;
}

/* Last updated date */
.privacy-policy-article .entry-content .last-updated,
.terms-policy-article .entry-content .last-updated,
.refund-policy-article .entry-content .last-updated,
.cookie-policy-article .entry-content .last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    border-left: 4px solid #028476;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .privacy-policy-wrapper,
    .terms-policy-wrapper,
    .refund-policy-wrapper,
    .cookie-policy-wrapper {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .privacy-hero,
    .terms-hero,
    .refund-hero,
    .cookie-hero {
        padding: 70px 0 60px;
    }

    .privacy-hero .shop-hero-container,
    .terms-hero .shop-hero-container,
    .refund-hero .shop-hero-container,
    .cookie-hero .shop-hero-container {
        padding: 0 20px;
    }

    .privacy-hero .shop-hero-title,
    .terms-hero .shop-hero-title,
    .refund-hero .shop-hero-title,
    .cookie-hero .shop-hero-title {
        font-size: 38px;
    }

    .privacy-hero .shop-hero-subtitle,
    .terms-hero .shop-hero-subtitle,
    .refund-hero .shop-hero-subtitle,
    .cookie-hero .shop-hero-subtitle {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .privacy-hero .shop-trust-badges,
    .terms-hero .shop-trust-badges,
    .refund-hero .shop-trust-badges,
    .cookie-hero .shop-trust-badges {
        gap: 15px;
    }

    .privacy-hero .shop-badge,
    .terms-hero .shop-badge,
    .refund-hero .shop-badge,
    .cookie-hero .shop-badge {
        font-size: 13px;
        padding: 8px 14px;
    }

    /* Content Mobile */
    .privacy-policy-content,
    .terms-policy-content,
    .refund-policy-content,
    .cookie-policy-content {
        padding: 60px 15px 80px;
    }

    .privacy-policy-wrapper,
    .terms-policy-wrapper,
    .refund-policy-wrapper,
    .cookie-policy-wrapper {
        padding: 35px 25px;
    }

    /* Typography Mobile */
    .privacy-policy-article .entry-content,
    .terms-policy-article .entry-content,
    .refund-policy-article .entry-content,
    .cookie-policy-article .entry-content {
        font-size: 16px;
    }

    .privacy-policy-article .entry-content h1,
    .terms-policy-article .entry-content h1,
    .refund-policy-article .entry-content h1,
    .cookie-policy-article .entry-content h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .privacy-policy-article .entry-content h2,
    .terms-policy-article .entry-content h2,
    .refund-policy-article .entry-content h2,
    .cookie-policy-article .entry-content h2 {
        font-size: 24px;
        margin-top: 40px;
        padding: 12px 16px;
    }

    .privacy-policy-article .entry-content h3,
    .terms-policy-article .entry-content h3,
    .refund-policy-article .entry-content h3,
    .cookie-policy-article .entry-content h3 {
        font-size: 20px;
        margin-top: 30px;
    }

    .privacy-policy-article .entry-content blockquote,
    .terms-policy-article .entry-content blockquote,
    .refund-policy-article .entry-content blockquote,
    .cookie-policy-article .entry-content blockquote {
        padding: 25px;
        margin: 25px 0;
    }

    /* Tables Mobile - Scroll horizontally */
    .privacy-policy-article .entry-content table,
    .terms-policy-article .entry-content table,
    .refund-policy-article .entry-content table,
    .cookie-policy-article .entry-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .privacy-policy-article .entry-content table th,
    .privacy-policy-article .entry-content table td,
    .terms-policy-article .entry-content table th,
    .terms-policy-article .entry-content table td,
    .refund-policy-article .entry-content table th,
    .refund-policy-article .entry-content table td,
    .cookie-policy-article .entry-content table th,
    .cookie-policy-article .entry-content table td {
        padding: 12px 15px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-hero .shop-hero-title,
    .terms-hero .shop-hero-title,
    .refund-hero .shop-hero-title,
    .cookie-hero .shop-hero-title {
        font-size: 32px;
    }

    .privacy-policy-wrapper,
    .terms-policy-wrapper,
    .refund-policy-wrapper,
    .cookie-policy-wrapper {
        padding: 30px 20px;
    }

    .privacy-policy-article .entry-content h1,
    .terms-policy-article .entry-content h1,
    .refund-policy-article .entry-content h1,
    .cookie-policy-article .entry-content h1 {
        font-size: 26px;
    }

    .privacy-policy-article .entry-content h2,
    .terms-policy-article .entry-content h2,
    .refund-policy-article .entry-content h2,
    .cookie-policy-article .entry-content h2 {
        font-size: 22px;
    }
}

/* Cookie Consent Popup */
.cookie-consent-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999999;
    animation: slideUp 0.5s ease-out;
    border-top: 3px solid #028476;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'proxima-nova', 'Proxima Nova', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    text-align: center;
}

.cookie-btn-accept {
    background: #028476;
    color: white;
    box-shadow: 0 4px 12px rgba(2, 132, 118, 0.25);
}

.cookie-btn-accept:hover {
    background: #025f56;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 118, 0.35);
}

.cookie-btn-policy {
    background: transparent;
    color: #028476;
    border: 2px solid #028476;
}

.cookie-btn-policy:hover {
    background: rgba(2, 132, 118, 0.05);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        text-align: center;
    }

    .cookie-consent-text {
        font-size: 14px;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
}
